@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-pop {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.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-pop {
  animation: stat-pop 0.6s ease-out forwards;
}

.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 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stat-number {
  font-variant-numeric: tabular-nums;
}

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

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

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

.mobile-nav-open {
  overflow: hidden;
}

.burger-line {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.nav-link--active-mobile {
  color: #b45309;
  font-weight: 600;
  background-color: rgba(180, 83, 9, 0.07);
}

.site-logo__icon {
  flex-shrink: 0;
}

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

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

.field-error {
  border-color: #b45309 !important;
  box-shadow: 0 0 0 2px rgba(180, 83, 9, 0.15);
}

.error-message {
  color: #b45309;
  font-size: 0.75rem;
  margin-top: 0.375rem;
}

.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 #ddd5c6;
  border-left: 4px solid #b45309;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(42, 34, 21, 0.12);
  opacity: 0;
  transform: translateX(110%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

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

.form-toast__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2a2215;
  margin-bottom: 0.25rem;
}

.form-toast__text {
  font-size: 0.8125rem;
  color: #7d7260;
  line-height: 1.5;
}

.form-toast__close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  color: #7d7260;
  cursor: pointer;
  padding: 0;
}

.form-toast__close:hover {
  color: #2a2215;
}

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

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

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

.faq-item__trigger:hover {
  background: #f5f1ea;
}

.faq-item__icon {
  color: #b45309;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-item__answer {
  padding: 0 1.25rem 1.25rem;
}

.faq-item__answer p {
  font-size: 0.875rem;
  color: #7d7260;
  line-height: 1.65;
}

.map-iframe {
  border: 0;
  width: 100%;
  min-height: 20rem;
  border-radius: 1rem;
}

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

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2a2215;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #2a2215;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 0.9375rem;
  color: #7d7260;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  font-size: 0.9375rem;
  color: #7d7260;
  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 + li {
  margin-top: 0.375rem;
}

.legal-content a {
  color: #b45309;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.legal-content em {
  font-style: italic;
  color: #7d7260;
}

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

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

@media (min-width: 640px) {
  .article-content h1 {
    font-size: 2.5rem;
  }
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #7d7260;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd5c6;
}

.article-content h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #2a2215;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2a2215;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.article-content p {
  font-size: 0.9375rem;
  color: #7d7260;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  font-size: 0.9375rem;
  color: #7d7260;
  line-height: 1.75;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

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

.article-content li + li {
  margin-top: 0.375rem;
}
