/* hand-kraft GmbH - Stylesheet
   Bewusst ohne externe Schriften/CDNs: alles laedt vom eigenen Server.
   Das haelt die Datenschutzerklaerung kurz und die Seite schnell. */

:root {
  --schwarz:    #16181a;
  --anthrazit:  #2b2f33;
  --grau:       #5d666e;
  --hellgrau:   #eceef0;
  --papier:     #f7f7f5;
  --weiss:      #ffffff;
  --holz:       #b5651d;
  --holz-hell:  #d98b45;
  --rahmen:     #d9dcdf;
  --breite:     1180px;
  --schrift: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
             "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--schrift);
  font-size: 17px;
  line-height: 1.65;
  color: var(--anthrazit);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--holz); }
a:hover { color: var(--holz-hell); }

h1, h2, h3 {
  color: var(--schwarz);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1.1em; }

.huelle { max-width: var(--breite); margin: 0 auto; padding: 0 24px; }
.schmal { max-width: 760px; }

/* ---------- Kopf ---------- */
.kopf {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rahmen);
}
.kopf-inhalt { display: flex; align-items: center; gap: 24px; min-height: 74px; }
.marke { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.marke img { width: 40px; height: 40px; }
.marke-text { font-weight: 800; font-size: 1.15rem; color: var(--schwarz); letter-spacing: -0.02em; }
.marke-zusatz { display: block; font-size: .72rem; font-weight: 600; color: var(--grau);
                letter-spacing: .09em; text-transform: uppercase; }

.navi { display: flex; gap: 4px; flex-wrap: wrap; }
.navi a {
  padding: 9px 13px; border-radius: 7px; text-decoration: none;
  color: var(--anthrazit); font-weight: 600; font-size: .94rem;
}
.navi a:hover { background: var(--hellgrau); color: var(--schwarz); }
.navi a.aktiv { color: var(--holz); background: #fdf3ea; }

.navi-schalter {
  display: none; background: none; border: 1px solid var(--rahmen);
  border-radius: 7px; padding: 9px 12px; font-size: 1rem; cursor: pointer;
}

/* ---------- Buehne ---------- */
.buehne { position: relative; background: var(--schwarz); color: var(--weiss); overflow: hidden; }
.buehne img.hintergrund {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .42;
}
/* Seitlichen Abstand der .huelle NICHT ueberschreiben, sonst klebt der Text
   auf schmalen Bildschirmen am Rand. */
.buehne-inhalt { position: relative; padding: 110px 24px 96px; max-width: 774px; }
.buehne h1 { color: var(--weiss); }
.buehne p.vorspann { font-size: 1.22rem; color: #dfe3e6; margin-bottom: 1.8em; }
.augenbraue {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--holz-hell); margin-bottom: 1.1em;
}

/* ---------- Knoepfe ---------- */
.knopf {
  display: inline-block; padding: 14px 26px; border-radius: 8px;
  font-weight: 700; text-decoration: none; font-size: 1rem; border: 2px solid transparent;
}
.knopf-voll { background: var(--holz); color: #fff; }
.knopf-voll:hover { background: var(--holz-hell); color: #fff; }
.knopf-rand { border-color: rgba(255,255,255,.45); color: #fff; margin-left: 10px; }
.knopf-rand:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
.knopf-dunkel { background: var(--schwarz); color: #fff; }
.knopf-dunkel:hover { background: var(--anthrazit); color: #fff; }

/* ---------- Abschnitte ---------- */
.abschnitt { padding: 84px 0; }
.abschnitt-hell { background: var(--papier); }
.abschnitt-dunkel { background: var(--schwarz); color: #c9ced3; }
.abschnitt-dunkel h2 { color: #fff; }

.kopfzeile { max-width: 700px; margin-bottom: 48px; }
.kopfzeile p { color: var(--grau); font-size: 1.08rem; }

/* ---------- Raster ---------- */
.raster { display: grid; gap: 26px; }
.raster-2 { grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); }
.raster-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.raster-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------- Karten ---------- */
.karte {
  background: var(--weiss); border: 1px solid var(--rahmen); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
}
.karte-bild { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.karte-text { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.karte-text p { color: var(--grau); }
.karte-text .weiter { margin-top: auto; font-weight: 700; text-decoration: none; font-size: .95rem; }

.leistung { padding: 30px; border: 1px solid var(--rahmen); border-radius: 12px; background: var(--weiss); }
.leistung .nummer {
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; color: var(--holz);
  display: block; margin-bottom: 10px;
}
.leistung ul { margin: 0; padding-left: 20px; color: var(--grau); }
.leistung li { margin-bottom: 5px; }

/* ---------- Zwei Spalten mit Bild ---------- */
.paar { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.paar img { border-radius: 12px; }
.paar-text h2 { margin-bottom: .5em; }

/* ---------- Team ---------- */
.person img { border-radius: 12px; aspect-ratio: 3 / 2; object-fit: cover; margin-bottom: 16px; }
.person h3 { margin-bottom: .15em; }
.person .rolle { color: var(--holz); font-weight: 600; font-size: .9rem;
                 text-transform: uppercase; letter-spacing: .06em; margin-bottom: .7em; }
.person p { color: var(--grau); font-size: .96rem; }

/* ---------- Galerie ---------- */
.galerie { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.galerie img { border-radius: 10px; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* ---------- Zahlenband ---------- */
.zahlen { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; }
.zahl { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.zahl-text { color: #9aa3ab; font-size: .95rem; }

/* ---------- Formular ---------- */
.formular { display: grid; gap: 18px; max-width: 620px; }
.feld { display: flex; flex-direction: column; gap: 6px; }
.feld label { font-weight: 600; font-size: .93rem; }
.feld input, .feld textarea, .feld select {
  padding: 12px 14px; border: 1px solid var(--rahmen); border-radius: 8px;
  font: inherit; font-size: 1rem; background: #fff; color: var(--anthrazit);
}
.feld input:focus, .feld textarea:focus, .feld select:focus {
  outline: 2px solid var(--holz); outline-offset: 1px; border-color: var(--holz);
}
.feld textarea { min-height: 150px; resize: vertical; }
.pflichthinweis { font-size: .86rem; color: var(--grau); }
.honigtopf { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hinweis { padding: 14px 18px; border-radius: 8px; font-size: .96rem; }
.hinweis-gut { background: #e8f5ea; border: 1px solid #b6ddbe; color: #1e5128; }
.hinweis-schlecht { background: #fdecea; border: 1px solid #f5c2bd; color: #8b2419; }

/* ---------- "Ruf uns an ... oder schreib uns" ---------- */
.ruf-an {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px;
  max-width: 640px; margin: 0 0 52px;
}
.ruf-an figure { margin: 0; }
.ruf-an img {
  border-radius: 12px; aspect-ratio: 4 / 5; object-fit: cover;
  width: 100%; object-position: center 22%;
}
.ruf-an figcaption {
  margin-top: 12px; font-weight: 700; color: var(--schwarz); font-size: 1.02rem;
}

/* ---------- Kontaktbox ---------- */
.kontaktbox { background: var(--papier); border: 1px solid var(--rahmen);
              border-radius: 12px; padding: 30px; }
.kontaktbox dt { font-weight: 700; margin-top: 18px; font-size: .82rem;
                 text-transform: uppercase; letter-spacing: .07em; color: var(--grau); }
.kontaktbox dt:first-child { margin-top: 0; }
.kontaktbox dd { margin: 4px 0 0; font-size: 1.05rem; }

/* ---------- Fuss ---------- */
.fuss { background: var(--schwarz); color: #9aa3ab; padding: 64px 0 28px; font-size: .95rem; }
.fuss h3 { color: #fff; font-size: .82rem; text-transform: uppercase;
           letter-spacing: .1em; margin-bottom: 16px; }
.fuss a { color: #c9ced3; text-decoration: none; }
.fuss a:hover { color: #fff; text-decoration: underline; }
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { margin-bottom: 9px; }
.fuss-unten {
  border-top: 1px solid #2e3338; margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .88rem;
}

/* ---------- Rechtstexte ---------- */
.rechtstext { max-width: 800px; }
.rechtstext h2 { font-size: 1.35rem; margin-top: 2em; }
.rechtstext h3 { font-size: 1.08rem; margin-top: 1.6em; }
.rechtstext ul { color: var(--anthrazit); }
.rechtstext li { margin-bottom: .4em; }

/* ---------- Mobil ---------- */
@media (max-width: 860px) {
  .paar { grid-template-columns: 1fr; gap: 32px; }
  .navi-schalter { display: block; }
  .navi {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--rahmen);
    flex-direction: column; padding: 12px 24px 20px; gap: 2px;
  }
  .navi.offen { display: flex; }
  .buehne-inhalt { padding: 72px 24px 64px; }
  .abschnitt { padding: 60px 0; }
  .knopf-rand { margin-left: 0; margin-top: 10px; }
}

@media print {
  .kopf, .fuss, .navi-schalter { display: none; }
  body { font-size: 12pt; }
}
