@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --cream: #f6efe6;
  --ink: #1d1333;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  overflow-x: clip;
}

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

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

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

.font-body {
  font-family: 'Manrope', sans-serif;
}

.font-display {
  font-family: 'League Spartan', sans-serif;
}

.faq-item summary {
  list-style: none;
  user-select: none;
}

.faq-toggle {
  transition: transform 180ms ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

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

  .faq-toggle {
    transition: none;
  }
}
