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

:root {
  --gold: #C9A84C;
  --gold-dim: #8a6e2f;
  --bg: #0e0c0a;
  --text: #e8dfc8;
  --text-muted: #7a6e5a;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Georgia', 'Times New Roman', serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 1.5rem 0.75rem;
}

/* Sprach-Toggle oben rechts */
.lang-toggle {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Georgia', serif;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.08em;
  padding: 2px 4px;
  transition: color 0.2s;
}

.lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--text); }

.lang-sep {
  color: var(--text-muted);
  font-size: 13px;
}

/* Hauptinhalt */
.container {
  max-width: 540px;
  width: 100%;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo */
.logo-wrap {
  margin-bottom: 0.25rem;
}

.logo {
  width: min(340px, 72vw);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.logo-fallback {
  font-family: 'Georgia', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: normal;
}

/* Trennlinie */
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0.75rem auto;
  opacity: 0.6;
  flex-shrink: 0;
}

/* Headline */
.headline {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: normal;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

/* Subline */
.subline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  font-style: italic;
}

/* Button */
.btn-wrap {
  margin-bottom: 0;
}

.join-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: 'Georgia', serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  padding: 14px 0;
  width: 220px;
  cursor: pointer;
  text-transform: uppercase;
  transition: border-color 0.35s, letter-spacing 0.35s;
  outline: none;
  overflow: hidden;
  display: inline-block;
}

.join-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.join-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.35s;
}

.join-btn:hover { border-color: var(--gold); letter-spacing: 0.28em; }
.join-btn:hover::before { transform: scaleX(1); }
.join-btn:hover span { color: #0e0c0a; }

/* Slogans */
.slogans {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.slogans .dot { color: var(--gold-dim); }

/* Footer */
.footer {
  width: 100%;
  text-align: center;
  padding-top: 0.4rem;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  opacity: 0.35;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .join-btn { width: 85vw; }
  .slogans { gap: 6px; font-size: 10px; }
  .headline { font-size: clamp(1.2rem, 6vw, 1.8rem); }
}
