/* ==========================================================================
   AI, Body and Cooking - Retreat Landingpage
   ========================================================================== */

:root {
  --bg: #f3ebdd;
  --head: #241226;
  --ink: #2c1a2e;
  --body: rgba(44, 26, 46, .76);
  --muted: rgba(44, 26, 46, .56);
  --lead: #b07d2b;
  --lead-soft: rgba(176, 125, 43, .16);
  --aegean: #2b7d9e;
  --aegean-soft: rgba(43, 125, 158, .14);
  --olive: #6d7b4a;
  --line: rgba(44, 26, 46, .12);

  --glass-bg: rgba(255, 255, 255, .5);
  --glass-border: rgba(255, 255, 255, .78);
  --blur: 24px;

  --nav-bg: rgba(243, 235, 221, .62);
  --btn-bg: #231226;
  --btn-fg: #fbf6ec;
  --btn-fg-hover: #f0c24d;
  --btn-shadow: 0 12px 34px -14px rgba(35, 18, 38, .5);
  --field-bg: rgba(255, 255, 255, .58);

  --glow: radial-gradient(55% 45% at 12% 6%, rgba(255, 196, 126, .34), transparent 66%),
          radial-gradient(48% 44% at 92% 12%, rgba(43, 125, 158, .22), transparent 70%),
          radial-gradient(74% 62% at 60% 104%, rgba(96, 170, 196, .18), transparent 66%);
  --hero-scrim: linear-gradient(90deg, rgba(243, 235, 221, .92) 0%, rgba(243, 235, 221, .6) 42%, rgba(243, 235, 221, .08) 100%),
                linear-gradient(0deg, rgba(243, 235, 221, .82) 0%, rgba(243, 235, 221, .12) 46%, transparent 70%);
  --panel-grad: linear-gradient(135deg, rgba(176, 125, 43, .14), rgba(43, 125, 158, .1));

  /* Griechischer Mäander (Greek key) als Fries */
  --meander: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpath d='M0 18H40M36 18V2H4V14H32V6H8V10' fill='none' stroke='%23b07d2b' stroke-opacity='.6' stroke-width='2.8'/%3E%3C/svg%3E");
  /* Feiner Putz-/Stuckkorn wie auf einer gekalkten Wand */
  --plaster: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");

  --font-display: 'Cormorant Garamond', serif;
  --font-body: Manrope, system-ui, sans-serif;
}

/* ---- Reset ---- */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip statt hidden: sonst verliert die sticky Navigation ihren Halt */
  overflow-x: clip;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: var(--glow);
}

/* Gekalkte Wand: feines Korn über dem Hintergrund */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--plaster);
  background-size: 180px 180px;
  opacity: .05;
  mix-blend-mode: multiply;
}

a { color: var(--lead); text-decoration: none; }
a:hover { color: var(--head); }
button { font-family: inherit; }
::selection { background: rgba(176, 125, 43, .24); }
img { max-width: 100%; display: block; }

/* .nav bleibt hier bewusst außen vor - sie ist sticky (siehe unten) */
main, footer.footer, .meander--frieze { position: relative; z-index: 1; }

/* ---- Mäander-Fries & Ornamente ---- */
.meander {
  background-image: var(--meander);
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  pointer-events: none;
}

.meander--frieze {
  height: 17px;
  margin-top: clamp(40px, 6vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.meander--panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  border-bottom: 1px solid var(--line);
}

.ornament {
  display: flex;
  justify-content: center;
  margin: 0 0 clamp(34px, 5vw, 58px);
  color: var(--lead);
  opacity: .65;
}

.ornament svg { width: min(320px, 72%); height: auto; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 96px; }

/* ---- Shared bits ---- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--lead);
  margin: 0 0 16px;
}

.heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--head);
}

.heading--sm { font-size: clamp(30px, 4vw, 50px); line-height: 1.06; }
.heading em, .hero__title em { font-style: italic; color: var(--lead); }

.accent { color: var(--lead); font-weight: 700; }
.accent-ink { color: var(--ink); }

.section__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 20px 0 0;
  max-width: 460px;
}

.btn {
  cursor: pointer;
  display: inline-block;
  border: none;
  padding: 17px 32px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: var(--btn-shadow);
  text-align: center;
  transition: color .15s ease;
}

/* höhere Spezifität als das generische a:hover, damit der Text auf dem
   dunklen Button nicht dunkel (= unsichtbar) statt gelb wird */
.btn.btn--primary:hover { color: var(--btn-fg-hover); }

.btn--block { width: 100%; padding: 17px; border-radius: 12px; margin-top: 6px; }

.btn--nav {
  border: 1px solid var(--glass-border);
  background: var(--lead-soft);
  color: var(--ink);
  font-size: 13px;
  padding: 10px 18px;
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur));
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--lead);
}

.badge--panel { font-size: 11px; letter-spacing: .22em; padding: 7px 14px; }

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aegean);
  box-shadow: 0 0 12px var(--aegean);
}

.section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 64px);
  max-width: 1240px;
  margin: 0 auto;
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: var(--nav-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.3);
  border-bottom: 1px solid var(--line);
}

/* Mäander-Fries als Abschluss der Navigation */
.nav::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
  background-image: var(--meander);
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-color: var(--nav-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.3);
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__logo { height: 30px; width: auto; }
.nav__logo--sm { height: 28px; }
.nav__divider { width: 1px; height: 22px; background: var(--line); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a:not(.btn) {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .01em;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: calc(100vh - 67px);
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 6vw, 90px);
  padding-top: 80px;
  overflow: hidden;
}

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

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--hero-scrim);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: rise .9s cubic-bezier(.2, .7, .2, 1) both;
}

.hero__title {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: .98;
  letter-spacing: -.01em;
  color: var(--head);
}

.hero__lead {
  max-width: 520px;
  margin: 26px 0 0;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--body);
  font-weight: 400;
}

.hero__audience {
  max-width: 520px;
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
  color: var(--lead);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.hero__note { font-size: 13.5px; color: var(--body); }

/* ---- Konzept cards ---- */
.section__intro { max-width: 640px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.card {
  padding: 34px 30px 32px;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur));
}

/* Nische im Rundbogen - Cycladic arch */
.card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 60px;
  border-radius: 26px 26px 8px 8px;
  background: var(--lead-soft);
  border: 1px solid var(--glass-border);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--lead);
}

.card__label {
  margin: 24px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.card__title {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--head);
}

.card__text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ---- Programm / Themenblöcke ---- */
.section--programm { padding-top: clamp(30px, 4vw, 60px); }

.section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.section__header > div { max-width: 560px; }
.section__side-lead {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

.topic-panel {
  position: relative;
  border-radius: 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur));
  overflow: hidden;
}

.topic-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: start;
  gap: clamp(16px, 4vw, 48px);
  padding: clamp(24px, 3vw, 40px) clamp(24px, 4vw, 46px);
  border-top: 1px solid var(--line);
}

.topic-row:first-child { border-top: none; }

.topic-row__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--lead);
  margin-bottom: 6px;
}

.topic-row__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  color: var(--head);
}

.topic-row__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 27px;
  text-align: center;
}

.topic-row__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--body);
}

.topic-row__mark {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--lead);
  margin-right: 7px;
}

.topic-row__host {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
  border: 1px solid var(--glass-border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--body);
}

.topic-grid__note {
  margin: 20px 0 0;
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}

.outcome-banner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
  padding: 26px clamp(24px, 4vw, 40px) 30px;
  border-radius: 18px;
  background: var(--panel-grad), var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur));
}

.outcome-banner__eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lead);
}

.outcome-banner__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.outcome-banner__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

.outcome-banner__mark {
  flex: none;
  margin-top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--aegean-soft);
  border: 1px solid var(--glass-border);
  color: var(--aegean);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
}

.outcome-banner__list em { font-style: italic; color: var(--lead); }

/* ---- Hosts ---- */
.host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.host-card {
  border-radius: 22px;
  padding: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur));
}

/* Portraits sitzen in einer gekalkten Bogennische */
.host-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 50% 50% 12px 12px / 40% 40% 12px 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6);
}

.host-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.host-card__body { padding: 20px 10px 10px; }

.host-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--head);
}

.host-card__role { margin-top: 6px; font-size: 14px; line-height: 1.5; color: var(--muted); }

.host-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 13px 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--aegean-soft);
  color: var(--aegean);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
}

.host-card__link:hover { background: var(--aegean); color: #fff; }
.host-card__icon { width: 14px; height: 14px; flex: none; }

.host-note {
  margin-top: 22px;
  padding: 22px 26px;
  border-radius: 16px;
  border: 1px dashed var(--glass-border);
  background: var(--glass-bg);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---- Inklusive ---- */
.inklusive-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  border-radius: 24px;
  background: var(--panel-grad), var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur));
  overflow: hidden;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.45;
  color: var(--body);
}

.check-list__mark {
  flex: none;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lead-soft);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lead);
  font-size: 11px;
  font-weight: 700;
}

/* ---- Atmo band ---- */
.atmo {
  position: relative;
  height: clamp(420px, 60vh, 640px);
  margin: 0 0 clamp(70px, 9vw, 130px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.atmo__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(70% 90% at 50% 50%, rgba(20, 10, 30, .42), rgba(20, 10, 30, .16) 60%, transparent),
    linear-gradient(0deg, rgba(20, 10, 30, .4), transparent 40%);
}

.atmo__quote {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(24px, 5vw, 48px);
  max-width: 820px;
}

.atmo__quote p {
  display: inline-block;
  margin: 0;
  padding: clamp(22px, 3vw, 34px) clamp(28px, 4vw, 52px);
  border-radius: 22px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .5);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 30px 80px -30px rgba(20, 10, 30, .5);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.16;
  color: #fff;
  text-shadow: 0 2px 24px rgba(20, 10, 30, .35);
}

.atmo__caption {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .86);
  text-shadow: 0 1px 12px rgba(20, 10, 30, .4);
}

/* ---- Kennenlernen / Terminbuchung ---- */
.booking-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 5vw, 60px);
  border-radius: 26px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur));
}

.booking-intro .heading { margin-top: 22px; }

.booking-card {
  position: relative;
  overflow: hidden;
  padding: 34px clamp(24px, 3vw, 34px) 28px;
  border-radius: 22px;
  text-align: center;
  background: var(--panel-grad), var(--field-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 34px 70px -40px rgba(35, 18, 38, .45);
}

/* Portrait in der Bogennische, wie eine Ikone in der Kapelle */
.booking-card__portrait {
  position: relative;
  width: 122px;
  height: 152px;
  margin: 10px auto 0;
  overflow: hidden;
  border-radius: 50% 50% 10px 10px / 40% 40% 10px 10px;
  box-shadow: 0 0 0 1px var(--glass-border), 0 16px 34px -20px rgba(35, 18, 38, .5);
}

.booking-card__portrait img { width: 100%; height: 100%; object-fit: cover; }

.booking-card__eyebrow {
  margin-top: 20px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lead);
}

.booking-card__name {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--head);
}

.booking-card__role { margin-top: 7px; font-size: 13.5px; color: var(--muted); }

.booking-card__list {
  margin: 24px 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.booking-card__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--body);
}

.booking-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--aegean-soft);
  color: var(--aegean);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arrow-list li {
  display: flex;
  gap: 11px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}

.arrow-list__arrow { color: var(--aegean); }

.field__hint {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

/* ---- Legal / Datenschutz ---- */
.section--legal { max-width: 860px; }

.legal { max-width: 720px; margin: clamp(40px, 6vw, 64px) auto 0; }

.legal h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.15;
  color: var(--head);
  margin: 52px 0 16px;
}

.legal h2:first-of-type { margin-top: 0; }

.legal h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  margin: 30px 0 10px;
}

.legal p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
  margin: 0 0 16px;
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 10px;
}

.legal strong { color: var(--ink); }
.legal a { text-decoration: underline; text-underline-offset: 2px; }

.legal__meta {
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal__source { font-size: 12.5px; color: var(--muted); margin-top: 40px; }

/* ---- Footer ---- */
.footer {
  padding: 30px clamp(20px, 5vw, 64px) 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__x { color: var(--muted); opacity: .5; }
.footer__text { font-size: 12.5px; color: var(--muted); }

.footer__legal { font-size: 12.5px; color: var(--muted); }
.footer__legal a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.footer__legal a:hover { color: var(--head); }

.footer__disclosure {
  margin: 0;
  padding: 0 clamp(20px, 5vw, 64px) 26px;
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--muted);
  opacity: .55;
  text-align: center;
}

.footer__legal {
  display: flex;
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 64px) 14px;
  font-size: 12.5px;
}

.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--head); }

/* ---- Legal pages (Impressum / Datenschutz) ---- */
.section--legal { padding-top: clamp(48px, 6vw, 80px); }

.legal { max-width: 720px; }

.legal__updated {
  margin: -8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.legal__block {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.legal__block:first-of-type { margin-top: 44px; padding-top: 0; border-top: none; }

.legal h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(21px, 2.4vw, 27px);
  color: var(--head);
}

.legal h3 {
  margin: 26px 0 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--lead);
}

.legal p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
}

.legal address {
  margin: 12px 0 0;
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
}

.legal ul {
  margin: 12px 0 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
}

.legal li { margin-top: 4px; }
.legal a { text-decoration: underline; text-underline-offset: 2px; }

.legal__placeholder {
  color: var(--lead);
  font-style: italic;
}

.legal__note {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px dashed var(--glass-border);
  background: var(--glass-bg);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .nav { gap: 12px; padding: 13px 18px; }
  .nav__brand { gap: 10px; }
  .nav__logo { height: 22px; }
  .nav__links { gap: 16px; }
  .nav__links a:not(.btn) { display: none; }
  .btn--nav { font-size: 12px; padding: 9px 15px; }
  .check-list { grid-template-columns: 1fr; }
  .topic-row { grid-template-columns: 1fr; }
  .topic-row__body { align-items: flex-start; text-align: left; padding-top: 14px; }
}
