:root {
  --green: #006b3f;
  --green-dark: #004d2e;
  --green-soft: #e8f4ee;
  --ink: #1a1f1c;
  --muted: #5a635e;
  --line: #d5ddd8;
  --bg: #f7faf8;
  --white: #ffffff;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.disclosure {
  background: #fff8e8;
  border-bottom: 1px solid #ead9a8;
  color: #5c4e2a;
  font-size: 0.85rem;
  padding: 0.55rem 0;
  line-height: 1.4;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--green);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--green);
}

.hero {
  background: linear-gradient(160deg, #004d2e 0%, #006b3f 45%, #0a8f58 100%);
  color: var(--white);
  padding: 4.5rem 0 4rem;
}

.hero-page {
  padding: 2.75rem 0 2.5rem;
}

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

.brand {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-page h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 0.65rem;
}

.lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 36rem;
}

.hero-page .lead {
  margin-bottom: 0;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.35rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--white);
  color: var(--green-dark);
}

.btn-primary:hover {
  background: #f0f7f3;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-solid {
  background: var(--green);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--green-dark);
  color: var(--white);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--white);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  color: var(--green-dark);
}

.section-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 40rem;
}

.prose p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
}

.prose ul,
.prose ol {
  color: var(--muted);
  padding-left: 1.2rem;
  margin: 0 0 1.25rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card-link {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.35rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.section-alt .card-link {
  background: var(--bg);
}

.card-link:hover {
  text-decoration: none;
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0, 77, 46, 0.08);
}

.card-link h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  color: var(--green-dark);
}

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

.card-link .more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.15rem 1.25rem 1.15rem 3.5rem;
  position: relative;
  counter-increment: step;
}

.section-alt .steps li {
  background: var(--bg);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.steps strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.steps span {
  color: var(--muted);
  font-size: 0.98rem;
}

.vehicle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.vehicle-list li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.vehicle-list h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.vehicle-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.location-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.65rem 1rem;
}

.location-grid a {
  display: block;
  padding: 0.65rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.95rem;
  text-decoration: none;
}

.section-alt .location-grid a {
  background: var(--bg);
}

.location-grid a:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.faq {
  display: grid;
  gap: 1rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem 1.15rem;
}

.section-alt .faq details {
  background: var(--bg);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green-dark);
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.tips {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.tips li {
  margin-bottom: 0.75rem;
}

.center-cta {
  margin: 2rem 0 0;
  text-align: center;
}

.center-cta .btn-primary {
  background: var(--green);
  color: var(--white);
}

.center-cta .btn-primary:hover {
  background: var(--green-dark);
}

.banner-cta {
  background: var(--green-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
  text-align: center;
}

.banner-cta h2 {
  margin: 0 0 0.5rem;
  color: var(--green-dark);
  font-size: 1.45rem;
}

.banner-cta p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem;
}

.section-alt .contact-box {
  background: var(--bg);
}

.contact-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.contact-box p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.contact-box .phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-box .phone a {
  color: var(--green-dark);
  text-decoration: none;
}

.contact-box .phone a:hover {
  color: var(--green);
  text-decoration: underline;
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  color: var(--green-dark);
}

.legal .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.legal h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 1.2rem;
}

.back {
  margin-top: 2.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.45rem;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--green);
}

.footer-note {
  margin: 0 0 0.75rem;
  max-width: 22rem;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 0;
  }

  .hero {
    padding: 3rem 0;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
