.fa,
.fas,
.far,
.fal,
.fab {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fas,
.fa-solid {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

.nav-link {
  color: #5f7a5c;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #2f6b3a;
}

.nav-link--active {
  color: #2f6b3a;
  font-weight: 600;
}

.nav-link--active-desktop {
  color: #2f6b3a;
  font-weight: 600;
  border-bottom: 2px solid #2f6b3a;
  padding-bottom: 2px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.site-logo__text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1b2b1a;
  line-height: 1.2;
}

.site-logo--light .site-logo__text {
  color: #ffffff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 43, 26, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(20rem, 100%);
  height: 100%;
  background: #ffffff;
  box-shadow: -4px 0 24px rgba(27, 43, 26, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #c9d8c5;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #c9d8c5;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1b2b1a;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu__close:hover {
  background: rgba(47, 107, 58, 0.07);
  border-color: #2f6b3a;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.25rem;
}

.mobile-menu__link {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  color: #1b2b1a;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu__link:hover {
  background: rgba(47, 107, 58, 0.07);
  color: #2f6b3a;
}

.mobile-menu__link--active {
  background: rgba(47, 107, 58, 0.07);
  color: #2f6b3a;
  font-weight: 600;
}

.mobile-menu__cta {
  margin-top: 0.75rem;
  display: block;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  background: #2f6b3a;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  transition: background 0.2s ease;
}

.mobile-menu__cta:hover {
  background: #245530;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #c9d8c5;
  border-radius: 0.5rem;
  background: #ffffff;
  cursor: pointer;
  gap: 0.3rem;
}

.menu-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: #1b2b1a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-locked {
  overflow: hidden;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes stat-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 107, 58, 0.2);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(47, 107, 58, 0.15);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.7s ease-out forwards;
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slide-in-right 0.7s ease-out forwards;
}

.animate-pulse-soft {
  animation: pulse-soft 3s ease-in-out infinite;
}

.animate-stat-glow {
  animation: stat-glow 2.5s ease-in-out infinite;
}

.animation-delay-100 {
  animation-delay: 0.1s;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

.opacity-0-start {
  opacity: 0;
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(27, 43, 26, 0.82) 0%,
    rgba(47, 107, 58, 0.65) 50%,
    rgba(27, 43, 26, 0.75) 100%
  );
}

.stat-card.is-visible {
  animation: fade-in-up 0.6s ease-out forwards;
}

.swiper-button-prev,
.swiper-button-next {
  color: #2f6b3a;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.25rem;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: #2f6b3a;
}

.cookie-banner-enter {
  animation: fade-in-up 0.4s ease-out forwards;
}

.form-field--error .form-input,
.form-field--error .form-textarea {
  border-color: #c0392b;
  background-color: rgba(192, 57, 43, 0.04);
}

.field-error {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #c0392b;
  line-height: 1.4;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #c9d8c5;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1b2b1a;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2f6b3a;
  box-shadow: 0 0 0 3px rgba(47, 107, 58, 0.15);
}

.form-textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1b2b1a;
  margin-bottom: 0.375rem;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #5f7a5c;
  line-height: 1.5;
}

.form-checkbox-label input[type='checkbox'] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  accent-color: #2f6b3a;
  flex-shrink: 0;
}

.form-toast {
  position: fixed;
  top: 5.5rem;
  right: 1rem;
  z-index: 60;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 22rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #c9d8c5;
  border-left: 4px solid #2f6b3a;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(27, 43, 26, 0.15);
  opacity: 0;
  transform: translateX(1.5rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.form-toast__icon {
  color: #2f6b3a;
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.form-toast__text {
  flex: 1;
  font-size: 0.875rem;
  color: #1b2b1a;
  line-height: 1.5;
}

.form-toast__close {
  background: none;
  border: none;
  color: #5f7a5c;
  cursor: pointer;
  padding: 0.125rem;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.form-toast__close:hover {
  color: #1b2b1a;
}

.faq-item {
  border: 1px solid #c9d8c5;
  border-radius: 0.75rem;
  background: #ffffff;
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 0.75rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1b2b1a;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(47, 107, 58, 0.07);
}

.faq-question__icon {
  color: #2f6b3a;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 20rem;
}

.faq-answer__inner {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9375rem;
  color: #5f7a5c;
  line-height: 1.65;
}

.map-frame {
  width: 100%;
  height: 22rem;
  border: 0;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .map-frame {
    height: 28rem;
  }
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1b2b1a;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.legal-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1b2b1a;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1b2b1a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.legal-content p {
  color: #5f7a5c;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  color: #5f7a5c;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content ul {
  list-style-type: disc;
}

.legal-content ol {
  list-style-type: decimal;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content em {
  color: #5f7a5c;
  font-style: italic;
}

.legal-content a {
  color: #2f6b3a;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #245530;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  color: #5f7a5c;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c9d8c5;
}

.footer-legal-link--active {
  color: #ffffff;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
