/* ------------------------------------------------------------------ */
/* Design Tokens — abgeleitet von oralchirurgie-nordschwarzwald.de    */
/* ------------------------------------------------------------------ */
:root {
  --navy-900: #0a2342;
  --navy-800: #14365a;
  --navy-700: #1d4a73;
  --navy-100: #e4ebf3;

  --cream-50:  #faf6f0;
  --cream-100: #f5efe6;
  --cream-200: #ece2d2;

  --gold-500: #b8956a;
  --gold-300: #d4b88a;

  --ink-900: #14171a;
  --ink-700: #2c3137;
  --ink-600: #5a5e62;
  --ink-400: #8b8f93;
  --ink-200: #d8d8d8;

  --white: #ffffff;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(10, 35, 66, 0.06), 0 2px 6px rgba(10, 35, 66, 0.04);
  --shadow-md: 0 4px 14px rgba(10, 35, 66, 0.08), 0 12px 32px rgba(10, 35, 66, 0.06);
  --shadow-lg: 0 18px 60px rgba(10, 35, 66, 0.14);

  --booking-w: 320px;

  --font-display: "Fraunces", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ------------------------------------------------------------------ */
/* Reset                                                              */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg, iframe { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 16px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------------ */
/* Layout — Doctolib-Sidebar rechts (Desktop)                          */
/* ------------------------------------------------------------------ */
@media (min-width: 1024px) {
  main, .site-header__inner, .site-footer__inner {
    padding-right: 0;
  }
  body { padding-right: var(--booking-w); }
}

/* ------------------------------------------------------------------ */
/* Header                                                             */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(10, 35, 66, 0.06);
}
.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy-900);
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--cream-50);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  display: grid;
  place-items: center;
  letter-spacing: 0.5px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 12px;
  color: var(--ink-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
  font-size: 15px;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-700);
  transition: color 0.2s var(--ease);
  position: relative;
  padding: 6px 2px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: 0;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover { color: var(--navy-900); }
.site-nav a:hover::after { transform: scaleX(1); }

/* ------------------------------------------------------------------ */
/* CTA Buttons                                                        */
/* ------------------------------------------------------------------ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  min-height: 44px;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.cta:active { transform: scale(0.97); }

.cta--ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid rgba(10, 35, 66, 0.2);
}
.cta--ghost:hover { background: var(--navy-900); color: var(--cream-50); }

.cta--primary {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 16px 30px;
  min-height: 56px;
  font-size: 16px;
  box-shadow: var(--shadow-md);
}
.cta--primary:hover { background: var(--navy-800); }

.cta--link {
  color: var(--navy-900);
  padding: 12px 6px;
}
.cta--link:hover { color: var(--gold-500); }
.cta__icon { display: inline-flex; }

@media (max-width: 720px) {
  .site-nav { display: none; }
  .site-header__inner { padding: 12px 18px; gap: 12px; }
  .cta--ghost { padding: 10px 18px; font-size: 14px; min-height: 44px; }
}
@media (max-width: 420px) {
  .brand__sub { display: none; }
  .brand__mark { width: 34px; height: 34px; font-size: 17px; }
  .brand__name { font-size: 17px; }
  .cta--ghost { padding: 9px 14px; font-size: 13px; min-height: 40px; }
  .site-header__inner { padding: 10px 16px; gap: 8px; }
}

/* ------------------------------------------------------------------ */
/* Hero                                                               */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding: clamp(24px, 3.5vw, 56px) 28px clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__text { position: relative; z-index: 2; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 420px;
}
.hero__media-main,
.hero__media-thumb {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--cream-100);
}
.hero__media-main {
  position: absolute;
  inset: 0;
  width: 78%;
  height: 88%;
  top: 6%;
  right: 0;
  margin-left: auto;
}
.hero__media-main img,
.hero__media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.hero__media-main:hover img { transform: scale(1.03); }

.hero__media-thumb {
  position: absolute;
  width: 38%;
  aspect-ratio: 4 / 5;
  border: 6px solid var(--cream-50);
}
.hero__media-thumb--a {
  left: 0;
  top: 16%;
  z-index: 2;
}
.hero__media-thumb--b {
  left: 18%;
  bottom: 0;
  width: 34%;
  aspect-ratio: 1 / 1;
  z-index: 3;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__media {
    aspect-ratio: 4 / 3;
    min-height: 0;
    margin-top: 8px;
  }
  .hero__media-main { width: 78%; height: 92%; top: 0; }
  .hero__media-thumb--a { width: 32%; top: 18%; left: 0; }
  .hero__media-thumb--b { width: 30%; left: 14%; bottom: -8px; }
}

@media (max-width: 540px) {
  .hero__media {
    aspect-ratio: 5 / 4;
    margin-top: 4px;
  }
  .hero__media-thumb--a { display: none; }
  .hero__media-main {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
  }
  .hero__media-thumb--b {
    left: auto;
    right: -8px;
    bottom: -16px;
    width: 38%;
    border-width: 4px;
  }
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 24px;
  font-weight: 500;
}
.eyebrow--dark { color: var(--gold-500); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--navy-900);
}
.hero__line { display: block; }
.hero__line--italic { color: var(--navy-800); }
.hero__amp {
  display: inline-block;
  font-style: italic;
  color: var(--gold-500);
  font-weight: 300;
  padding: 0 0.1em;
}
.hero__role {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.1vw, 15px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: 6px;
}

.hero__lede {
  max-width: 540px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0 0 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
}

@media (max-width: 420px) {
  .hero__actions { gap: 10px; }
  .hero__actions .cta--primary { width: 100%; }
  .hero__actions .cta--link { padding-left: 0; }
}

.hero__decor {
  position: absolute;
  top: -20px;
  right: -60px;
  color: var(--gold-500);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 900px) {
  .hero__decor { width: 120px; height: 120px; right: -30px; top: -20px; }
  .hero__decor svg { width: 120px; height: 120px; }
}
@media (max-width: 540px) {
  .hero__decor { display: none; }
}

/* ------------------------------------------------------------------ */
/* Behandlungsspektrum                                                */
/* ------------------------------------------------------------------ */
.treatments {
  padding: clamp(48px, 7vw, 100px) 28px;
  background: var(--cream-50);
}
.treatments__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.treatments__text { max-width: 560px; }
.treatments__body {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--ink-700);
  margin: clamp(18px, 3vw, 28px) 0 clamp(22px, 4vw, 36px);
}
.treatments__body strong {
  color: var(--navy-900);
  font-weight: 500;
}
.treatments__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  border-top: 1px solid rgba(10, 35, 66, 0.1);
  padding-top: 24px;
}
.treatments__list li {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  padding-left: 18px;
  position: relative;
}
.treatments__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}
.treatments__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--cream-100);
}
.treatments__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .treatments__inner { grid-template-columns: 1fr; }
  .treatments__list { grid-template-columns: 1fr; }
  .treatments__media { aspect-ratio: 4 / 3; max-height: 420px; }
}

/* ------------------------------------------------------------------ */
/* Info / Card Grid                                                   */
/* ------------------------------------------------------------------ */
.info {
  background: var(--cream-100);
  padding: clamp(48px, 7vw, 100px) 28px;
  position: relative;
}
.info::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.6;
}

.info__intro {
  max-width: 1100px;
  margin: 0 auto clamp(28px, 4vw, 56px);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0;
  max-width: 14ch;
}
.section-title--italic { font-style: italic; color: var(--navy-800); }

.info__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(10, 35, 66, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream-100);
  color: var(--navy-900);
  display: grid;
  place-items: center;
}
.info-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.info-card__body {
  margin: 0;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.6;
}
.info-card__phone {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy-900);
  text-decoration: none;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.info-card__phone:hover { color: var(--gold-500); }
.info-card__hint {
  margin: 0;
  font-size: 13px;
  color: var(--ink-400);
  line-height: 1.55;
}
.info-card__hint--notice {
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.7;
}
.info-card__mail {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy-900);
  text-decoration: none;
  letter-spacing: -0.01em;
  font-weight: 500;
  word-break: break-word;
}
.info-card__mail:hover { color: var(--gold-500); }
.hours {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-700);
  border-bottom: 1px dashed rgba(10, 35, 66, 0.08);
  padding-bottom: 6px;
}
.hours__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hours dt {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy-900);
}
.hours dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  color: var(--ink-700);
}
.info-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 0;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.info-card__link:hover {
  gap: 14px;
  color: var(--gold-500);
}

/* ------------------------------------------------------------------ */
/* Map                                                                */
/* ------------------------------------------------------------------ */
.map {
  padding: clamp(48px, 7vw, 100px) 28px clamp(60px, 9vw, 120px);
}
.map__header {
  max-width: 1100px;
  margin: 0 auto clamp(24px, 4vw, 40px);
}
.map__hint {
  color: var(--ink-600);
  font-size: 15px;
  margin: 16px 0 0;
}
.map__frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(circle at 30% 40%, rgba(184, 149, 106, 0.12), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(10, 35, 66, 0.08), transparent 50%),
    var(--navy-100);
  aspect-ratio: 16 / 9;
  position: relative;
}
.map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map__consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 4vw, 48px);
  color: var(--navy-900);
}
.map__consent-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.map__consent-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 28px);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--navy-900);
}
.map__consent-text {
  max-width: 440px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
}
.map__consent-text a {
  color: var(--navy-900);
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
.map__consent-text a:hover { color: var(--gold-500); }
.map__consent-btn {
  margin-bottom: 16px;
}
.map__consent-remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-600);
  cursor: pointer;
  user-select: none;
}
.map__consent-remember input {
  width: 16px;
  height: 16px;
  accent-color: var(--navy-900);
  cursor: pointer;
}

.map__frame.is-active .map__consent {
  display: none;
}

@media (max-width: 720px) {
  .map__frame { aspect-ratio: 5 / 6; }
}
@media (max-width: 480px) {
  .map__frame { aspect-ratio: 1 / 1; border-radius: var(--radius-lg); }
}

/* ------------------------------------------------------------------ */
/* Doctolib-Sidebar (Desktop)                                         */
/* ------------------------------------------------------------------ */
.booking {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--booking-w);
  background: var(--navy-900);
  color: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 24px;
}
.booking__inner {
  width: 100%;
  max-width: 240px;
  text-align: center;
}
.booking__eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 22px;
  font-weight: 500;
}
.booking__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking__card {
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.25;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.booking__card:hover { background: var(--cream-50); transform: translateY(-2px); }
.booking__card:active { transform: scale(0.98); }
.booking__card-label { display: block; }
.booking__footer {
  margin: 22px 0 0;
  font-size: 12px;
  color: var(--navy-100);
  opacity: 0.7;
  letter-spacing: 0.02em;
}
.booking__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  margin-left: 4px;
  color: var(--cream-50);
}

/* Mobile: Sidebar wird zu fixed bottom-bar */
.booking-toggle {
  display: none;
}

@media (max-width: 1023px) {
  .booking {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.35s var(--ease);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
  }
  .booking.is-open { transform: translateY(0); }
  .booking__inner { max-width: 480px; }
  .booking__cards { flex-direction: row; }
  .booking__card {
    flex: 1;
    font-size: 15px;
    padding: 18px 12px;
    min-height: 72px;
  }

  .booking-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: 20px;
    z-index: 45;
    background: var(--navy-900);
    color: var(--cream-50);
    border: 0;
    border-radius: 999px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    min-height: 56px;
    transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
  }
  .booking-toggle:hover { background: var(--navy-800); }
  .booking-toggle:active { transform: scale(0.97); }
  .booking-toggle[hidden] { display: none; }
}

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */
.site-footer {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 60px 28px 80px;
}
.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-end;
}
.site-footer__col p { margin: 0; }
.site-footer__col + .site-footer__col { text-align: right; }
.site-footer__brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px !important;
}
.site-footer__addr {
  font-size: 15px;
  color: rgba(245, 239, 230, 0.75);
  line-height: 1.6;
}
.site-footer__addr a {
  color: var(--gold-300);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.site-footer__addr a:hover { color: var(--cream-50); }
.site-footer__col--meta {
  font-size: 13px;
  color: rgba(245, 239, 230, 0.55);
  letter-spacing: 0.02em;
}
.site-footer__legal { margin-top: 6px !important; }
.site-footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.site-footer__legal a:hover { color: var(--gold-300); }
.site-footer__legal span { padding: 0 6px; opacity: 0.4; }

@media (max-width: 720px) {
  .site-footer { padding-bottom: 120px; }
  .site-footer__col + .site-footer__col { text-align: left; }
}

/* ------------------------------------------------------------------ */
/* Legal Pages (Impressum, Datenschutz)                               */
/* ------------------------------------------------------------------ */
.legal-page {
  padding-right: 0 !important;
  background: var(--cream-50);
}
.legal-page .booking,
.legal-page .booking-toggle {
  display: none !important;
}

.legal {
  padding: clamp(60px, 9vw, 110px) 28px clamp(70px, 11vw, 130px);
}
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 12px 0 clamp(28px, 4vw, 48px);
}

.legal__block {
  margin-bottom: 36px;
}
.legal__block h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
}
.legal__block p {
  margin: 0 0 14px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.7;
}
.legal__block p:last-child { margin-bottom: 0; }
.legal__block a {
  color: var(--navy-900);
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
.legal__block a:hover { color: var(--gold-500); }
.legal__block ul {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--ink-700);
}
.legal__block ul li { margin-bottom: 6px; }
.legal__hint {
  color: var(--ink-600);
  font-style: italic;
  font-size: 14px !important;
}

.legal__back {
  margin-top: 64px !important;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 35, 66, 0.1);
}
.legal__back a {
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.legal__back a:hover { color: var(--gold-500); }

/* ------------------------------------------------------------------ */
/* Reveal-Animationen                                                 */
/* ------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ */
/* Version-Switch (Vorschau v1 / v2 — kann nach Abnahme entfernt)     */
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/* Galerie                                                            */
/* ------------------------------------------------------------------ */
.gallery {
  background: var(--cream-50);
  padding: clamp(48px, 7vw, 100px) 28px;
}
.gallery__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.gallery__intro {
  margin: 0 0 clamp(24px, 3vw, 40px);
}
.gallery__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 20px);
}
.gallery__item {
  margin: 0;
  height: clamp(120px, 17vw, 180px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-100);
}
.gallery__item img {
  height: 100%;
  width: auto;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.03); }

@media (max-width: 480px) {
  .gallery__item { height: clamp(96px, 26vw, 130px); }
}
