/* ==========================================================================
   haushaltshilfe.org — Stylesheet
   ========================================================================== */

/* -- 1. Design Tokens ----------------------------------------------------- */
:root {
  /* Farben */
  --c-primary: #C2185B;
  --c-primary-hover: #9F1347;
  --c-accent: #E85D4E;
  --c-bg: #FFFAF7;
  --c-surface: #FFFFFF;
  --c-surface-alt: #FFF2ED;
  --c-text: #1F1A1A;
  --c-text-muted: #5E504E;
  --c-border: #EADEDA;
  --c-success: #2E7D4F;
  --c-focus: #FFB300;

  /* Spacing */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 20px;  --s-6: 24px;  --s-8: 32px;  --s-12: 48px;
  --s-16: 64px; --s-24: 96px; --s-32: 128px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 9999px;

  /* Shadow */
  --sh-card: 0 4px 20px rgba(194, 24, 91, 0.08);
  --sh-card-hover: 0 8px 28px rgba(194, 24, 91, 0.12);

  /* Typography */
  --ff-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --content-max: 65ch;

  /* Transitions */
  --trans-fast: 150ms ease;
  --trans-base: 250ms ease;
}

/* -- 2. Reset / Base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.25rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--c-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--c-primary-hover); }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
  margin: 0 0 var(--s-4) 0;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem); font-weight: 500; }
h2 { font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin: 0 0 var(--s-4) 0; max-width: var(--content-max); }

/* -- 3. Utilities --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-4);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--s-8); }
}

.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;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-4);
  background: var(--c-primary);
  color: white;
  padding: var(--s-3) var(--s-6);
  border-radius: var(--r-md);
  z-index: 1000;
  transition: top var(--trans-fast);
}
.skip-link:focus {
  top: var(--s-4);
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
}

/* Focus */
:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* -- 4. Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: var(--s-3) var(--s-6);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast), color var(--trans-fast);
}
.btn--primary {
  background: var(--c-primary);
  color: white;
  border-color: var(--c-primary);
}
.btn--primary:hover { background: var(--c-primary-hover); border-color: var(--c-primary-hover); color: white; }
.btn--secondary {
  background: var(--c-surface);
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--secondary:hover { background: var(--c-surface-alt); color: var(--c-primary-hover); }
.btn--ghost {
  background: transparent;
  color: var(--c-primary);
  border-color: transparent;
}
.btn--ghost:hover { background: var(--c-surface-alt); }
.btn--lg { min-height: 56px; padding: var(--s-4) var(--s-8); font-size: 1.125rem; }

/* -- 5. Header / Navigation ---------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 247, 0.95);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  min-height: 72px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--c-text);
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--c-text); }
.site-logo__heart { color: var(--c-primary); width: 28px; height: 28px; flex-shrink: 0; }

.site-nav { display: none; }
.site-nav__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: var(--s-2);
  align-items: center;
  flex-wrap: wrap;
}
.site-nav__link {
  display: inline-block;
  padding: var(--s-3) var(--s-4);
  color: var(--c-text);
  text-decoration: none;
  border-radius: var(--r-md);
  font-weight: 500;
  transition: background var(--trans-fast), color var(--trans-fast);
}
.site-nav__link:hover { background: var(--c-surface-alt); color: var(--c-primary); }
.site-nav__link[aria-current="page"] {
  color: var(--c-primary);
  background: var(--c-surface-alt);
}

.site-header__phone {
  display: none;
  align-items: center;
  gap: var(--s-2);
  font-weight: 700;
  color: var(--c-primary);
  text-decoration: none;
  font-size: 1.05rem;
}
.site-header__phone:hover { color: var(--c-primary-hover); }

.site-header__cta { display: none; }

.nav-toggle {
  background: transparent;
  border: 2px solid var(--c-border);
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  transition: border-color var(--trans-fast), color var(--trans-fast);
}
.nav-toggle:hover { border-color: var(--c-primary); color: var(--c-primary); }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; }
  .site-header__phone { display: inline-flex; }
  .site-header__cta { display: inline-flex; }
  .site-header__inner { gap: var(--s-6); }
}

/* Mobile Menu */
.site-nav--mobile {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--c-bg);
  padding: var(--s-6) var(--s-4);
  display: none;
  flex-direction: column;
  gap: var(--s-3);
  overflow-y: auto;
  z-index: 99;
}
.site-nav--mobile.is-open { display: flex; }
.site-nav--mobile .site-nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: var(--s-2);
}
.site-nav--mobile .site-nav__link {
  font-size: 1.25rem;
  padding: var(--s-4);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
}
.site-nav--mobile .btn--primary { font-size: 1.1rem; padding: var(--s-4) var(--s-6); }
.site-nav--mobile .site-header__phone {
  display: inline-flex;
  font-size: 1.25rem;
  padding: var(--s-4);
  justify-content: center;
  border: 2px solid var(--c-primary);
  border-radius: var(--r-md);
}

@media (min-width: 1024px) {
  .site-nav--mobile { display: none !important; }
}

/* -- 6. Sections ---------------------------------------------------------- */
.section {
  padding: var(--s-16) 0;
}
.section--alt {
  background: var(--c-surface-alt);
}
@media (min-width: 1024px) {
  .section { padding: var(--s-24) 0; }
}
.section__eyebrow {
  display: inline-block;
  font-weight: 600;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
  margin-bottom: var(--s-3);
}
.section__title {
  margin-bottom: var(--s-4);
}
.section__lead {
  font-size: 1.2rem;
  color: var(--c-text-muted);
  max-width: 60ch;
  margin-bottom: var(--s-8);
}

/* -- 7. Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  padding: var(--s-16) 0 var(--s-24);
  background: linear-gradient(180deg, var(--c-surface-alt) 0%, var(--c-bg) 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: var(--s-12);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: var(--s-16); }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--c-surface);
  color: var(--c-primary);
  border: 1px solid var(--c-border);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--s-6);
}
.hero__title {
  font-size: clamp(2.25rem, 3vw + 1.5rem, 3.75rem);
  margin-bottom: var(--s-6);
}
.hero__lead {
  font-size: clamp(1.15rem, 0.5vw + 1rem, 1.35rem);
  color: var(--c-text-muted);
  margin-bottom: var(--s-8);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.hero__media img {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card-hover);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--c-surface-alt);
}
.hero__trust {
  margin-top: var(--s-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  color: var(--c-text-muted);
  font-size: 0.95rem;
}
.hero__trust-item { display: flex; align-items: center; gap: var(--s-2); }
.hero__trust-item svg { color: var(--c-primary); flex-shrink: 0; }

/* -- 8. Cards ------------------------------------------------------------- */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-card);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-card-hover); }
.card__icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--c-surface-alt);
  color: var(--c-primary);
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
}
.card__title { margin-bottom: var(--s-2); }
.card__text { color: var(--c-text-muted); margin-bottom: 0; }

.grid {
  display: grid;
  gap: var(--s-6);
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* -- 9. Steps ------------------------------------------------------------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding-left: 72px;
  margin-bottom: var(--s-8);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: var(--r-pill);
  background: var(--c-primary);
  color: white;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.5rem;
  display: grid; place-items: center;
}
.step__title { margin-bottom: var(--s-2); }
.step__text { color: var(--c-text-muted); max-width: none; }
@media (min-width: 768px) {
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-8); }
  .step { margin-bottom: 0; }
}

/* -- 10. CTA Banner ------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  color: white;
  border-radius: var(--r-lg);
  padding: var(--s-12) var(--s-6);
  text-align: center;
  box-shadow: var(--sh-card-hover);
}
.cta-banner h2 { color: white; margin-bottom: var(--s-4); }
.cta-banner p { color: rgba(255,255,255,0.95); max-width: 50ch; margin: 0 auto var(--s-6); }
.cta-banner .btn--primary { background: white; color: var(--c-primary); border-color: white; }
.cta-banner .btn--primary:hover { background: var(--c-surface-alt); color: var(--c-primary-hover); border-color: var(--c-surface-alt); }
.cta-banner .btn--secondary { background: transparent; color: white; border-color: white; }
.cta-banner .btn--secondary:hover { background: rgba(255,255,255,0.15); color: white; border-color: white; }
.cta-banner__phone {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-bottom: var(--s-4);
}
.cta-banner__phone:hover { color: white; text-decoration: underline; }
@media (min-width: 768px) {
  .cta-banner { padding: var(--s-16) var(--s-12); }
}

/* -- 11. Testimonials ---------------------------------------------------- */
.testimonial {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.testimonial__quote {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--c-text);
  margin: 0;
  max-width: none;
}
.testimonial__meta { display: flex; align-items: center; gap: var(--s-3); margin-top: auto; }
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: var(--c-surface-alt);
  color: var(--c-primary);
  display: grid; place-items: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; }
.testimonial__role { color: var(--c-text-muted); font-size: 0.9rem; }
.testimonial__stars { color: var(--c-accent); display: flex; gap: 2px; }

/* -- 12. FAQ -------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: var(--s-3); max-width: 800px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--c-primary); box-shadow: var(--sh-card); }
.faq-item summary {
  padding: var(--s-4) var(--s-6);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  color: var(--c-text);
  min-height: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 3px solid var(--c-primary);
  border-bottom: 3px solid var(--c-primary);
  transform: rotate(45deg);
  transition: transform var(--trans-base);
  flex-shrink: 0;
  margin-right: var(--s-2);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item__body { padding: 0 var(--s-6) var(--s-6); color: var(--c-text-muted); }
.faq-item__body p:last-child { margin-bottom: 0; }

/* -- 13. Forms ----------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: var(--s-5); max-width: 640px; }
.form-field { display: flex; flex-direction: column; gap: var(--s-2); }
.form-field__label {
  font-weight: 600;
  color: var(--c-text);
}
.form-field__hint { font-size: 0.9rem; color: var(--c-text-muted); }
.form-field__error { font-size: 0.95rem; color: #B3261E; display: none; font-weight: 500; }
.form-field--error .form-field__error { display: block; }
.form-field--error input,
.form-field--error textarea,
.form-field--error select { border-color: #B3261E; }
.form-field input,
.form-field textarea,
.form-field select {
  font: inherit;
  padding: var(--s-3) var(--s-4);
  min-height: 48px;
  border: 2px solid var(--c-border);
  border-radius: var(--r-sm);
  background: var(--c-surface);
  color: var(--c-text);
  transition: border-color var(--trans-fast);
  width: 100%;
}
.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover { border-color: var(--c-text-muted); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--c-primary);
  outline: 3px solid var(--c-focus);
  outline-offset: 1px;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
}
.form-consent.form-field--error label { color: #B3261E; }
.form-consent input[type="checkbox"] {
  width: 24px; height: 24px;
  margin-top: 2px;
  accent-color: var(--c-primary);
  cursor: pointer;
}
.form-consent label { font-size: 0.95rem; color: var(--c-text-muted); cursor: pointer; }
.form__success {
  display: none;
  padding: var(--s-4);
  background: #E8F5EC;
  border: 1px solid var(--c-success);
  color: var(--c-success);
  border-radius: var(--r-md);
  font-weight: 600;
}
.form__success.is-visible { display: block; }

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* -- 14. Footer ---------------------------------------------------------- */
.site-footer {
  background: #1F1A1A;
  color: #E4DADA;
  padding: var(--s-16) 0 var(--s-8);
  margin-top: var(--s-24);
}
.site-footer a { color: #F5D7E1; }
.site-footer a:hover { color: white; }
.site-footer__grid {
  display: grid;
  gap: var(--s-8);
  grid-template-columns: 1fr;
  margin-bottom: var(--s-12);
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: var(--s-4);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.site-footer p { color: #B8AFAE; }
.site-footer__bottom {
  border-top: 1px solid #3B2F2E;
  padding-top: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: 0.9rem;
  color: #B8AFAE;
}
@media (min-width: 768px) {
  .site-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* -- 15. Misc ------------------------------------------------------------ */
.badge {
  display: inline-block;
  background: var(--c-surface-alt);
  color: var(--c-primary);
  padding: 6px var(--s-4);
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 600;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.tag-list .badge { background: var(--c-surface); border: 1px solid var(--c-border); }

.prose { max-width: var(--content-max); }
.prose h2, .prose h3 { margin-top: var(--s-8); }
.prose ul, .prose ol { padding-left: var(--s-6); margin-bottom: var(--s-4); }
.prose li { margin-bottom: var(--s-2); }

.table-wrap { overflow-x: auto; margin: var(--s-6) 0; }
.pricing-table { width: 100%; border-collapse: collapse; background: var(--c-surface); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-card); }
.pricing-table th, .pricing-table td { padding: var(--s-4); text-align: left; border-bottom: 1px solid var(--c-border); }
.pricing-table th { background: var(--c-surface-alt); color: var(--c-primary); font-weight: 700; }
.pricing-table tr:last-child td { border-bottom: none; }

.trust-strip {
  background: var(--c-surface-alt);
  padding: var(--s-4) 0;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.trust-strip__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-6);
  font-weight: 600;
  color: var(--c-text);
  font-size: 0.95rem;
}
.trust-strip__content svg { color: var(--c-primary); flex-shrink: 0; }
.trust-strip__item { display: inline-flex; align-items: center; gap: var(--s-2); }

.back-to-top {
  position: fixed;
  right: var(--s-4);
  bottom: var(--s-4);
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: var(--c-primary);
  color: white;
  border: none;
  box-shadow: var(--sh-card-hover);
  display: none;
  place-items: center;
  z-index: 90;
  transition: background var(--trans-fast);
}
.back-to-top.is-visible { display: grid; }
.back-to-top:hover { background: var(--c-primary-hover); }

.info-box {
  padding: var(--s-4);
  background: #FFF4CC;
  border-left: 4px solid #FFB300;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  margin: var(--s-6) 0;
}
.info-box code {
  background: rgba(0,0,0,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

.phone-big {
  font-family: var(--ff-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

.avatar-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--c-surface-alt);
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
  display: grid;
  place-items: center;
  color: var(--c-primary);
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

.note-soft {
  margin-top: var(--s-6);
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

.closing-card {
  margin-top: var(--s-12);
  padding: var(--s-8);
  background: var(--c-surface-alt);
  border-radius: var(--r-lg);
}
.closing-card h2 { margin-top: 0; }
.closing-card .btn + .btn { margin-left: var(--s-3); }

/* -- 16. Fonts (lokal) ---------------------------------------------------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/fraunces-500.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/fraunces-700.woff2") format("woff2");
}
