/* Rechtsseiten — medienautomatisierung.com (ruhiges Layout in den Site-Farben) */
:root {
  --bg: #140D07;
  --surface: #3A2517;
  --cream: #F5EADB;
  --accent: #E56910;
  --ink: #140D07;
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(245, 234, 219, 0.14);
}
nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
nav a span { color: var(--accent); }
nav a.back { opacity: 0.5; }
nav a.back:hover { opacity: 1; }

main { padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 64px); }
.wrap { max-width: 760px; margin: 0 auto; }

.lbl {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 14px;
}

h1 {
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  margin: 40px 0 12px;
}
p { margin-bottom: 14px; }
p, li { opacity: 0.88; }
ul { padding-left: 24px; margin-bottom: 14px; }
em { font-style: normal; font-weight: 500; }
strong { font-weight: 500; }

a.link { color: var(--cream); text-decoration: underline dotted; text-underline-offset: 4px; }
a.link:hover { color: var(--accent); }

.box {
  padding: 22px 24px;
  border: 1px solid rgba(245, 234, 219, 0.18);
  border-radius: 12px;
  background: rgba(58, 37, 23, 0.45);
  margin: 8px 0 14px;
}
address.addr { font-style: normal; line-height: 1.7; }

.stand {
  margin-top: 48px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 26px clamp(20px, 4vw, 64px) 34px;
  border-top: 1px solid rgba(245, 234, 219, 0.14);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
footer span { opacity: 0.5; }
footer a { color: var(--cream); text-decoration: none; }
footer a:hover { text-decoration: underline dotted; text-underline-offset: 4px; }
