html { font-synthesis: none; }
:root {
  --ink: #06243f;
  --orange: #ff5a1f;
  --orange-text: #d23500;
  --cream: #fff4df;
  --paper: #fffdf7;
  --muted: #5c6b76;
  --line: 5px solid var(--ink);
  --shadow: 0 0 0 1px var(--ink), 9px 9px 0 1px var(--ink);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 90, 31, 0.13) 0 10%, transparent 11%),
    radial-gradient(circle at 88% 20%, rgba(6, 36, 63, 0.12) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(255,255,255,.22) 0 25%, transparent 25% 50%, rgba(255,255,255,.16) 50% 75%, transparent 75%) 0 0 / 42px 42px;
}

a { color: inherit; font-weight: 900; }
ul { padding-left: 1.25rem; }
li + li { margin-top: 4px; }

.wrap {
  width: min(1120px, calc(100% - clamp(20px, 4vw, 64px)));
  margin: 0 auto;
  padding: 42px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
}

.logo img {
  width: 86px;
  height: 52px;
  object-fit: contain;
}

.back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--orange);
  border: var(--line);
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--ink), 4px 4px 0 1px var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.page {
  min-width: 0;
  padding: clamp(22px, 4vw, 38px);
  background: var(--paper);
  border: var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2.15rem, 6vw, 4.5rem);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 34px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin: 22px 0 6px;
  font-size: 1.08rem;
  text-transform: uppercase;
}

p { margin: 8px 0; }

.note {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.muted { color: var(--muted); }

.protected-contact {
  font-weight: 900;
}

#konto-loeschen a { overflow-wrap: anywhere; }

.info-box {
  margin: 18px 0;
  padding: 16px;
  border: 4px solid var(--ink);
  border-radius: 18px;
  background: #fff4df;
}

h1,
h2,
h3,
.note,
.protected-contact {
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .back { width: 100%; justify-content: center; }
  .note { max-width: 100%; border-radius: 18px; }
}
