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

:root {
  --green-primary: #3d8b40;
  --green-light: #8bc34a;
  --green-dark: #1b5e20;
  --green-pale: #c5e1a5;
  --green-muted: #a5d6a7;
  --green-glow: rgba(61, 139, 64, 0.35);

  --bg: #000000;
  --surface: #111111;
  --surface-alt: #0a120a;
  --text: #f1f8f1;
  --muted: #9cb89e;
  --accent: var(--green-primary);
  --accent-hover: var(--green-light);
  --border: rgba(139, 195, 74, 0.14);
  --radius: 14px;
  --container: min(1120px, calc(100% - 2rem));
  --header-height: 5.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

code {
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px var(--green-glow);
}

.header-inner {
  display: grid;
  grid-template-columns: 44px 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 0 1rem;
  position: relative;
}

.logo {
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: clamp(48px, 12vw, 72px);
  object-fit: contain;
}

.nav-toggle {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.site-nav-left,
.site-nav-right {
  display: none;
}

.site-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  grid-column: 1 / -1;
  grid-row: 2;
  padding: 1rem;
  margin-inline: -1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-nav-mobile.is-open {
  display: flex;
}

.site-nav a {
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green-primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(61, 139, 64, 0.15);
  color: var(--green-light);
  box-shadow: 0 0 18px rgba(139, 195, 74, 0.2);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-slider-section {
  padding: 0;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--surface-alt);
}

.slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 220px;
  max-height: 520px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  margin: 0;
  max-width: min(320px, 70%);
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: clamp(1rem, 2.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(61, 139, 64, 0.75);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: var(--green-primary);
}

.slider-btn-prev {
  left: 0.75rem;
}

.slider-btn-next {
  right: 0.75rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.slider-dot.is-active {
  background: var(--green-light);
  transform: scale(1.15);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--green-pale);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--green-light);
}

.hero-text,
.section-header p,
.split p,
.contact > p {
  color: var(--muted);
  margin: 0;
}

.hero-text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: #fff;
  box-shadow: 0 4px 16px var(--green-glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
}

.btn-secondary {
  border-color: var(--green-primary);
  background: transparent;
  color: var(--green-light);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(61, 139, 64, 0.12);
}

.section {
  padding: 4rem 0;
}

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

.section-header {
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(139, 195, 74, 0.35);
  box-shadow: 0 4px 20px var(--green-glow);
}

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

.split {
  display: grid;
  gap: 2rem;
}

.about-content p {
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.75;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content strong {
  color: var(--green-light);
}

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

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--green-light);
}

.stat span {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact {
  max-width: 960px;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-map h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--green-light);
}

.contact-address {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.map-embed {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--surface);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.map-link:hover,
.map-link:focus-visible {
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(139, 195, 74, 0.45);
  outline-offset: 2px;
  border-color: var(--green-primary);
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
}

.footer-logo img {
  height: clamp(56px, 14vw, 80px);
  width: auto;
  object-fit: contain;
}

.footer-seo {
  max-width: 720px;
  margin-inline: auto;
}

.footer-seo p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.footer-seo strong {
  color: var(--green-light);
}

.footer-contact {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  align-items: center;
  text-align: center;
}

.footer-contact h2,
.footer-heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--green-pale);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.footer-seo a {
  color: var(--green-light);
  transition: color 0.2s;
}

.footer-seo a:hover,
.footer-seo a:focus-visible {
  color: var(--text);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-muted);
}

.footer-contact-list a {
  color: var(--text);
  font-size: 1.05rem;
  transition: color 0.2s;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: var(--green-light);
}

.footer-copy {
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .footer-brand {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
  }

  .footer-logo {
    flex-shrink: 0;
  }

  .footer-contact-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
  }

  .footer-contact-list li {
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .split {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav-mobile {
    display: none !important;
  }

  .site-nav-left,
  .site-nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .site-nav-left {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav-right {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav a {
    padding: 0.55rem 0.9rem;
  }

  .site-nav a::after {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.35rem;
  }

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

  .hero {
    padding: 6rem 0 4rem;
  }
}
