:root {
  --green: #07853d;
  --green-dark: #04642e;
  --text: #151515;
  --muted: #667064;
  --bg: #ffffff;
  --bg-soft: #f4f7f2;
  --line: #dde5d9;
  --shadow: 0 20px 60px rgba(16, 35, 20, 0.10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 700;
  color: #273027;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-muted {
  width: 100%;
  padding: 86px max(16px, calc((100% - 1180px) / 2));
  background: var(--bg-soft);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

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

h1 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hero-text,
.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 26px rgba(7, 133, 61, 0.22);
}

.btn.secondary {
  border-color: var(--line);
  background: white;
}

.hero-card {
  background: linear-gradient(150deg, #ffffff, #f4f8f1);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 46px;
  box-shadow: var(--shadow);
}

.section-head {
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.text-box,
.contact-card,
.zip-box,
.notice-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 34px rgba(16, 35, 20, 0.06);
}

.service-card {
  padding: 26px;
}

.service-card p,
.text-box p,
.contact-card p,
.zip-box p {
  color: var(--muted);
  margin-bottom: 0;
}

.notice-box {
  margin-top: 18px;
  padding: 22px 26px;
  border-left: 6px solid var(--green);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.logo-tile {
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.logo-tile img {
  max-height: 82px;
  width: auto;
  object-fit: contain;
}

.zip-box {
  margin-top: 22px;
  padding: 26px;
}

.zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zip-list span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 58px;
  height: 42px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 800;
}

.media-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: stretch;
}

.video-box {
  background: #0f160f;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-box video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-hint {
  margin: 0;
  padding: 12px 16px;
  color: #dfe9dd;
  font-size: 0.9rem;
}

.video-wrapper {
  position: relative;
}

.video-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #07853d;
  font-size: 34px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.video-play-button.is-hidden {
  display: none;
}

.text-box {
  padding: 28px;
}

.section-contact {
  padding-top: 60px;
}

.contact-card {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #101510;
  color: white;
  padding: 28px max(16px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer p {
  margin: 0;
  color: #d8ded8;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: #bfe7c9;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    display: block;
    padding: 16px 18px;
  }

  .hero,
  .media-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    padding: 28px;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 150px;
  }

  .navbar {
    min-height: 72px;
  }

  .section,
  .section-muted {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* --- legal --- */
.legal-page {
  background: #f4f7f2;
  min-height: 100vh;
}

.legal-header {
  width: min(1000px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}

.legal-container {
  width: min(1000px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.legal-head {
  margin-bottom: 28px;
}

.legal-head p {
  color: var(--muted);
  max-width: 700px;
}

.legal-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 10px 34px rgba(16, 35, 20, 0.06);
}

.legal-card h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

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

@media (max-width: 700px) {
  .legal-card {
    padding: 28px;
  }
}