/* =========================================================
   Mallorca Match — Stylesheet (Phase 2: editorial statt generisch)
   Palette (siehe CLAUDE.md):
   Meerblau #0F4C5C · Terrakotta #E36414 · Sand #FAF6EF
   Tinte #1E2A2F · Grau #5D6B71 · Linie #E5DFD3
   Typografie: Fraunces (self-hosted, SIL OFL) für Headlines,
   System-Sans für Fließtext. Keine externen Requests.
   ========================================================= */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-normal-400_900-latin.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201E, U+2026;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-normal-400_900-latin-ext.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic-400_700-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --meer: #0F4C5C;
  --meer-dunkel: #093642;
  --meer-hell: #E8F0F1;
  --terrakotta: #E36414;
  --terrakotta-dunkel: #C4560F;
  --sand: #FAF6EF;
  --sand-dunkel: #F1EADC;
  --weiss: #FFFFFF;
  --tinte: #1E2A2F;
  --grau: #5D6B71;
  --linie: #E5DFD3;
  --beta-bg: #FCF3D7;
  --beta-text: #7A5C0E;
  --radius: 12px;
  --schatten: 0 2px 12px rgba(30, 42, 47, 0.07);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--tinte);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}

a { color: var(--meer); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Editorial-Vorspann über Überschriften */
.kicker {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terrakotta);
  margin: 0 0 0.75rem;
}

.kicker-hell { color: #F0A66E; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--terrakotta);
  color: var(--weiss);
}

.btn-primary:hover { background: var(--terrakotta-dunkel); transform: translateY(-1px); }

/* ---------- Header ---------- */

.site-header {
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand-link { text-decoration: none; }

.brand-mark {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--meer);
  letter-spacing: -0.01em;
}

.brand-accent { color: var(--terrakotta); }

.brand-claim {
  display: none;
  color: var(--grau);
  font-size: 0.85rem;
  margin-left: 0.75rem;
}

@media (min-width: 700px) {
  .brand-claim { display: inline; }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--grau);
  cursor: pointer;
  padding: 0.25rem 0.35rem;
  border-radius: 6px;
  text-decoration: none;
}

.lang-btn[aria-pressed="true"],
.lang-btn[aria-current="true"] {
  color: var(--tinte);
  font-weight: 700;
  background: var(--sand);
}

.lang-sep { color: var(--linie); }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(160deg, var(--meer) 0%, var(--meer-dunkel) 100%);
  color: var(--weiss);
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 550;
  max-width: 16ch;
  margin-bottom: 0.4em;
}

.hero-text {
  max-width: 34rem;
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  opacity: 0.92;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-story-link {
  color: var(--weiss);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
}

.hero-story-link:hover { border-bottom-color: var(--weiss); }

.hero-karte { display: none; }

@media (min-width: 860px) {
  .hero-inner { grid-template-columns: 7fr 5fr; }
  .hero-karte { display: block; }
}

.insel-hero {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
}

.insel-hero-form {
  fill: rgba(250, 246, 239, 0.08);
  stroke: rgba(250, 246, 239, 0.55);
  stroke-width: 2;
  stroke-linejoin: round;
}

.insel-hero-punkt {
  fill: var(--terrakotta);
  opacity: 0.9;
}

/* ---------- Matcher ---------- */

.matcher { padding: 3.5rem 0; }

.matcher-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.matcher-head h2 { margin: 0; font-size: 2rem; }

.beta-badge {
  display: inline-block;
  background: var(--beta-bg);
  color: var(--beta-text);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #EAD9A0;
}

.matcher-intro {
  color: var(--grau);
  max-width: 44rem;
  margin: 0.75rem 0 2rem;
}

.matcher-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .matcher-grid { grid-template-columns: 5fr 7fr; align-items: start; }
  .matcher-links { position: sticky; top: 4.5rem; }
}

/* Schieberegler */

.sliders {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  padding: 1.25rem 1.25rem 0.75rem;
}

.slider-row { margin-bottom: 1.1rem; }

.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.slider-wert {
  font-variant-numeric: tabular-nums;
  color: var(--terrakotta);
  font-weight: 700;
  min-width: 1.5em;
  text-align: right;
}

.slider-hint {
  color: var(--grau);
  font-size: 0.8rem;
  margin: 0.05rem 0 0.25rem;
}

.slider-row input[type="range"] {
  width: 100%;
  accent-color: var(--terrakotta);
  margin: 0;
}

/* Inselkarte im Matcher */

.karte-block { margin-bottom: 1.75rem; }

.karte-titel {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.karte-wrap {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  padding: 0.9rem;
}

.insel-svg {
  display: block;
  width: 100%;
  height: auto;
}

.insel-form {
  fill: var(--sand-dunkel);
  stroke: var(--meer);
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.karte-marker { cursor: pointer; }

.karte-marker:focus { outline: none; }

.marker-punkt {
  fill: var(--meer);
  stroke: var(--weiss);
  stroke-width: 1.5;
  transition: fill 0.2s ease, r 0.2s ease;
}

.marker-puls {
  fill: var(--terrakotta);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.karte-marker:hover .marker-punkt,
.karte-marker:focus-visible .marker-punkt {
  fill: var(--terrakotta);
}

.karte-marker:focus-visible .marker-puls { opacity: 0.25; }

.karte-marker.aktiv .marker-punkt {
  fill: var(--terrakotta);
  r: 5.5px;
}

.karte-marker.aktiv .marker-puls { opacity: 0.3; }

.karte-marker.gefiltert { opacity: 0.25; }

.karte-hinweis {
  color: var(--grau);
  font-size: 0.8rem;
  margin: 0.5rem 0 0;
}

/* Rangliste */

.ergebnis-kopf {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ergebnis-kopf h3 { font-size: 1.4rem; margin: 0; }

.region-filter-label select {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--tinte);
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
}

.alle-null-hinweis {
  color: var(--grau);
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
}

.matcher-fehler {
  background: #FBE9E7;
  border: 1px solid #E8B4AC;
  color: #8C2F1F;
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
}

.rangliste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rang-item {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
}

.rang-item.top3 {
  border-color: var(--meer);
  box-shadow: var(--schatten);
}

.rang-item details summary {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  list-style: none;
}

.rang-item details summary::-webkit-details-marker { display: none; }

.rang-platz {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--sand);
  color: var(--grau);
}

.top3 .rang-platz {
  background: var(--meer);
  color: var(--weiss);
}

.rang-info {
  flex: 1 1 auto;
  min-width: 0;
}

.rang-name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.top3 .rang-name { font-size: 1.05rem; }

.rang-region {
  display: block;
  color: var(--grau);
  font-size: 0.8rem;
}

.score-bar {
  height: 5px;
  background: var(--sand);
  border-radius: 3px;
  margin-top: 0.35rem;
  overflow: hidden;
}

.score-bar i {
  display: block;
  height: 100%;
  background: var(--meer);
  border-radius: 3px;
  transition: width 0.25s ease;
}

.top3 .score-bar i { background: var(--terrakotta); }

.rang-score {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--meer);
}

.rang-score small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--grau);
  font-size: 0.7rem;
  text-align: right;
}

.rang-chevron {
  flex: 0 0 auto;
  color: var(--grau);
  transition: transform 0.2s ease;
  font-size: 0.8rem;
}

.rang-item details[open] .rang-chevron { transform: rotate(180deg); }

.rang-details {
  padding: 0 1rem 1rem;
  border-top: 1px dashed var(--linie);
}

.details-kopf {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.details-text { flex: 1 1 auto; min-width: 0; }

.einzeiler {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--meer);
  margin: 0.9rem 0 0;
}

.rang-details .portraet {
  margin: 0.6rem 0 0.9rem;
  font-size: 0.95rem;
}

.mini-karte {
  flex: 0 0 auto;
  width: 108px;
  height: auto;
  margin-top: 0.9rem;
  display: none;
}

@media (min-width: 560px) {
  .mini-karte { display: block; }
}

.mini-karte use, .mini-karte path {
  fill: var(--sand-dunkel);
  stroke: var(--grau);
  stroke-width: 2;
}

.mini-punkt {
  fill: var(--terrakotta);
  stroke: var(--weiss);
  stroke-width: 2.5;
}

.einzel-titel {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grau);
  margin: 0 0 0.5rem;
}

.einzel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

@media (min-width: 560px) {
  .einzel { grid-template-columns: 1fr 1fr; column-gap: 1.5rem; }
}

.einzel li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.einzel .einzel-name {
  flex: 0 0 6.2rem;
  color: var(--grau);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.einzel .einzel-bar {
  flex: 1 1 auto;
  height: 5px;
  background: var(--sand);
  border-radius: 3px;
  overflow: hidden;
}

.einzel .einzel-bar i {
  display: block;
  height: 100%;
  background: var(--meer);
  border-radius: 3px;
}

.einzel .einzel-wert {
  flex: 0 0 1.2rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.btn-mehr {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--terrakotta);
  text-decoration: none;
}

.btn-mehr:hover { text-decoration: underline; }

.mehr-zeigen {
  display: block;
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.7rem 1rem;
  background: none;
  border: 1px dashed var(--grau);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--meer);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.mehr-zeigen:hover { border-color: var(--terrakotta); color: var(--terrakotta); }

/* ---------- Unsere Geschichte ---------- */

.story {
  background: var(--weiss);
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
  padding: 3.5rem 0;
}

.story-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .story-inner { grid-template-columns: 7fr 5fr; }
}

.story h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  max-width: 22ch;
}

.story-copy p:not(.kicker) {
  max-width: 58ch;
  margin: 0 0 1em;
}

.story-cta {
  display: inline-block;
  font-weight: 600;
  color: var(--terrakotta);
  text-decoration: none;
  margin-top: 0.25rem;
}

.story-cta:hover { text-decoration: underline; }

.story-zitat {
  margin: 0;
  background: var(--meer);
  color: var(--sand);
  border-radius: var(--radius);
  padding: 2rem 2rem 2.25rem;
  position: relative;
}

.story-zitat::before {
  content: "„";
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--terrakotta);
  display: block;
  margin-bottom: -1.25rem;
}

.story-zitat blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* ---------- Stimmen von Ausgewanderten ---------- */

.stimmen { padding: 3.5rem 0; }

.stimmen-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stimmen-head h2 { margin-bottom: 0; font-size: 2rem; }

.stimmen-text {
  color: var(--grau);
  max-width: 44rem;
  margin: 0.75rem 0 1.5rem;
}

.stimmen-hinweis {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grau);
  margin: 0 0 0.75rem;
}

.stimmen-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 700px) {
  .stimmen-grid { grid-template-columns: repeat(3, 1fr); }
}

.stimmen-karte {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.4rem;
  box-shadow: var(--schatten);
}

.stimmen-nr {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sand-dunkel);
  -webkit-text-stroke: 1px var(--terrakotta);
  display: block;
  margin-bottom: 0.25rem;
}

.stimmen-karte p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.45;
}

/* ---------- Restaurant-Teaser ---------- */

.restaurants { padding: 0 0 3.5rem; }

.teaser-card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  padding: 1.75rem;
}

.teaser-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.teaser-head h2 { margin: 0; font-size: 1.5rem; }

.soon-badge {
  background: var(--sand);
  border: 1px solid var(--linie);
  color: var(--grau);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.teaser-card p { color: var(--grau); max-width: 44rem; }

.teaser-link {
  font-weight: 600;
  text-decoration: none;
}

.teaser-link:hover { text-decoration: underline; }

/* ---------- Newsletter ---------- */

.newsletter {
  background: var(--meer);
  color: var(--weiss);
  padding: 3.5rem 0;
  text-align: center;
}

.newsletter h2 { font-size: 1.9rem; }

.newsletter p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.5rem auto 0;
  max-width: 30rem;
}

.newsletter-form input[type="email"] {
  flex: 1 1 14rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-family: var(--font-sans);
}

.newsletter-erfolg {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  margin: 1.25rem auto 0;
  max-width: 30rem;
}

.newsletter-doi {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 1.25rem;
}

.newsletter-doi a { color: var(--weiss); }

/* ---------- Artikel-Seiten (ueber-uns, Orts-Detailseiten) ---------- */

.artikel { padding: 3rem 0 3.5rem; }

.artikel-inner { max-width: 720px; }

.artikel-kopf { margin-bottom: 2rem; }

.artikel h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 550;
}

.artikel-lead {
  font-size: 1.15rem;
  color: var(--grau);
  max-width: 54ch;
}

.artikel h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}

.artikel p { max-width: 62ch; }

.versprechen {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.versprechen li {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-left: 4px solid var(--terrakotta);
  border-radius: 8px;
  padding: 0.8rem 1.1rem;
}

.artikel-cta { margin-top: 2.5rem; }

/* Orts-Detailseiten */

.ort-kopf {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 700px) {
  .ort-kopf { grid-template-columns: 1fr auto; }
}

.ort-karte {
  width: 190px;
  max-width: 100%;
  justify-self: start;
}

@media (min-width: 700px) {
  .ort-karte { justify-self: end; }
}

.ort-karte .insel-form {
  fill: var(--sand-dunkel);
  stroke: var(--grau);
  stroke-width: 1.6;
}

.ort-karte .mini-punkt {
  fill: var(--terrakotta);
  stroke: var(--weiss);
  stroke-width: 2.5;
}

.ort-einzeiler {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--meer);
  max-width: 40ch;
  margin: 0.25rem 0 0;
}

.ort-region-zeile {
  color: var(--grau);
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}

.ort-abschnitte {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 700px) {
  .ort-abschnitte { grid-template-columns: 1fr 1fr; }
}

.ort-abschnitt {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--schatten);
}

.ort-abschnitt h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.ort-abschnitt p { margin: 0; font-size: 0.95rem; }

.ort-abschnitt.kontra { border-left: 4px solid var(--terrakotta); }
.ort-abschnitt.pro { border-left: 4px solid var(--meer); }

.ort-scores {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem 1.5rem;
  box-shadow: var(--schatten);
  margin: 0 0 2rem;
}

.ort-scores h2 { font-size: 1.1rem; margin: 0 0 0.75rem; }

.ort-hinweis {
  font-size: 0.82rem;
  color: var(--grau);
  margin-top: 1.5rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--meer-dunkel);
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-claim { margin: 0; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer-nav a { color: var(--weiss); }

.footer-copy { margin: 0; font-size: 0.8rem; opacity: 0.7; }

@media (min-width: 700px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
