/* Müller & Nienaber GmbH – Platzhalterseite */

@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/barlow-semi-condensed-600.woff2) format('woff2');
}
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/barlow-semi-condensed-700.woff2) format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(../fonts/source-sans-3-variable.woff2) format('woff2');
}

:root {
  --grau: #3a444f;
  --orange: #e79500;
  --text: #3a444f;
  --text-leise: #545c66;
  --text-fuss: #626a73;
  --label: #8a5208;
  --linie: #e3e6ea;
  --hover: #b8650a;
  --display: 'Barlow Semi Condensed', 'Arial Narrow', sans-serif;
  --body: 'Source Sans 3', 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

a { color: var(--text); text-decoration: none; }
a:hover, a:focus-visible { color: var(--hover); text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

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

/* ---------- Startseite ---------- */

.seite {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
}

.inhalt {
  flex: 0 0 54%;
  display: flex;
  flex-direction: column;
  padding: 72px 96px 48px 112px;
}

.eyebrow {
  order: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  flex: 0 0 40px;
  height: 4px;
  background: var(--orange);
}

.logo-kopf { order: 2; margin-top: 64px; }
.logo { width: 440px; }

.text { order: 3; margin-top: 64px; }

h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.05;
}

.intro {
  margin: 16px 0 0;
  max-width: 500px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-leise);
}

.kontakt {
  order: 4;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 32px 40px;
  margin: 44px 0 48px;
  white-space: nowrap;
}
.kontakt h2 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--label);
}
.kontakt p, .kontakt address { margin: 0; font-style: normal; }

.fuss {
  order: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--linie);
  font-size: 14px;
  color: var(--text-fuss);
}
.fuss .copy { flex-grow: 1; }

.bild {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
  background: var(--grau);
  overflow: hidden;
}
.bild::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 260px;
  background: var(--orange);
}
.bild::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: var(--orange);
}
.bild figure {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 460px;
}
.bild figure::before {
  content: "";
  position: absolute;
  inset: 28px 28px -28px -28px;
  border: 3px solid var(--orange);
}
.bild img {
  position: relative;
  width: 100%;
  aspect-ratio: 460 / 499;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1320px) {
  .kontakt { grid-template-columns: repeat(2, auto); }
}

@media (max-width: 1200px) {
  .inhalt { padding: 56px 56px 40px 64px; }
  .logo { width: 380px; }
}

@media (max-width: 900px) {
  .seite { flex-direction: column; }
  .inhalt { display: contents; }

  .logo-kopf { order: 1; margin: 0; padding: 40px 24px 0; }
  .logo { width: 300px; margin: 0 auto; }

  .bild { order: 2; margin-top: 36px; padding: 32px 24px 36px; }
  .bild::before { width: 72px; height: 110px; }
  .bild::after, .bild figure::before { display: none; }
  .bild figure { max-width: 300px; }
  .bild img { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); }

  .eyebrow { order: 3; padding: 36px 24px 0; font-size: 13px; gap: 12px; }
  .eyebrow::before { flex-basis: 32px; }
  .text { order: 4; margin: 0; padding: 16px 24px 0; }
  h1 { font-size: 36px; }
  .intro { margin-top: 12px; font-size: 17px; }

  .kontakt { order: 5; grid-template-columns: 1fr; gap: 22px; margin: 28px 0 40px; padding: 0 24px; }

  .fuss { order: 6; margin: auto 24px 0; padding: 6px 0 16px; }
  .fuss a { padding: 12px 0; }
}

/* ---------- Rechtstexte ---------- */

.recht-kopf {
  border-top: 6px solid var(--orange);
  border-bottom: 1px solid var(--linie);
}
.recht-kopf .innen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 32px;
}
.recht-kopf img { width: 180px; }
.recht-kopf .zurueck { padding: 12px 0; font-size: 15px; }

.recht {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px 72px;
  font-size: 17px;
}
.recht > * { max-width: 760px; }
.recht h1 { margin: 0 0 28px; font-size: 44px; line-height: 1.1; hyphens: manual; }
.recht h2 {
  margin: 36px 0 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
}
.recht h3 {
  margin: 24px 0 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
}
.recht h4 {
  margin: 20px 0 4px;
  font-size: 17px;
  font-weight: 600;
}
.recht p { margin: 0 0 16px; }
.recht ul { margin: 0 0 16px; padding-left: 1.25em; }
.recht li { margin-bottom: 8px; }
.recht a { text-decoration: underline; overflow-wrap: anywhere; }
.recht .zweispaltig {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 16px;
}
.recht .zweispaltig p { margin: 0; }
.recht .hinweis { font-size: 15px; color: var(--text-fuss); }

.recht-fuss { border-top: 1px solid var(--linie); }
.recht-fuss .fuss {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 32px 28px;
  border-top: 0;
}

@media (max-width: 700px) {
  .recht-kopf .innen, .recht, .recht-fuss .fuss { padding-left: 24px; padding-right: 24px; }
  .recht-kopf img { width: 140px; }
  .recht { padding-top: 40px; }
  .recht h1 { font-size: 34px; }
  .recht .zweispaltig { grid-template-columns: 1fr; gap: 16px; }
}
