@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Outfit:wght@300;400;500&display=swap");

:root {
  --ink: #18272d;
  --ink-deep: #101d22;
  --paper: #f3efe7;
  --text: #465158;
  --brass: #c7a47b;
  --line: rgba(24, 39, 45, 0.16);
}

* { box-sizing: border-box; }

html { background: var(--paper); scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
}

a { color: inherit; }

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 108px;
  padding: 22px clamp(24px, 5vw, 76px);
  color: var(--paper);
  background: var(--ink-deep);
  border-bottom: 1px solid rgba(199, 164, 123, 0.28);
}

.brand { text-decoration: none; }

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: 0.04em;
}

.brand-line {
  display: block;
  margin-top: 3px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.back-link {
  color: var(--brass);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-main {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 120px) 0;
}

.kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2 {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
}

h1 {
  margin: 0 0 52px;
  font-size: clamp(54px, 9vw, 92px);
  line-height: 0.95;
}

h2 {
  margin: 42px 0 8px;
  font-size: 32px;
}

p, ul { margin: 0 0 18px; }
ul { padding-left: 22px; }

.legal-card {
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
}

.legal-footer {
  padding: 30px clamp(24px, 5vw, 76px);
  color: rgba(243, 239, 231, 0.65);
  background: var(--ink-deep);
  font-size: 13px;
}

@media (max-width: 640px) {
  .legal-header { min-height: 92px; }
  .brand-line { letter-spacing: 0.13em; }
  .back-link { font-size: 0; }
  .back-link::after { content: "Zurück"; font-size: 11px; }
  html[lang="en"] .back-link::after { content: "Back"; }
  h1 { margin-bottom: 36px; }
}
