/* ============================================================
   max-gradl.de  ·  Künstlerfamilie Gradl am Ammersee-Westufer
   Stylesheet · Stand Juli 2026
   Farbwelt: Ammersee-Grün, Papier-Elfenbein, Jugendstil-Gold
   Schriften: Lora (Fließtext/Display), Poppins (Auszeichnung)
   ============================================================ */

/* ---------- Webfonts (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-400.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-600.woff") format("woff");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-700.woff") format("woff");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-italic-400.woff") format("woff");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff") format("woff");
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---------- Design-Token ---------- */
:root {
  --paper: #f7f2e7;
  --paper-2: #efe8d7;
  --card: #fffdf7;
  --ink: #2b2922;
  --muted: #6f6754;
  --pine: #1e4a41;
  --pine-deep: #14332c;
  --cream-on-dark: #ece5d2;
  --gold: #b48a3e;
  --gold-bright: #c9a050;
  --line: #dcd1b8;
  --line-soft: #e7ddc6;
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
  --font-ui: "Poppins", "Segoe UI", -apple-system, sans-serif;
  --headh: 78px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(43, 41, 34, .10);
  --shadow-soft: 0 4px 14px rgba(43, 41, 34, .07);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.06rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pine); text-decoration-color: rgba(180, 138, 62, .55); text-underline-offset: 3px; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.18; color: var(--ink); margin: 0 0 .5em; font-weight: 600; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
section { scroll-margin-top: calc(var(--headh) + 12px); }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .9em;
}

/* Ornament-Trenner unter Überschriften */
.orn {
  display: flex; align-items: center; gap: 12px;
  margin: 14px 0 26px; color: var(--gold);
}
.orn::before, .orn::after {
  content: ""; height: 1px; flex: 0 0 64px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.orn::after { background: linear-gradient(90deg, var(--gold), transparent); }
.orn svg { flex: none; }
.orn--center { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9em 1.45em;
  border-radius: 3px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--gold); color: #fff; }
.btn-solid:hover { background: var(--gold-bright); color: #fff; }
.btn-ghost { background: transparent; color: var(--pine); }
.btn-ghost:hover { background: rgba(180, 138, 62, .12); color: var(--pine); }
.cta-band .btn-solid { color: var(--pine-deep); }
.cta-band .btn-solid:hover { color: var(--pine-deep); }

/* ============================================================
   KOPFBEREICH & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 242, 231, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-in {
  display: flex; align-items: center; gap: 28px;
  min-height: var(--headh);
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; margin-right: auto; }
.brand svg { flex: none; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.22rem; font-weight: 700; color: var(--ink);
  letter-spacing: .02em; line-height: 1.1;
}
.brand-sub {
  display: block;
  font-family: var(--font-ui);
  font-size: .62rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px;
}

/* Hauptnavigation */
.main-nav ul { list-style: none; margin: 0; padding: 0; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li { position: relative; }
.nav-list > li > a,
.nav-list > li > button {
  appearance: none; background: none; border: 0;
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-ui);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: 10px 13px; cursor: pointer; border-radius: 4px;
}
.nav-list > li > a:hover,
.nav-list > li > button:hover { color: var(--gold); }
.caret { transition: transform .2s ease; }
li.open > button .caret { transform: rotate(180deg); }

.sub {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 250px;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
li.open > .sub { opacity: 1; visibility: visible; transform: translateY(0); }
@media (hover: hover) {
  .nav-list li.has-sub:hover > .sub { opacity: 1; visibility: visible; transform: translateY(0); }
}
.sub a {
  display: block; padding: 9px 18px;
  font-family: var(--font-serif); font-size: .98rem;
  color: var(--ink); text-decoration: none;
}
.sub a:hover { background: var(--paper-2); color: var(--pine); }
.sub .soon {
  font-family: var(--font-ui); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-left: 7px;
}
.nav-cta { margin-left: 8px; }
.nav-list > li > a.nav-cta { background: var(--gold); color: #fff; border-radius: 3px; padding: .8em 1.35em; }
.nav-list > li > a.nav-cta:hover { background: var(--gold-bright); color: #fff; }

/* Burger */
.nav-toggle {
  display: none;
  appearance: none; background: none; border: 1px solid var(--line);
  border-radius: 6px; padding: 9px 11px; cursor: pointer;
}
.nav-toggle .bars { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink);
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle .bars::before { top: -7px; }
.nav-toggle .bars::after { top: 7px; }
body.nav-open .nav-toggle .bars { background: transparent; }
body.nav-open .nav-toggle .bars::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle .bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--headh) 0 auto 0;
    max-height: calc(100dvh - var(--headh));
    overflow: auto;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    padding: 10px 0 20px;
  }
  body.nav-open .main-nav { display: block; }
  .nav-list { display: block; padding: 0 6px; }
  .nav-list > li { border-bottom: 1px solid var(--line-soft); }
  .nav-list > li:last-child { border-bottom: 0; }
  .nav-list > li > a, .nav-list > li > button {
    width: 100%; justify-content: space-between;
    padding: 15px 16px; font-size: .86rem;
  }
  .sub {
    position: static; opacity: 1; visibility: hidden; transform: none;
    display: none; box-shadow: none; border: 0; border-left: 3px solid var(--gold);
    margin: 0 0 8px 16px; border-radius: 0; min-width: 0;
  }
  li.open > .sub { display: block; visibility: visible; }
  .nav-cta { margin: 14px 16px 4px; display: inline-block; }
}
@media (max-width: 560px) {
  .header-in { gap: 14px; }
  .brand { min-width: 0; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1.05rem; }
}

/* ============================================================
   HERO (above the fold)
   ============================================================ */
.hero { padding: clamp(30px, 5vh, 58px) 0 30px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}
.hero-copy, .hero-gallery { min-width: 0; }
.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  font-weight: 700;
  margin-bottom: .4em;
}
.hero h1 em { font-style: italic; color: var(--pine); }
.hero-lead { font-size: 1.12rem; color: var(--ink); max-width: 56ch; }
.hero-lead strong { color: var(--pine); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 22px; }

.hero-facts { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.hero-facts li {
  font-family: var(--font-ui); font-size: .72rem; font-weight: 500;
  letter-spacing: .06em;
  color: var(--pine);
  background: rgba(30, 74, 65, .07);
  border: 1px solid var(--line);
  padding: 7px 12px; border-radius: 999px;
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero { padding-top: 24px; }
}

/* ---------- Galerie / Slider ---------- */
.slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--pine-deep);
}
.slides {
  display: flex;
  transition: transform .65s cubic-bezier(.33,.8,.35,1);
}
.slide { flex: 0 0 100%; margin: 0; position: relative; }
.slide img { width: 100%; aspect-ratio: 16 / 10.4; object-fit: cover; }
.slide figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 42px 18px 14px;
  background: linear-gradient(180deg, rgba(20, 51, 44, 0) 0%, rgba(20, 51, 44, .82) 78%);
}
.caption-link {
  display: inline-flex; align-items: baseline; gap: 8px;
  color: var(--cream-on-dark);
  font-size: .95rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.caption-link .cap-arrow { font-style: normal; color: var(--gold-bright); transform: translateX(0); transition: transform .2s ease; }
.caption-link:hover { color: #fff; border-bottom-color: var(--gold-bright); }
.caption-link:hover .cap-arrow { transform: translateX(4px); }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  appearance: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(247, 242, 231, .88);
  color: var(--pine-deep);
  font-size: 1.1rem; line-height: 1;
  display: grid; place-items: center;
  box-shadow: var(--shadow-soft);
  transition: background .2s ease;
}
.slider-btn:hover { background: var(--gold-bright); color: #fff; }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.dots {
  position: absolute; z-index: 5; left: 0; right: 0; bottom: 8px;
  display: flex; justify-content: center; gap: 7px;
  pointer-events: none;
}
.dots button {
  pointer-events: auto;
  appearance: none; border: 0; cursor: pointer;
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(236, 229, 210, .5);
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.dots button[aria-current="true"] { background: var(--gold-bright); transform: scale(1.25); }

/* ============================================================
   ZWISCHENTEXT / KONTEXT
   ============================================================ */
.context { padding: clamp(30px, 6vh, 64px) 0 10px; }
.context-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
  margin-top: 8px;
}
.context-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 22px 16px;
  box-shadow: var(--shadow-soft);
}
.context-card h3 { font-size: 1.06rem; margin-bottom: .45em; }
.context-card p { font-size: .95rem; color: var(--muted); margin: 0; }
.context-card .num {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700;
  color: var(--pine); display: block; margin-bottom: 4px;
}
@media (max-width: 860px) { .context-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BIOGRAFIEN
   ============================================================ */
.personen { padding: clamp(34px, 7vh, 70px) 0; }
.personen-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 36px);
  margin-top: 10px;
}
.bio-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 3vw, 34px);
  display: flex; flex-direction: column;
}
.bio-head { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; }
.bio-mono {
  flex: none; width: 62px; height: 62px; border-radius: 50%;
  background: var(--pine);
  color: var(--cream-on-dark);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem;
  border: 2px solid var(--gold);
}
.bio-card h3 { margin: 0; font-size: 1.35rem; }
.bio-dates {
  font-family: var(--font-ui); font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  display: block; margin-top: 5px;
}
.bio-role { font-style: italic; color: var(--muted); margin-bottom: 12px; }
.bio-list { list-style: none; padding: 0; margin: 0 0 18px; }
.bio-list li {
  position: relative; padding: 8px 0 8px 26px;
  border-bottom: 1px solid var(--line-soft);
  font-size: .98rem;
}
.bio-list li:last-child { border-bottom: 0; }
.bio-list li::before {
  content: "◆"; position: absolute; left: 2px; top: 9px;
  color: var(--gold); font-size: .62rem;
}
.bio-foot { margin-top: auto; }

@media (max-width: 900px) { .personen-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA-BAND (dunkel, mit Zickzack-Motiv)
   ============================================================ */
.cta-band {
  background: var(--pine-deep);
  color: var(--cream-on-dark);
  text-align: center;
  padding: clamp(40px, 7vh, 70px) 0;
  position: relative;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; left: 0; right: 0; height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='12' viewBox='0 0 48 12'%3E%3Cpath d='M0 10 12 2l12 8L36 2l12 8' fill='none' stroke='%23b48a3e' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  opacity: .8;
}
.cta-band::before { top: 10px; }
.cta-band::after { bottom: 10px; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .4em; }
.cta-band p { color: var(--cream-on-dark); max-width: 62ch; margin: 0 auto 1.6em; }
.cta-band .eyebrow { color: var(--gold-bright); }

/* ============================================================
   ARCHIV / TEASER
   ============================================================ */
.archiv { padding: clamp(38px, 7vh, 74px) 0; background: var(--paper-2); }
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
  margin-top: 12px;
}
.teaser {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.teaser:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.teaser img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.teaser-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.teaser .kicker {
  font-family: var(--font-ui); font-size: .62rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 7px;
}
.teaser h3 { font-size: 1.04rem; margin-bottom: .45em; }
.teaser h3 a { color: var(--ink); text-decoration: none; }
.teaser h3 a::after { content: ""; position: absolute; inset: 0; }
.teaser p { font-size: .88rem; color: var(--muted); margin: 0 0 12px; }
.teaser .more {
  margin-top: auto;
  font-family: var(--font-ui); font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--pine);
}
.teaser:hover .more { color: var(--gold); }

@media (max-width: 1100px) { .teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .teaser-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { padding: clamp(40px, 8vh, 80px) 0; }
.nl-card {
  max-width: 760px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px);
  text-align: center;
}
.nl-card h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.nl-card > p { color: var(--muted); max-width: 54ch; margin: 0 auto 1.6em; }
.nl-fields {
  display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 10px;
  margin-bottom: 14px;
}
.nl-form input[type="text"],
.nl-form input[type="email"] {
  font-family: var(--font-serif); font-size: 1rem;
  padding: .85em 1em;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}
.nl-form input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.nl-consent {
  display: flex; gap: 10px; align-items: flex-start; text-align: left;
  font-size: .84rem; color: var(--muted);
  max-width: 56ch; margin: 0 auto 4px;
}
.nl-consent input { margin-top: 4px; accent-color: var(--pine); }
.nl-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.nl-msg { min-height: 1.4em; font-size: .92rem; margin: 10px 0 0; }
.nl-msg.ok { color: var(--pine); }
.nl-msg.err { color: #9c3d22; }
@media (max-width: 680px) { .nl-fields { grid-template-columns: 1fr; } }

/* ============================================================
   FUSSBEREICH
   ============================================================ */
.site-footer {
  background: var(--pine-deep);
  color: var(--cream-on-dark);
  padding: clamp(36px, 6vh, 60px) 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(22px, 4vw, 48px);
  padding-bottom: 34px;
}
.site-footer h4 {
  color: #fff; font-size: 1rem; margin-bottom: .8em;
}
.site-footer h4::after {
  content: ""; display: block; width: 34px; height: 2px;
  background: var(--gold); margin-top: 8px;
}
.site-footer p, .site-footer li { font-size: .92rem; color: var(--cream-on-dark); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 3px 0; }
.site-footer a { color: var(--cream-on-dark); text-decoration-color: rgba(201, 160, 80, .5); }
.site-footer a:hover { color: var(--gold-bright); }
.footer-note { font-size: .8rem !important; color: rgba(236, 229, 210, .65) !important; }
.footer-bottom {
  border-top: 1px solid rgba(236, 229, 210, .18);
  padding: 16px 0;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  justify-content: space-between; align-items: center;
  font-family: var(--font-ui); font-size: .74rem; letter-spacing: .04em;
}
.footer-bottom nav { display: flex; gap: 20px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   UNTERSEITEN
   ============================================================ */
.crumbs {
  font-family: var(--font-ui); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  padding: 18px 0 0;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { margin: 0 7px; color: var(--gold); }

.page-head { padding: 14px 0 8px; max-width: 820px; }
.page-head h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.page-lead { font-size: 1.13rem; color: var(--ink); }

.page-hero { margin: 18px 0 8px; }
.page-hero img {
  width: 100%; max-height: 460px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.page-hero figcaption { font-size: .84rem; color: var(--muted); padding-top: 8px; font-style: italic; }

.prose { max-width: 760px; padding: 10px 0 30px; }
.prose h2 { font-size: 1.35rem; margin-top: 1.6em; }
.prose li { margin-bottom: .35em; }

.notice {
  max-width: 760px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 8px 0 34px;
}
.notice h2 { font-size: 1.08rem; margin-bottom: .4em; }
.notice p { margin-bottom: 1em; color: var(--muted); font-size: .95rem; }
.notice .btn { margin-top: 2px; }

.related { max-width: 760px; padding-bottom: 50px; }
.related h2 { font-size: 1.05rem; }
.related ul { list-style: none; padding: 0; }
.related li { padding: 6px 0; border-bottom: 1px solid var(--line-soft); }
.related li:last-child { border-bottom: 0; }

/* Rechtstexte */
.legal { max-width: 760px; padding: 10px 0 60px; }
.legal h2 { font-size: 1.25rem; margin-top: 1.8em; }
.legal h3 { font-size: 1.05rem; margin-top: 1.4em; }
.legal p, .legal li { font-size: .97rem; }

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slides { transition: none; }
  .teaser, .btn { transition: none; }
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .slider-btn, .dots, .cta-band, .newsletter, .nav-toggle { display: none !important; }
  body { background: #fff; }
}
