@font-face {
  font-family: "Along Sans s2";
  src: url("../assets/fonts/AlongSanss2-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Along Sans s2";
  src: url("../assets/fonts/AlongSanss2-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #89aaa7;
  --fg: #ffffff;
  --font: "Along Sans s2", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  min-height: 100%;
}

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--fg);
  background: var(--bg);
  min-height: 100svh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  border-bottom-color: currentColor;
}

a:focus-visible {
  outline: 1px solid var(--fg);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.leaves {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.leaf {
  position: absolute;
  display: block;
  user-select: none;
}

.leaf-dunkel {
  top: -2%;
  right: -3%;
  width: min(42vw, 800px);
}

.leaf-hell {
  left: -3%;
  bottom: 7%;
  width: min(26vw, 480px);
  opacity: 0.3;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(2.5rem, 6vh, 4.5rem) clamp(1.5rem, 8vw, 4rem) 1.5rem;
  text-align: center;
}

.logo-wrap {
  position: relative;
  width: clamp(200px, 22.4vw, 430px);
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.offer {
  position: absolute;
  top: 52%;
  left: 96%;
  z-index: 2;
  width: clamp(7.25rem, 11.5vw, 10.25rem);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f3efe6;
  color: #2c2c2c;
  text-align: center;
  line-height: 1.15;
  pointer-events: none;
  user-select: none;
}

.offer-kicker,
.offer-note {
  font-size: clamp(0.55rem, 0.85vw, 0.72rem);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.offer-kicker {
  text-transform: uppercase;
}

.offer-value {
  margin: 0.15em 0 0.1em;
  font-size: clamp(0.92rem, 1.55vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.cta {
  margin-top: clamp(2.75rem, 8vh, 6rem);
  max-width: 48rem;
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.faq {
  width: min(44rem, calc(100% - 3rem));
  margin: 2.5rem auto 3.5rem;
  text-align: left;
}

.faq h2 {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.15rem;
  cursor: pointer;
  list-style: none;
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::marker {
  content: "";
}

.faq-list summary:focus-visible {
  outline: 1px solid var(--fg);
  outline-offset: 3px;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  transition: background-color 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--fg);
  border-radius: 1px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon::before {
  top: 50%;
  left: 22%;
  width: 56%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 22%;
  left: 50%;
  width: 1.5px;
  height: 56%;
  transform: translateX(-50%);
}

.faq-list summary:hover .faq-icon {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.08);
}

.faq-list details.is-open .faq-icon,
.faq-list details[open] .faq-icon {
  background: rgba(255, 255, 255, 0.16);
}

.faq-list details.is-open .faq-icon::after,
.faq-list details[open] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  transition:
    grid-template-rows 0.44s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details.is-open .faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-body {
  overflow: hidden;
  min-height: 0;
}

.faq-body p {
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  line-height: 1.7;
  letter-spacing: 0.02em;
  opacity: 0.95;
  padding-right: 1.25rem;
}

.faq-body p:first-child {
  margin-top: 0.2rem;
}

.faq-body p:last-child {
  margin-bottom: 1.2rem;
}

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

.footer {
  padding: 1rem 1.5rem 1.85rem;
  text-align: center;
}

.footer p {
  font-size: clamp(0.72rem, 0.95vw, 1rem);
  letter-spacing: 0.045em;
  line-height: 1.7;
}

.footer strong {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer .sep {
  margin: 0 0.65em;
  opacity: 0.9;
}

.nowrap {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .leaf-dunkel {
    width: min(62vw, 520px);
    top: -2%;
    right: -10%;
  }

  .leaf-hell {
    width: min(48vw, 360px);
    bottom: 12%;
    left: -8%;
  }

  .cta {
    margin-top: 2.25rem;
    font-size: 1rem;
  }

  .footer p {
    font-size: 0.82rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2.25rem;
  }

  .logo-wrap {
    width: min(52vw, 220px);
  }

  .offer {
    top: 50%;
    left: 92%;
    width: clamp(5.25rem, 24vw, 6.5rem);
  }

  .cta {
    margin-top: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .faq {
    width: calc(100% - 2.5rem);
    margin: 1.75rem auto 2.5rem;
  }

  .faq-list summary {
    padding: 0.9rem 0;
    font-size: 0.95rem;
  }

  .footer p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }

  .footer .sep {
    display: none;
  }

  .leaf-dunkel {
    width: 75vw;
    right: -18%;
    top: -6%;
  }

  .leaf-hell {
    width: 62vw;
    left: -16%;
    bottom: 18%;
  }
}

@media (max-height: 700px) and (min-width: 601px) {
  .hero {
    padding-top: 1.5rem;
  }

  .logo-wrap {
    width: min(18vw, 280px);
  }

  .cta {
    margin-top: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-icon,
  .faq-icon::before,
  .faq-icon::after,
  .faq-panel {
    transition: none;
  }
}
