/* ONFYR Coming-Soon Landing */
:root {
  --teal: #1b3a3f;
  --teal-mid: #2e5a61;
  --gold: #ca9e67;
  --gold-dark: #8a6a3a;
  --warm-white: #F5F1EB;
  --carbon: #111a1c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  background: var(--teal);
  color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cs {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.cs__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(202,158,103,0.18), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(46,90,97,0.6), transparent 55%),
    linear-gradient(180deg, var(--teal) 0%, #12292d 100%);
  z-index: 0;
}

.cs__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
}

.cs__logo {
  height: 84px;
  width: auto;
  margin: 0 auto 20px;
  filter: brightness(1.1);
}

.cs__tagline {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 48px;
}

.cs__title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cs__lead {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 48px;
}

.cs__contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.cs__contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 24px;
  background: rgba(245,241,235,0.05);
  border: 1px solid rgba(245,241,235,0.14);
  border-radius: 12px;
  text-decoration: none;
  color: var(--warm-white);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.cs__contact-card:hover {
  background: rgba(245,241,235,0.08);
  border-color: rgba(202,158,103,0.45);
  transform: translateY(-2px);
}

.cs__contact-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.cs__contact-value {
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 600;
  letter-spacing: -0.005em;
}

.cs__company {
  font-size: 13px;
  opacity: 0.5;
  letter-spacing: 0.02em;
}

.cs__footer {
  margin-top: 28px;
  font-size: 13px;
  opacity: 0.6;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cs__footer a {
  color: var(--warm-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,241,235,0.25);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cs__footer a:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 560px) {
  .cs__contact { grid-template-columns: 1fr; }
  .cs__logo { height: 68px; }
  .cs__tagline { margin-bottom: 36px; }
  .cs__lead { margin-bottom: 36px; }
}

/* ===== Legal pages (Impressum / Datenschutz) ===== */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  color: var(--warm-white);
}
.legal-page h1 {
  font-size: clamp(32px, 4.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245,241,235,0.12);
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin: 36px 0 10px;
  letter-spacing: -0.005em;
}
.legal-page h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--warm-white);
  margin: 24px 0 8px;
}
.legal-page p,
.legal-page li {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 12px;
}
.legal-page ul,
.legal-page ol { padding-left: 22px; margin-bottom: 14px; }
.legal-page a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(202,158,103,0.4);
  transition: border-color 0.2s ease;
}
.legal-page a:hover { border-color: var(--gold); }
.legal-page__back {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(18, 41, 45, 0.75);
  border: 1px solid rgba(245,241,235,0.22);
  border-radius: 100px;
  color: var(--warm-white) !important;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-decoration: none !important;
  border-bottom: 1px solid rgba(245,241,235,0.22) !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.legal-page__back:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(18, 41, 45, 0.9);
  transform: translateX(-2px);
}
@media (max-width: 560px) {
  .legal-page__back { top: 12px; left: 12px; padding: 8px 16px; font-size: 13px; }
  .legal-page { padding-top: 72px; }
}

/* ===== BAFA Trust-Block ===== */
.cs__bafa {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
  background: rgba(245, 241, 235, 0.04);
  border: 1px solid rgba(202, 158, 103, 0.22);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 0 auto 40px;
  max-width: 640px;
}

.cs__bafa-siegel {
  width: 130px;
  height: 130px;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
}

.cs__bafa-body { min-width: 0; }

.cs__bafa-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.cs__bafa-title {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.cs__bafa-text {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.78;
  margin-bottom: 14px;
}

.cs__bafa-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.cs__bafa-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cs__bafa-cta:hover {
  background: #d8ad7c;
  transform: translateY(-1px);
}

.cs__bafa-verify {
  font-size: 13px;
  color: rgba(245, 241, 235, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 241, 235, 0.25);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.cs__bafa-verify:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 560px) {
  .cs__bafa {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
  }
  .cs__bafa-siegel {
    margin: 0 auto;
    width: 110px;
    height: 110px;
  }
  .cs__bafa-actions { justify-content: center; }
}
