:root {
  --bg: #5D6074;
  --text: #F1E4EE;
  --muted: rgba(241, 228, 238, .72);
  --soft: rgba(241, 228, 238, .12);
  --line: rgba(241, 228, 238, .24);
  --glass: rgba(241, 228, 238, .08);
  --shadow: 0 24px 90px rgba(13, 14, 22, .34);
  --radius: 28px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(6px);
}

body::before {
  width: 42vw;
  height: 42vw;
  left: -12vw;
  top: -12vw;
  background: radial-gradient(circle, rgba(241, 228, 238, .22), transparent 62%);
}

body::after {
  width: 50vw;
  height: 50vw;
  right: -18vw;
  bottom: -16vw;
  background: radial-gradient(circle, rgba(241, 228, 238, .16), transparent 64%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 38px));
  margin-inline: auto;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 18px;
  top: 18px;
  background: var(--text);
  color: var(--bg);
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 10;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(22px);
  background: rgba(93, 96, 116, .55);
  border-bottom: 1px solid rgba(241, 228, 238, .08);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  letter-spacing: .06em;
}

.brand img {
  width: 180px;

  border-radius: 14px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.top-links a {
  transition: .35s var(--ease);
}

.top-links a:hover {
  color: var(--text);
  text-shadow: 0 0 24px rgba(241, 228, 238, .55);
}

/* Language Toggle */
.lang-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(241, 228, 238, .05);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, .03);
}

.lang-toggle button {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .08em;
  transition: .35s var(--ease);
}

.lang-toggle .thumb {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: rgba(241, 228, 238, .16);
  box-shadow: 0 0 25px rgba(241, 228, 238, .14);
  transition: transform .45s var(--ease);
}

[data-lang="de"] .lang-toggle .thumb {
  transform: translateX(100%);
}

[data-lang="en"] .en,
[data-lang="de"] .de {
  color: var(--text);
}

/* Hero */
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 70px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: min(8vw, 88px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: .95;
}

h1 {
  font-size: clamp(72px, 12vw, 150px);
  letter-spacing: -.07em;
}

h1 span {
  font-style: italic;
}

.lead {
  max-width: 720px;
  margin: 22px 0 18px;
  font-size: clamp(22px, 3vw, 39px);
  line-height: 1.12;
}

.sub {
  max-width: 530px;
  color: var(--muted);
  font-size: 17px;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  color: var(--text);
  cursor: pointer;
  transition: .35s var(--ease);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 228, 238, .46);
  box-shadow: 0 0 38px rgba(241, 228, 238, .19);
}

.btn.primary {
  background: rgba(241, 228, 238, .14);
}

/* Visual */
.visual {
  position: relative;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(241, 228, 238, .32), transparent 64%);
  filter: blur(28px);
}

.hero-img {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 228, 238, .18);
  border-radius: 44px;
  box-shadow: var(--shadow);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 26px;
  font-size: clamp(38px, 6vw, 76px);
  letter-spacing: -.045em;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  min-height: 145px;
  padding: 24px;
  border: 1px solid rgba(241, 228, 238, .14);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(241, 228, 238, .10),
    rgba(241, 228, 238, .04)
  );
  backdrop-filter: blur(18px);
  transition: .35s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 228, 238, .34);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .12);
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

/* Pills */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(241, 228, 238, .06);
  color: var(--muted);
}

/* About / CTA */
.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.about-box,
.cta-box {
  padding: 34px;
  border: 1px solid rgba(241, 228, 238, .16);
  border-radius: 36px;
  background: rgba(241, 228, 238, .07);
  box-shadow: var(--shadow);
}

.about-box p,
.cta-box p,
.legal p,
.legal li {
  color: var(--muted);
}

/* Form */
.form {
  display: none;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 22px;
}

.form.open {
  display: grid;
}

.form input {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 20, 27, .12);
  color: var(--text);
  outline: none;
}

.consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  width: auto;
}

.note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

/* Socials */
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.icon-link {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(241, 228, 238, .07);
  transition: .35s var(--ease);
}

.icon-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(241, 228, 238, .18);
}

.icon-link svg {
  width: 22px;
  height: 22px;
}

/* Footer */
.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(241, 228, 238, .12);
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Legal Pages */
.legal {
  padding: 70px 0;
}

.legal h1 {
  font-size: clamp(54px, 9vw, 110px);
}

.legal h2 {
  margin-top: 38px;
  font-size: 34px;
}

.legal .panel {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(241, 228, 238, .06);
}

/* Language Fade */
[data-i18n] {
  transition: opacity .2s ease;
}

.fade [data-i18n] {
  opacity: .15;
}

/* Responsive */
@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    height: auto;
    align-items: flex-start;
    padding: 16px 0;
  }

  .top-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .visual {
    order: -1;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .btn {
    justify-content: center;
  }
}

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