/* ==========================================================================
   BUSINESS LIVING ROSTOCK
   Designsystem und Layout. Handgeschrieben, kein Build-Schritt, kein JavaScript.

   Die Farbwerte sind aus der Praesentation V3.1 pixelgenau gemessen, nicht
   geschaetzt. Eine Abweichung ist bewusst: der Akzentton #a27a52 erreicht auf
   Weiss nur 3,87:1 Kontrast und faellt damit bei kleinem Text durch WCAG AA.
   Fuer Text wird deshalb --accent-text (#7d5c3a, 6,1:1) verwendet, waehrend
   der Originalton fuer grafische Elemente und grosse Schrift erhalten bleibt.
   ========================================================================== */

/* --- Design Tokens ------------------------------------------------------- */

:root {
  /* Marke */
  --navy: #26333a;          /* Vollflaechen, Hero-Overlay */
  --ink: #313b41;           /* Headlines und Text auf Hell */
  --sand: #eee9e2;          /* Karten, Infoboxen */
  --sand-tint: #f7f4f0;     /* ruhige Flaechenabwechslung */
  --accent: #a27a52;        /* Badges, Linien, grosse Schrift */
  --accent-text: #7d5c3a;   /* kleiner Text – barrierefreier Ton */
  --accent-light: #bf9b71;  /* Akzent auf dunklem Grund */
  --paper: #ffffff;

  --muted: #5a656b;
  --line: rgba(49, 59, 65, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);

  /* Typografie
     Cambria und Calibri liegen auf Windows-Rechnern mit Office und damit bei
     der Zielgruppe HR und Einkauf vor. Caladea und Carlito sind die metrisch
     identischen freien Entsprechungen, die die Praesentation verwendet. */
  --font-display: Cambria, Caladea, Charter, Georgia, "Times New Roman", serif;
  --font-body: Calibri, Carlito, "Segoe UI", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Arial, sans-serif;

  /* Abstaende */
  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 2px;   /* bewusst minimal: architektonisch, keine SaaS-Cards */
}

/* --- Reset --------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.08rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  margin: 0;
  letter-spacing: -0.005em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --- Bausteine ----------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand-tint); }
.section--navy { background: var(--navy); color: var(--paper); }

.section[id] { scroll-margin-top: 5rem; }

/* Kleines Label ueber der Headline */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin: 0 0 1.4rem;
}
.section--navy .eyebrow { color: var(--accent-light); }

/* Auf einer Vollflaeche in Navy erreicht der helle Akzentton 5,0:1 und ist
   zulaessig. Ueber dem Hero-Foto sinkt er auf 2,6:1, weil die gelbe Fassade den
   Grund aufhellt – dort wird deshalb Weiss verwendet. Der kupferne Akzent
   bleibt im Hero der Linie und der Absenderzeile vorbehalten. */
.eyebrow--onphoto { color: #fff; }

.eyebrow--inline { margin-top: 2.2rem; }

h2 { font-size: clamp(1.85rem, 1.1rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem); }

.lead {
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  color: var(--muted);
  max-width: 62ch;
  margin-top: 1.2rem;
}
.section--navy .lead { color: rgba(255, 255, 255, 0.78); }
.lead--tight { margin-top: 0.8rem; }

/* Kursive Markenzeile – in der Praesentation das wiederkehrende Signal */
.claim {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.6rem);
  line-height: 1.35;
  color: var(--accent-text);
  margin: 0;
}
.section--navy .claim,
.hero .claim { color: var(--accent-light); }

.claim--spaced { margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.claim--undermedia { margin-top: 1.6rem; }

/* Kleine Abstandshelfer, damit im HTML keine style-Attribute stehen */
.listen-abstand { margin-top: 1rem; }
.abstand-oben { margin-top: 2rem; }

.rule {
  width: 3.5rem;
  height: 2px;
  background: var(--accent);
  border: 0;
  margin: 0 0 1.6rem;
}

/* Nummern-Badge 01 / 02 / 03 */
.badge {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Aufzaehlung mit Gedankenstrich statt Icon-Flut */
.dashlist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
}
.dashlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 0.7rem;
  height: 1px;
  background: var(--accent);
}
.section--navy .dashlist li::before { background: var(--accent-light); }
.dashlist li:last-child { margin-bottom: 0; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #8d6844; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.btn--outline {
  background: transparent;
  color: var(--accent-text);
  border-color: var(--accent);
}
.btn--outline:hover { background: var(--accent); color: #fff; }

/* Sichtbarer Fokus – nie entfernt, nur gestaltet */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.section--navy a:focus-visible,
.section--navy button:focus-visible,
.section--navy input:focus-visible,
.section--navy select:focus-visible,
.section--navy textarea:focus-visible,
.hero a:focus-visible {
  outline-color: var(--accent-light);
}

.skiplink {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 0.8rem 1.2rem;
}
.skiplink:focus { left: 0; }

/* --- Kopfzeile ----------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.3;
}
.wordmark span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--accent-text);
  text-transform: none;
}

/* Ankernavigation erst ab Tablet – auf dem Handy bleibt nur die Aktion.
   Das ersetzt ein Hamburger-Menue und damit jedes JavaScript. */
.nav { display: none; }

@media (min-width: 62rem) {
  .nav {
    display: flex;
    gap: 2rem;
    margin-left: auto;
  }
  .nav a {
    font-size: 0.92rem;
    text-decoration: none;
    color: var(--muted);
    padding-block: 0.4rem;
    border-bottom: 2px solid transparent;
  }
  .nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }
}

.header .btn { padding: 0.7rem 1.3rem; font-size: 0.9rem; }

/* Der Kopfzeilen-Button traegt auf schmalen Displays eine kurze Beschriftung.
   Ohne das bricht "Verfuegbarkeit anfragen" bei 390 px auf zwei Zeilen und
   macht den Button 73 px hoch – genauso hoch wie die Kopfzeile selbst.
   display:none nimmt die jeweils andere Fassung auch aus dem Vorlesebaum. */
.header__cta { white-space: nowrap; }
.header__cta-lang { display: none; }
.header__cta-kurz { display: inline; }

@media (min-width: 34rem) {
  .header__cta-lang { display: inline; }
  .header__cta-kurz { display: none; }
}

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

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(86vh, 780px);
  padding-block: clamp(5rem, 12vw, 8rem);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}

/* Das Overlay dunkelt nach unten ab, wo die Typografie sitzt, und laesst die
   Architektur oben sichtbar. Die Werte sind nicht frei gewaehlt: weisser Text
   auf 0,72 Deckkraft ueber der hellen gelben Fassade ergibt 6,7:1 Kontrast und
   erfuellt damit WCAG AA. Bei 0,55 waeren es nur 4,05:1 – das reicht nur fuer
   grosse Schrift, nicht fuer die Unterzeilen. */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(38, 51, 58, 0.26) 0%,
    rgba(38, 51, 58, 0.40) 28%,
    rgba(38, 51, 58, 0.78) 58%,
    rgba(38, 51, 58, 0.95) 100%
  );
}

.hero__inner { max-width: 60rem; }

.hero h1 {
  font-size: clamp(2.1rem, 1rem + 5.2vw, 4.4rem);
  letter-spacing: 0.055em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1.5vw, 2.1rem);
  line-height: 1.3;
  margin: 0 0 0.9rem;
}

.hero__en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2.4rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.hero__by {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* Aufgehellter Markenkupfer. Der Originalton #bf9b71 erreicht ueber dem Foto
     nur 3,9:1; diese Aufhellung kommt am unteren Gradientenrand auf 6,2:1 und
     erhaelt trotzdem den kupfernen Markencharakter der Absenderzeile. */
  color: #d9bd97;
  margin: 0;
}

/* Faktenleiste unter dem Hero: der Beweis kommt vor der Behauptung */
.facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sand-tint);
}
.facts__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
@media (min-width: 48rem) {
  .facts__list { grid-template-columns: repeat(4, 1fr); }
}
.facts__list li {
  background: var(--sand-tint);
  padding: 1.6rem var(--gutter);
  text-align: center;
}
.facts__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
}
.facts__label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* --- Zweispaltige Abschnitte -------------------------------------------- */

.split {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 56rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--textfirst > :first-child { order: -1; }
  .split--mediafirst > .split__media { order: -1; }
}

.split__media img { width: 100%; border-radius: var(--radius); }

.split__body > * + * { margin-top: 1.5rem; }

/* --- Karten (Das Haus) --------------------------------------------------- */

.cards {
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 52rem) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
}
.card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card__body { padding: clamp(1.5rem, 2.5vw, 2rem); }
.card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}
.card__head h3 {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  line-height: 1.4;
}

/* --- Nutzen-Spalten (dunkel) -------------------------------------------- */

.benefits {
  display: grid;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 56rem) {
  .benefits { grid-template-columns: 1fr 1fr; }
}

.benefits__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.benefits__head h3 {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.benefits .badge { background: var(--accent-light); color: var(--navy); }

.benefit { margin-bottom: 1.6rem; }
.benefit:last-child { margin-bottom: 0; }
.benefit dt { font-weight: 700; margin-bottom: 0.2rem; }
.benefit dd { margin: 0; color: rgba(255, 255, 255, 0.76); }

.benefits__media {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 40rem) {
  .benefits__media { grid-template-columns: 1fr 1fr; }
}
.benefits__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }

/* --- Standard-Kacheln ---------------------------------------------------- */

.tiles {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 56rem) {
  .tiles { grid-template-columns: 1fr 1fr; }
}

.tile {
  display: grid;
  background: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 30rem) {
  .tile { grid-template-columns: 8.5rem 1fr; }
}
.tile img { width: 100%; height: 100%; min-height: 9rem; object-fit: cover; }
.tile__body { padding: clamp(1.4rem, 2.2vw, 1.8rem); }
.tile__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.tile__head h3 {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.tile .badge { width: 2rem; height: 2rem; font-size: 0.74rem; }
.tile__body .dashlist { font-size: 0.97rem; }

/* --- Standort ------------------------------------------------------------ */

.branchen {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.5;
  margin: 0;
}

/* Einspaltig auf dem Handy: zweispaltig blieben fuer Namen wie
   "Marinestuetzpunkt Hohe Duene" nur rund 165 px – das bricht haesslich um. */
.orte { margin-top: 1.4rem; }
.orte li { break-inside: avoid; }

@media (min-width: 34rem) {
  .orte {
    columns: 2;
    column-gap: clamp(1.5rem, 4vw, 3rem);
  }
}

.hinweis {
  background: var(--sand);
  border-left: 3px solid var(--accent);
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  font-size: 0.94rem;
  color: var(--muted);
}
.hinweis strong { color: var(--accent-text); }

/* --- Konditionen --------------------------------------------------------- */

.preis {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 56rem) {
  .preis { grid-template-columns: minmax(0, 22rem) 1fr; }
}

.preis { margin-top: clamp(2.5rem, 4vw, 3.5rem); }

.preis__box {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
}
.preis__ab {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.preis__wert {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2rem + 3vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0.4rem 0 0.2rem;
}
.preis__einheit { display: block; color: var(--muted); font-size: 0.98rem; }
.preis__hinweis {
  display: block;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

/* --- Formular ------------------------------------------------------------ */

.anfrage {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 62rem) {
  .anfrage { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); }
}

.form__grid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 40rem) {
  .form__grid { grid-template-columns: 1fr 1fr; }
  .form__row--full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.field .optional { font-weight: 400; color: rgba(255, 255, 255, 0.6); }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  width: 100%;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(255, 255, 255, 0.34); }

/* Datumsfelder in Safari nicht verkruemeln lassen */
.field input[type="date"] { min-height: 3rem; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  grid-column: 1 / -1;
}
fieldset legend {
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0;
  margin-bottom: 0.7rem;
}

.checks {
  display: grid;
  gap: 0.6rem;
}
@media (min-width: 34rem) {
  .checks { grid-template-columns: 1fr 1fr; }
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.97rem;
}
.check input { width: 1.05rem; height: 1.05rem; margin-top: 0.35rem; flex: none; accent-color: var(--accent-light); }

/* Spamfalle: fuer Menschen und Screenreader unsichtbar, fuer Bots verlockend */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.form__note { font-size: 0.86rem; color: rgba(255, 255, 255, 0.66); margin: 0; }
.form__note a { color: var(--accent-light); }

.kontakt {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}
.kontakt img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
}
.kontakt__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.kontakt__rolle {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0.3rem 0 1.2rem;
}
.kontakt__zeile { display: flex; gap: 0.6rem; margin-bottom: 0.5rem; font-size: 0.98rem; }
.kontakt__zeile dt { color: rgba(255, 255, 255, 0.6); min-width: 5.5rem; }
.kontakt__zeile dd { margin: 0; }
.kontakt a { color: #fff; text-decoration-color: var(--accent-light); text-underline-offset: 3px; }
.kontakt__text { margin-top: 1.4rem; color: rgba(255, 255, 255, 0.74); font-size: 0.96rem; }

/* --- Fusszeile ----------------------------------------------------------- */

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid var(--line-dark);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  font-size: 0.92rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer__zeile { margin: 0; }
.footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer a { color: rgba(255, 255, 255, 0.82); text-decoration-color: var(--accent-light); text-underline-offset: 3px; }
.footer a:hover { color: #fff; }
.footer__claim {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-light);
  font-size: 1.05rem;
  margin: 0;
}

/* --- Unterseiten (Impressum, Datenschutz) ------------------------------- */

.legal { padding-block: clamp(3rem, 7vw, 6rem); }
.legal__inner { max-width: 46rem; }
.legal h1 { font-size: clamp(1.9rem, 1.2rem + 2.4vw, 2.8rem); margin-bottom: 2rem; }
.legal h2 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); margin: 2.5rem 0 0.8rem; }
.legal address { font-style: normal; }
.legal .review {
  background: var(--sand);
  border-left: 3px solid var(--accent);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2.5rem;
  font-size: 0.94rem;
}

/* --- Danke-Seite / Formularmeldungen ------------------------------------ */

.meldung {
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.8rem;
  font-size: 0.98rem;
}
.meldung--ok { background: rgba(191, 155, 113, 0.16); border: 1px solid var(--accent-light); }
.meldung--fehler { background: rgba(180, 70, 60, 0.16); border: 1px solid #c96a5e; }
