/* =========================================================================
   Zeltschneiderei Elisabeth Both
   Stylesheet zur statischen Website (ohne Framework, ohne Build-Schritt)
   ========================================================================= */

/* --- Farben und Maße ---------------------------------------------------- */
:root {
  --sand:        #FAF6F1;  /* heller Seitenhintergrund */
  --sand-dark:   #F1E9E1;  /* abwechselnder Abschnittshintergrund */
  --ink:         #2A1D19;  /* Text und dunkle Flächen */
  --ink-soft:    #4A3832;  /* Fließtext */
  --red:         #A32B22;  /* Akzent */
  --red-dark:    #6E1C16;
  --red-light:   #C0342A;
  --rose:        #F6E7E2;  /* Text auf dunklem Grund */
  --rose-dim:    #C9B4AE;
  --rose-pale:   #E0B6B0;
  --line:        #DFD2C7;
  --line-warm:   #C9B6A6;
  --line-dark:   #D8C9BD;
  --placeholder: #EFE6DD;
  --placeholder-2: #E6DACF;
  --wrap: 1180px;
  --serif: 'Bitter', Georgia, serif;
  --sans:  'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* --- Grundgerüst -------------------------------------------------------- */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

.page { max-width: 100%; overflow-x: hidden; }

/* Hintergrund nicht mitscrollen, solange Modal oder Lightbox offen ist */
body.overlay-open { overflow: hidden; }

a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--red-dark); }

input, textarea, button { font-family: inherit; }

img { max-width: 100%; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0; }

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes riseIn { from { opacity: 0; transform: translateY(12px) } to { opacity: 1; transform: none } }

/* Sichtbar nur für Screenreader */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Sprungmarken-Ziele unter dem Slider korrekt anfahren */
[id] { scroll-margin-top: 16px; }

.wrap { max-width: var(--wrap); margin: 0 auto; }
.wrap-narrow { max-width: 880px; margin: 0 auto; }
.wrap-mid { max-width: 1080px; margin: 0 auto; }

/* =========================================================================
   Konfigurator — vorerst ausgeblendet.
   ZUM AKTIVIEREN: die folgende Regel auskommentieren oder löschen.
   Sie blendet den Abschnitt #konfigurator und alle Elemente mit der
   Klasse .konfigurator-link aus (Buttons/Links, die dorthin führen).
   ========================================================================= */
#konfigurator,
.konfigurator-link { display: none !important; }

/* =========================================================================
   Buttons und Links im Button-Look
   ========================================================================= */
.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  background: var(--red);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 17px 32px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--red-light); color: #fff; }

.btn-hero { box-shadow: 0 10px 28px rgba(0, 0, 0, .32); }

.btn-dark { background: var(--ink); color: #fff; font-size: 17px; padding: 16px 24px; border-radius: 8px; width: 100%; }
.btn-dark:hover { background: var(--red-dark); color: #fff; }

.btn-red-deep:hover { background: var(--red-dark); color: #fff; }

/* Heller Button auf dunklem Grund (Konfigurator) */
.btn-light { background: var(--sand); color: var(--red-dark); }
.btn-light:hover { background: #fff; color: var(--red-dark); }

/* Umrandeter Button, heller Grund */
.btn-outline {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--line-warm);
  background: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* Umrandeter Button, dunkler Grund */
.btn-ghost {
  display: inline-block;
  text-decoration: none;
  border: 1px solid rgba(246, 231, 226, .5);
  color: var(--rose);
  font-size: 17px;
  font-weight: 600;
  padding: 17px 32px;
  border-radius: 6px;
  transition: border-color .2s ease, color .2s ease;
}
.btn-ghost:hover { border-color: var(--rose); color: #fff; }
.btn-ghost-sm { font-size: 16px; padding: 14px 24px; }

/* "Mehr lesen" */
.more-toggle {
  align-self: flex-start;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--red);
  color: var(--red);
  font-size: 16px;
  font-weight: 600;
  padding: 2px 0;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.more-toggle:hover { color: var(--red-dark); border-color: var(--red-dark); }

/* =========================================================================
   Kopfbereich mit Slider
   ========================================================================= */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: .75; }

.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,29,25,.5) 0%, rgba(42,29,25,.2) 38%, rgba(42,29,25,.93) 100%);
}
/* Das Logo sitzt auf einer weißen Platte am oberen Rand (wie im Entwurf).
   Die SVG-Fassung ist transparent, deshalb sorgt padding für etwas Luft
   zwischen Schriftzug und Plattenkante. */
.hero-logo {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  height: 104px; width: auto;
  display: block;
  background: #FFFFFF;
  padding: 10px 26px 14px;
  border-radius: 0 0 12px 12px;
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 140px 24px 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.08;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  max-width: 20ch;
  text-wrap: pretty;
}
.hero-sub { margin: 0; font-size: clamp(17px, 2vw, 22px); color: var(--rose); max-width: 44ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }

.hero-nav { display: flex; gap: 12px; align-items: center; }
.hero-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(42, 29, 25, .4);
  color: #fff;
  font-size: 26px; line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.hero-arrow:hover { background: var(--red); border-color: var(--red); }
.hero-dots { display: flex; gap: 9px; }
.hero-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .8);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dot.is-active { background: var(--sand); }

/* =========================================================================
   Abschnitte
   ========================================================================= */
.sec { padding: clamp(40px, 6vw, 72px) 24px; }
.sec-sand { background: var(--sand); }
.sec-warm { background: var(--sand-dark); }
.sec-tall { padding: clamp(64px, 8vw, 104px) 24px; }
.sec-intro { padding: clamp(72px, 9vw, 112px) 24px clamp(40px, 5vw, 64px); }

.eyebrow {
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.stack { display: flex; flex-direction: column; gap: 20px; }

.h2-big { font-size: clamp(28px, 4.2vw, 52px); line-height: 1.12; max-width: 26ch; text-wrap: pretty; }
.h2-mid { font-size: clamp(28px, 4.2vw, 50px); line-height: 1.12; }
.h3-mid { font-size: clamp(26px, 3.4vw, 42px); line-height: 1.14; }

.lead { margin: 0; font-size: 19px; line-height: 1.65; max-width: 62ch; color: var(--ink-soft); }
.teaser { margin: 0; font-size: 19px; line-height: 1.65; color: var(--ink-soft); }

/* Zweispaltiger Leistungsblock (Bild + Text) */
.split {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split-rev { flex-direction: row-reverse; }
.split > .split-media,
.split > .split-text { flex: 1 1 min(100%, 340px); min-width: 0; }

/* Bilder der Leistungs-Abschnitte.
   Kein fester Rahmen und keine Hintergrundfläche: Jedes Foto behält sein
   natürliches Seitenverhältnis und wird nie beschnitten. Begrenzt wird es
   nur durch die Spaltenbreite und eine Maximalhöhe.
   Dadurch füllen Querformat-Fotos die Spalte, während Hochkant-Fotos
   schmaler bleiben und mittig in ihrer Spalte stehen.
   Die runden Ecken sitzen am Bild selbst, nicht an einer Hüllfläche. */
.split-media {
  display: flex;
  justify-content: center;
}
.split-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 360px;
  border-radius: 20px;
}
.split-text { display: flex; flex-direction: column; gap: 20px; }

/* Ausklappbarer Detailtext */
.details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  animation: riseIn .3s ease;
}
.details p { margin: 0; }
.details ul { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }
.details[hidden] { display: none; }
.hint { font-weight: 600; color: var(--red-dark); }
.strong-line { font-weight: 600; }

.row-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Näharbeiten-Schlagworte */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* =========================================================================
   Konfigurator (ausgeblendet, siehe Regel oben)
   ========================================================================= */
.sec-konf { background: var(--red-dark); color: #fff; padding: clamp(72px, 9vw, 112px) 24px; }
.sec-konf .wrap { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.sec-konf h2 { font-size: clamp(28px, 4.2vw, 50px); line-height: 1.12; max-width: 24ch; }
.sec-konf p { margin: 0; font-size: 19px; line-height: 1.65; color: #F6DED9; max-width: 56ch; }
.sec-konf .note { font-size: 14px; color: var(--rose-pale); }

/* =========================================================================
   Bildergalerie
   ========================================================================= */
.gallery-head {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: space-between; align-items: flex-end;
}
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}
.tile {
  padding: 0; border: 0;
  cursor: zoom-in;
  background: var(--placeholder-2);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.tile:hover img { transform: scale(1.06); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line-dark); }
.faq-item:last-child { border-bottom: 1px solid var(--line-dark); }
.faq-q {
  width: 100%;
  display: flex; gap: 20px;
  justify-content: space-between; align-items: center;
  text-align: left;
  background: none; border: 0;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--ink);
}
.faq-sign { color: var(--red); font-size: 26px; line-height: 1; font-family: var(--sans); }
.faq-a {
  margin: 0 0 24px;
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 64ch;
  animation: riseIn .25s ease;
}
.faq-a[hidden] { display: none; }

/* =========================================================================
   Öffnungszeiten und Standort
   ========================================================================= */
.standort-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.standort-col { display: flex; flex-direction: column; gap: 28px; }

.hours { display: flex; flex-direction: column; gap: 10px; font-size: 19px; line-height: 1.6; }
.hours-table {
  border-collapse: collapse;
  font-size: 19px;
  line-height: 1.6;
  text-align: left;
}
.hours-table th,
.hours-table td { padding: 4px 0; font-weight: 400; vertical-align: top; }
.hours-table th { padding-right: 28px; font-weight: 600; white-space: nowrap; }
.hours-table td { color: var(--ink-soft); }
.hours-note { color: var(--ink-soft); font-size: 17px; }

.adresse { display: flex; flex-direction: column; gap: 6px; font-size: 18px; line-height: 1.6; color: var(--ink-soft); }
.adresse strong { color: var(--ink); }
.adresse a { font-weight: 600; }

/* Karte als schlichter Block mit Link (kein Google-Maps-iframe) */
.karte {
  background: var(--sand-dark);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.karte-pin {
  width: 44px; height: 44px;
  display: block;
  color: var(--red);
}
.karte p { margin: 0; font-size: 18px; line-height: 1.6; color: var(--ink-soft); }
.karte strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 20px; }

/* =========================================================================
   Kontaktbereich
   ========================================================================= */
.kontakt-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.kontakt-direkt { display: flex; flex-direction: column; gap: 10px; }

.kontakt-zeile {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 18px; font-weight: 600;
  word-break: break-word;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.kontakt-zeile-tel { background: var(--red); color: #fff; }
.kontakt-zeile-tel:hover { background: var(--red-dark); color: #fff; }
.kontakt-zeile-mail { border: 1px solid var(--line); color: var(--ink); font-size: 16px; }
.kontakt-zeile-mail:hover { border-color: var(--red); color: var(--red); }
.kontakt-zeile .klein { font-size: 14px; font-weight: 500; opacity: .9; white-space: nowrap; }
.kontakt-zeile-mail .klein { color: #8A736C; opacity: 1; }

/* =========================================================================
   Formular
   ========================================================================= */
.form { display: flex; flex-direction: column; gap: 14px; }
/* Nach erfolgreichem Versand wird das Formular ausgeblendet. Die Regel muss
   hier stehen, weil "display: flex" das hidden-Attribut sonst überstimmt. */
.form[hidden] { display: none; }
.form input,
.form textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--ink);
  width: 100%;
}
.form textarea { resize: vertical; }
.form input:focus,
.form textarea:focus { outline: none; border-color: var(--red); }

/* Honeypot: für Menschen unsichtbar, für Bots verlockend */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-msg {
  margin: 0;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.6;
}
.form-msg[hidden] { display: none; }
.form-msg-ok { background: #EDE3D8; color: var(--ink); }
.form-msg-err { background: #F7DCD9; color: var(--red-dark); }

.form-trenner { border-top: 1px solid var(--line); padding-top: 24px; }

/* =========================================================================
   Fußbereich
   ========================================================================= */
.site-footer {
  background: var(--ink);
  color: var(--rose);
  padding: clamp(56px, 7vw, 88px) 24px 36px;
}
.footer-inner { max-width: var(--wrap); margin: 0 auto; display: flex; flex-direction: column; gap: 44px; }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 36px;
  justify-content: space-between; align-items: flex-end;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 46ch; }
.footer-brand img { height: 76px; width: auto; align-self: flex-start; }
.footer-brand p { margin: 0; font-size: 19px; line-height: 1.6; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(246, 231, 226, .2);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px 32px;
  justify-content: space-between;
  font-size: 14px;
  color: var(--rose-dim);
}
.footer-bottom a { color: var(--rose-dim); letter-spacing: .08em; }
.footer-bottom a:hover { color: #fff; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* Kompakter Fußbereich der Unterseiten */
.site-footer-sub { padding: clamp(48px, 6vw, 72px) 24px 36px; }
.site-footer-sub .footer-inner { gap: 40px; }
.site-footer-sub .footer-top { align-items: center; gap: 24px; }
.site-footer-sub .footer-top p { margin: 0; font-size: 19px; line-height: 1.6; max-width: 44ch; }

/* =========================================================================
   Kontakt-Fenster (Modal)
   ========================================================================= */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 60;
  background: rgba(42, 29, 25, .74);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
  overflow: auto;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--sand);
  border-radius: 20px;
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
  animation: riseIn .28s ease;
}
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.modal-head h2 { font-size: clamp(24px, 3vw, 32px); }
.modal-close {
  background: none; border: 0;
  cursor: pointer;
  font-size: 30px; line-height: 1;
  color: #8A736C;
  padding: 0 4px;
}
.modal-close:hover { color: var(--red); }

/* =========================================================================
   Lightbox
   ========================================================================= */
.lightbox {
  position: fixed; inset: 0;
  z-index: 70;
  background: rgba(26, 16, 13, .96);
  display: flex; flex-direction: column;
  animation: fadeIn .2s ease;
}
.lightbox[hidden] { display: none; }
.lb-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  color: var(--rose);
  font-size: 15px;
}
.lb-counter { letter-spacing: .06em; }
.lb-close {
  background: none; border: 0; cursor: pointer;
  color: var(--rose);
  font-size: 34px; line-height: 1;
  padding: 0 6px;
}
.lb-stage { flex: 1; min-height: 0; display: flex; align-items: center; gap: 8px; padding: 0 12px; }
.lb-stage img { flex: 1; min-width: 0; max-height: 100%; object-fit: contain; border-radius: 8px; }
.lb-arrow {
  flex: 0 0 auto;
  background: rgba(250, 246, 241, .12);
  border: 0; cursor: pointer;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 26px;
  transition: background .2s ease;
}
.lb-arrow:hover { background: rgba(250, 246, 241, .28); }
.lb-strip { display: flex; gap: 8px; overflow-x: auto; padding: 18px 22px; }
.lb-thumb {
  flex: 0 0 auto;
  padding: 0; border: 0;
  cursor: pointer;
  background: none;
  opacity: .45;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity .2s ease;
}
.lb-thumb:hover, .lb-thumb.is-active { opacity: 1; }
.lb-thumb img { width: 74px; height: 56px; object-fit: cover; display: block; }

/* =========================================================================
   Kopfzeile der Unterseiten
   ========================================================================= */
.logobar { background: #FFFFFF; padding: 18px 24px; display: flex; justify-content: center; align-items: center; }
.logobar img { height: 72px; width: auto; display: block; }

.subhead { background: var(--sand-dark); padding: clamp(48px, 6vw, 80px) 24px; }
.subhead-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: flex-end;
}
.subhead h1 { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.12; }
.subhead p { margin: 0; font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 56ch; }

/* Dunkle Kopfzeile (Business Partner) */
.subhead-dark { background: var(--ink); color: var(--rose); padding: 28px 24px 72px; }
.subhead-dark .wrap-mid { display: flex; flex-direction: column; gap: 44px; }
.subhead-dark-row {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: space-between; align-items: center;
}
.subhead-dark-row img { height: 70px; width: auto; display: block; }
.subhead-dark h1 { font-size: clamp(30px, 4.6vw, 56px); line-height: 1.12; max-width: 24ch; text-wrap: pretty; }
.subhead-dark .eyebrow { color: var(--rose-pale); }
.subhead-dark .motto { margin: 0; font-size: 18px; color: var(--rose-dim); }

/* =========================================================================
   Business-Partner-Karten
   ========================================================================= */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px;
}
.partner-card {
  background: var(--sand-dark);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.partner-card img {
  width: 100%; max-width: 220px; height: 110px;
  object-fit: contain; object-position: left center;
}
.partner-card .daten {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 17px; line-height: 1.6; color: var(--ink-soft); flex: 1;
}
.partner-card .daten strong { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.partner-card .btn { align-self: flex-start; font-size: 16px; padding: 14px 24px; }

/* =========================================================================
   Rechtstexte (Impressum, Datenschutz)
   ========================================================================= */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) 24px clamp(64px, 8vw, 96px); }
.legal h1 { font-size: clamp(30px, 4.4vw, 48px); line-height: 1.14; margin-bottom: 8px; }
.legal h2 { font-size: clamp(20px, 2.6vw, 26px); line-height: 1.2; margin: 44px 0 12px; }
.legal p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 14px; }
.legal address { font-style: normal; font-size: 17px; line-height: 1.8; color: var(--ink-soft); }
.legal ul { font-size: 17px; line-height: 1.75; color: var(--ink-soft); padding-left: 22px; }

/* Noch zu ergänzende Pflichtangabe */
.todo {
  display: inline-block;
  background: #FCEFB4;
  border: 1px dashed #B08900;
  border-radius: 6px;
  padding: 2px 8px;
  font-weight: 600;
  color: #6B5200;
}
.todo-box {
  background: #FCEFB4;
  border: 1px dashed #B08900;
  border-radius: 10px;
  padding: 18px 20px;
  color: #5A4500;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 24px;
}
.todo-box p { color: inherit; margin: 0 0 8px; font-size: 16px; }
.todo-box p:last-child { margin: 0; }

/* =========================================================================
   Einblend-Effekt beim Scrollen
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal-on {
  transition: opacity .75s cubic-bezier(.2, .7, .3, 1), transform .75s cubic-bezier(.2, .7, .3, 1);
}
.reveal-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-on, .reveal-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-slide { transition: none; }
  .details, .faq-a, .modal, .modal-overlay, .lightbox { animation: none !important; }
}

/* =========================================================================
   Mobil
   ========================================================================= */
@media (max-width: 900px) {
  /* Sobald die Spalten untereinander stehen, darf das Bild nicht die halbe
     Bildschirmhöhe einnehmen. */
  .split-media img { max-height: 300px; }
}

@media (max-width: 640px) {
  .split-media img { max-height: 260px; border-radius: 16px; }

  /* -----------------------------------------------------------------------
     Kopfbereich auf dem Handy
     Auf schmalen, hochformatigen Bildschirmen füllte der Slider fast den
     ganzen Bildschirm und schnitt die Querformat-Fotos stark an. Deshalb
     hier ein anderer Aufbau: Das Foto liegt als Querformat-Streifen oben,
     Überschrift, Unterzeile, Kontakt-Button und Steuerung stehen darunter
     auf dem dunklen Grund.

     Der Streifen ist 66.67vw hoch, also 3:2 bei voller Bildschirmbreite.
     3:2 statt 4:3, weil die Slider-Fotos breite Querformate sind und bei
     einem höheren Streifen mehr an den Seiten wegfiele.
     padding-top an .hero hält genau diesen Platz frei; die absolut
     gesetzten Bilder bekommen dieselbe Höhe statt der vollen Fläche.
     Desktop und Tablet bleiben unverändert.
     -------------------------------------------------------------------- */
  .hero {
    display: block;
    min-height: 0;
    padding-top: 66.67vw;
  }
  .hero-slide,
  .hero-veil {
    height: 66.67vw;
    bottom: auto;
  }
  /* Nur noch leicht abdunkeln: Der Text steht jetzt nicht mehr auf dem Bild.
     Unten läuft der Streifen weich in den dunklen Hintergrund aus. */
  .hero-veil {
    background: linear-gradient(180deg,
                rgba(42, 29, 25, .34) 0%,
                rgba(42, 29, 25, 0)   34%,
                rgba(42, 29, 25, .62) 100%);
  }
  .hero-inner { padding: 26px 20px 40px; gap: 20px; }
  .hero h1 { font-size: clamp(27px, 7.6vw, 36px); max-width: none; }
  .hero-sub { font-size: 17px; max-width: none; }

  .hero-actions { gap: 18px; }
  .btn { padding: 15px 26px; font-size: 16px; }
  .btn-ghost { padding: 15px 26px; font-size: 16px; }
  .sec, .sec-tall, .sec-intro { padding-left: 20px; padding-right: 20px; }
  .grid-gallery { grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr)); gap: 10px; }
  .footer-actions .btn, .footer-actions .btn-ghost { flex: 1 1 100%; }
  .lb-stage { padding: 0 6px; gap: 4px; }
  .lb-arrow { width: 44px; height: 44px; font-size: 22px; }
}
