html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.mobile-menu-icon {
  position: relative;
  width: 20px;
  height: 14px;
}

.mobile-menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1a2f0d;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    top 0.2s ease;
}

.mobile-menu-icon span:nth-child(1) {
  top: 0;
}

.mobile-menu-icon span:nth-child(2) {
  top: 6px;
}

.mobile-menu-icon span:nth-child(3) {
  top: 12px;
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-icon span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}
