/* Self-hosted variable fonts. No external requests, DSGVO/GDPR-safe. */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Variable.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('fonts/Lora-Italic-Variable.ttf') format('truetype');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #0e2a47;
  --navy-2: #1c3a5c;
  --muted: #6e7f93;
  --line: #d9e3ec;
  --blue: #8fbede;
  --blue-deep: #2d6fa3;
  --blue-soft: #e6f1f8;
  --bg: #fbfbf9;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --serif-italic: 'Lora', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.lang-de .t-en, body.lang-en .t-de { display: none !important; }

.container { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* NAV */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,251,249,0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-crystal {
  width: 60px;
  height: 60px;
  display: block;
  pointer-events: none;
}
.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  pointer-events: none;
}
.logo-word-main {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 5px;
  color: var(--navy);
}
.logo-word-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 8.5px;
  letter-spacing: 3px;
  color: var(--navy-2);
  margin-top: 4px;
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switch {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}
.lang-switch button {
  background: none; border: none;
  padding: 4px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  border-radius: 2px;
  opacity: 0.5;
  transition: all .2s ease;
  font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500;
  color: var(--navy);
}
.lang-switch button:hover { opacity: 0.85; }
.lang-switch button.active { opacity: 1; background: var(--blue-soft); }
.flag { display: block; width: 22px; height: 14px; border-radius: 1.5px; overflow: hidden; box-shadow: 0 0 0 1px rgba(14,42,71,0.08); }
.flag svg { display: block; width: 100%; height: 100%; }

.btn {
  display: inline-block;
  padding: 13px 24px;
  background: var(--navy);
  color: #fff !important;
  border: 1px solid var(--navy);
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 400;
  transition: all .25s ease;
  cursor: pointer;
  font-family: var(--sans);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); }

/* LEGAL CONTENT */
main.legal {
  padding: 80px 0 100px;
}
main.legal .eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3.2px;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
  display: inline-block;
}
main.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--navy);
}
main.legal .lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 40px;
}
main.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 44px 0 14px;
  color: var(--navy);
}
main.legal h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin: 32px 0 12px;
}
main.legal p { margin: 0 0 18px; font-size: 1rem; }
main.legal ul { margin: 0 0 18px; padding-left: 22px; }
main.legal ul li { margin-bottom: 8px; font-size: 1rem; }
main.legal a { color: var(--blue-deep); text-decoration: none; }
main.legal a:hover { text-decoration: underline; }
main.legal strong { font-weight: 500; color: var(--navy); }
main.legal .contact-block {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px 28px;
  margin: 18px 0 32px;
  font-size: 1rem;
}
main.legal .contact-block p { margin: 0 0 6px; }
main.legal .contact-block p:last-child { margin-bottom: 0; }

.placeholder {
  display: inline-block;
  background: #fff4d1;
  color: #7a5300;
  padding: 1px 8px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 0.95em;
  font-family: var(--sans);
}

.review-notice {
  background: #fff8dc;
  border-left: 4px solid #d4a017;
  padding: 20px 26px;
  margin-bottom: 44px;
  border-radius: 2px;
}
.review-notice strong { color: #7a5300; }
.review-notice p {
  margin: 0;
  color: #6b4a00;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* FOOTER */
footer {
  padding: 60px 0 36px;
  background: var(--navy);
  color: #cfd7e2;
}
footer .container {
  max-width: 1180px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}
footer h4 {
  font-family: var(--sans);
  font-size: 0.72rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: #fff;
  margin: 0 0 16px;
}
footer p, footer a { color: #cfd7e2; font-size: 0.9rem; text-decoration: none; }
footer a:hover { color: #fff; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 8px; }
.footer-logo { color: #fff; font-family: var(--serif); font-size: 1.4rem; letter-spacing: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 48px; padding-top: 24px;
  font-size: 0.78rem; color: #8a9bb3;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-italic { font-family: var(--serif-italic); font-style: italic; color: #8a9bb3; }

@media (max-width: 900px) {
  main.legal { padding: 56px 0 72px; }
  .nav-logo { height: 50px; gap: 10px; }
  .logo-crystal { width: 46px; height: 46px; }
  .logo-word-main { font-size: 22px; letter-spacing: 4px; }
  .logo-word-sub { font-size: 7px; letter-spacing: 2.5px; }
  .nav-inner { padding: 10px 24px; }
  .nav-right { gap: 12px; }
  footer .container { grid-template-columns: 1fr; }
}
