@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/figtree-latin-wght-normal.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/fraunces-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
    --ink: #2f3940;
  --text: #333333;
  --muted: #5f6a72;
  --bg: #faf9f7;
  --surface: #ffffff;
  --sand: #ece8e5;
  --line: #ddd8d3;
  --slate: #70808d;
  --primary: #56646f;
  --primary-dark: #3f4a53;
  --primary-soft: #eceff1;
  --lila: #7856a2;
  --lila-mittel: #9275bb;
  --lila-hell: #d4c2e8;
  --lila-soft: #f2edf8;
  --warn: #9a4b12;
  --warn-bg: #fff5e8;
  --warn-line: #f0c08a;

  --font-sans: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;

  --radius-s: 2px;
  --radius: 3px;
  --radius-l: 4px;
  --shadow-s: 0 1px 2px rgb(47 57 64 / .06), 0 2px 8px rgb(47 57 64 / .05);
  --shadow: 0 2px 4px rgb(47 57 64 / .04), 0 12px 32px rgb(47 57 64 / .09);
  --container: 1260px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --header-h: 76px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 560;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.5rem + 2.8vw, 3.6rem); color: var(--primary-dark); }
h2 { font-size: clamp(1.6rem, 1.3rem + 1.3vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 1.1rem + .4vw, 1.4rem); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--primary-dark); text-decoration-thickness: 2px; }
a[href^="tel:"] { white-space: nowrap; }

:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 3px;
  border-radius: var(--radius-s);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: var(--radius-s);
}
.skip-link:focus { top: 1rem; color: #fff; }

main:focus { outline: none; }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  vertical-align: -.25em;
}
.icon-xl { width: 3rem; height: 3rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: .8rem;
}

.lead {
  font-size: clamp(1.08rem, 1rem + .4vw, 1.25rem);
  color: var(--primary-dark);
  max-width: 40rem;
}

.btn {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .7rem 1.25rem;
  border-radius: var(--radius-s);
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-lg { min-height: 54px; padding: .85rem 1.6rem; font-size: 1.05rem; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px rgb(86 100 111 / .25); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--surface); }
.hero .btn-ghost { border: 2px solid #fff; background: rgb(255 255 255 / .35); }
.hero .btn-ghost:hover { border-color: #fff; background: #fff; color: var(--primary-dark); }
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-light:hover { background: var(--primary-soft); color: var(--primary-dark); }
.btn-outline-light { color: #fff; border-color: rgb(255 255 255 / .5); }
.btn-outline-light:hover { color: #fff; border-color: #fff; background: rgb(255 255 255 / .08); }

.link-arrow { display: inline-flex; gap: .4rem; align-items: center; font-weight: 650; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(250 249 247 / .88);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgb(47 57 64 / .06); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.brand img { width: 44px; height: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.brand-name { font-family: var(--font-serif); font-weight: 600; font-size: 1.08rem; white-space: nowrap; }
.brand-sub { font-size: .8rem; color: var(--muted); white-space: nowrap; }
.brand:hover { color: var(--ink); }

.main-nav { display: flex; align-items: center; gap: .9rem; }
.main-nav ul { display: flex; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.main-nav a:not(.btn) {
  display: block;
  padding: .5rem .75rem;
  border-radius: var(--radius-s);
  color: var(--text);
  font-weight: 550;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a:not(.btn):hover { background: var(--primary-soft); color: var(--primary-dark); }
.main-nav a[aria-current="page"] { color: var(--primary-dark); background: var(--primary-soft); }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle .icon-close, .nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgb(47 57 64 / .12);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .main-nav ul { flex-direction: column; }
  .main-nav a:not(.btn) { padding: .85rem 1rem; font-size: 1.1rem; border-radius: var(--radius-s); }
  .nav-call { width: 100%; min-height: 54px; }
}
@media (max-width: 420px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 1rem; }
  .brand img { width: 38px; height: 38px; }
}

.section { padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem); }
.section-tint { background: var(--sand); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem); }
.section-head p:not(.eyebrow) { color: var(--muted); }

.hero {
  position: relative;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem) clamp(3rem, 2rem + 4vw, 5.5rem);
  overflow: hidden;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(250 249 247 / .9) 0%, rgb(250 249 247 / .82) 38%, rgb(250 249 247 / .4) 70%, rgb(250 249 247 / .12) 100%),
    url("../img/hero-allgaeu-nebel.webp") center 40% / cover no-repeat;
  transform-origin: 70% 40%;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero::before { background: linear-gradient(rgb(250 249 247 / .84), rgb(250 249 247 / .7)), url("../img/hero-allgaeu-nebel.webp") center 40% / cover no-repeat; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero::before { animation: kamerafahrt 20s ease-in-out infinite alternate; will-change: transform; }
}
@keyframes kamerafahrt {
  from { transform: scale(1.02) translate(1%, 0); }
  to { transform: scale(1.18) translate(-3%, -2%); }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.hero-text h1 { margin-bottom: .5em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.hero-visual { position: relative; padding-bottom: 4.5rem; }
.hero-photo {
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  max-width: 100%;
  background: var(--primary-soft);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 30% center; }

.hours-card {
  position: absolute;
  left: clamp(-2rem, -3vw, 0rem);
  bottom: 0;
  width: min(390px, 92%);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hours-card h2 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  display: flex; gap: .5rem; align-items: center;
  margin-bottom: .75rem;
  color: var(--primary-dark);
}
.hours-card-foot {
  display: flex; gap: .5rem; align-items: center;
  margin-top: .9rem; padding-top: .8rem;
  border-top: 1px dashed var(--line);
  font-size: .92rem;
  color: var(--muted);
}
.hours-card-foot .icon { color: var(--primary); }

.hours { margin: 0; display: grid; gap: .45rem; }
.hours div { display: grid; grid-template-columns: 1fr auto; column-gap: 1rem; align-items: baseline; }
.hours dt { color: var(--muted); }
.hours dd { margin: 0; font-weight: 650; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours-large div { padding-block: .75rem; border-bottom: 1px solid rgb(255 255 255 / .18); }
.hours-large dt, .hours-large dd { font-size: 1.08rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { padding-bottom: 0; }
  .hours-card { position: relative; left: auto; width: auto; margin: -2.5rem 1rem 0; }
}

.notices { padding-block: 0 clamp(1rem, 2vw, 2rem); margin-top: clamp(-2.5rem, -3vw, -1rem); position: relative; }
.notices-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.notices-single { grid-template-columns: minmax(0, 1fr); }

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: clamp(1.25rem, 1rem + 1.5vw, 2rem);
  border-radius: var(--radius);
  border: 1.5px solid;
  box-shadow: var(--shadow-s);
}
.notice h2 { font-size: clamp(1.3rem, 1.15rem + .6vw, 1.65rem); margin-bottom: .5rem; }
.notice p { margin-bottom: .75em; }
.notice-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .35rem !important; }
.notice-icon {
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border-radius: var(--radius-s);
}
.notice-icon .icon { width: 1.6rem; height: 1.6rem; }

.notice-hinweis { background: var(--warn-bg); border-color: var(--warn-line); }
.notice-hinweis .notice-icon { background: #fde2bf; color: var(--warn); }
.notice-hinweis .notice-label { color: var(--warn); }
.notice-hinweis a { color: var(--warn); }

.notice-urlaub { background: var(--primary-soft); border-color: #d3d9de; }
.notice-urlaub .notice-icon { background: #dde3e7; color: var(--primary-dark); }
.notice-urlaub .notice-label { color: var(--primary-dark); }

@media (max-width: 800px) {
  .notices-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .notice { grid-template-columns: 1fr; }
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: start;
}
.portrait { margin: 0; position: sticky; top: calc(var(--header-h) + 1.5rem); }
.portrait img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-l);
  background: var(--primary-soft);
  box-shadow: var(--shadow);
}
.portrait figcaption { margin-top: .8rem; font-size: .92rem; color: var(--muted); text-align: center; max-width: 300px; }
.prose { max-width: 44rem; }

@media (max-width: 760px) {
  .intro-grid { grid-template-columns: 1fr; }
  .portrait { position: static; display: flex; flex-direction: column; align-items: center; }
  .portrait img { max-width: 220px; }
}

.pillars {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  gap: 1rem;
}
.pillar {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  column-gap: clamp(1rem, .5rem + 2vw, 2rem);
  align-items: start;
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 1rem + 1vw, 1.8rem);
  border: 1px solid var(--line);
  transition: box-shadow .25s, border-color .25s;
}
.pillar-top {
  grid-row: 1 / span 3;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.pillar > :not(.pillar-top) { grid-column: 2; }
.pillar-icon {
  width: 3.5rem; height: 3.5rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--lila-soft);
  color: var(--primary-dark);
}
.pillar-icon svg { width: 2.1rem; height: 2.1rem; }
.pillar-num { font-family: var(--font-serif); font-size: 2rem; line-height: 1; color: rgb(120 86 162 / .35); font-weight: 600; }
.pillar h3 { margin-bottom: .2rem; }
.pillar-sub { font-weight: 600; color: var(--primary); font-size: .95rem; margin-bottom: .6rem; }
.pillar p:last-child { color: var(--muted); font-size: .97rem; }

@media (max-width: 560px) {
  .pillar { grid-template-columns: 1fr; }
  .pillar-top { grid-row: auto; flex-direction: row; justify-content: space-between; margin-bottom: 1rem; }
  .pillar > :not(.pillar-top) { grid-column: 1; }
}

.video-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.video-frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  max-width: 100%;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-wide { max-width: 900px; margin: clamp(2.5rem, 4vw, 4rem) auto 0; }
@media (max-width: 860px) { .video-grid { grid-template-columns: 1fr; } }

.section-cta {
  background:
    radial-gradient(60% 120% at 100% 0%, rgb(212 194 232 / .12), transparent 60%),
    var(--primary-dark);
  color: #e6eaed;
}
.section-cta h2, .section-cta h1 { color: #fff; }
.cta-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-grid > div:first-child { max-width: 38rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.page-hero {
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem) clamp(2.5rem, 2rem + 2vw, 4rem);
  background:
    radial-gradient(50% 80% at 90% 10%, rgb(120 86 162 / .10), transparent 70%),
    var(--sand);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: .35em; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 2rem; }
.page-hero-illu { width: clamp(110px, 6rem + 6vw, 190px); height: auto; margin-right: clamp(0rem, 4vw, 4rem); }
@media (max-width: 640px) {
  .page-hero-grid { grid-template-columns: minmax(0, 1fr); }
  .page-hero-illu { order: -1; width: 84px; margin: 0 0 .5rem; }
}
.page-hero-small { padding-block: clamp(2.5rem, 2rem + 3vw, 4rem) clamp(2rem, 1.5rem + 2vw, 3rem); }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: start;
}
.content-grid .prose h2 { margin-top: 2.2rem; }
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }

.callout {
  display: flex; gap: .75rem; align-items: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 650;
  font-size: 1.08rem;
  margin-block: 1.75rem;
}
.callout .icon { width: 1.6rem; height: 1.6rem; padding: .25rem; border-radius: var(--radius-s); background: var(--primary); color: #fff; }

.side-card {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-s);
}
.side-card h2 { font-size: 1.3rem; }
.side-card-foot { margin-top: 1.25rem; padding-top: 1.1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .95rem; }
.tel-big { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; text-decoration: none; }
@media (max-width: 900px) { .side-card { position: static; } }

.jump-list { list-style: none; margin: 0; padding: 0; }
.jump-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}
.jump-list a:hover { color: var(--primary); }
.jump-list a .icon { color: var(--primary); transition: transform .2s; }
.jump-list a:hover .icon { transform: translateX(4px); }

.method-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.method-list li { display: flex; flex-direction: column; padding-left: 1rem; border-left: 3px solid var(--lila-mittel); }
.method-list strong { color: var(--ink); }
.method-list span { color: var(--muted); font-size: .95rem; }

.service-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--surface);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border: 1px solid var(--line);
}
.service-card > p:not(.eyebrow):not(.note) { color: var(--muted); }
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }

.check-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .35rem; }
.check-list li { display: flex; gap: .65rem; align-items: flex-start; padding: .45rem 0; border-bottom: 1px solid #eeebe8; }
.check-list .icon { color: var(--primary); margin-top: .2em; width: 1.1em; height: 1.1em; }
.check-list-2col { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 2rem; }
@media (max-width: 900px) { .check-list-2col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .check-list-2col { grid-template-columns: 1fr; } }

.note { margin-top: 1.25rem; font-size: .95rem; color: var(--muted); font-style: italic; }

.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.contact-card h2 { font-size: 1.6rem; display: flex; gap: .6rem; align-items: center; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .icon {
  width: 2.6rem; height: 2.6rem; padding: .6rem;
  border-radius: var(--radius-s);
  background: var(--primary-soft);
  color: var(--primary);
}
.contact-list address { font-style: normal; }
.contact-list a { font-weight: 650; font-size: 1.08rem; }

.contact-card-accent { background: var(--primary-dark); color: #e6eaed; border-color: var(--primary-dark); }
.contact-card-accent h2 { color: #fff; }
.contact-card-accent .hours dt { color: #c9d2d8; }
.contact-card-accent .hours dd { color: #fff; }
.contact-card-accent > p { margin-top: 1.25rem; }
.emergency { margin-top: 1.5rem; padding: 1.1rem 1.25rem; border-radius: var(--radius); background: rgb(255 255 255 / .08); }
.emergency a { color: #fff; font-weight: 700; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.map-consent {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  min-height: 420px;
  background:
    repeating-linear-gradient(45deg, rgb(86 100 111 / .04) 0 12px, transparent 12px 24px),
    var(--primary-soft);
  border: 1px solid var(--line);
  display: grid;
}
.map-consent iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }
.map-placeholder { place-self: center; text-align: center; max-width: 34rem; padding: 2.5rem 1.25rem; }
.map-placeholder .icon { color: var(--primary); margin-bottom: 1rem; }
.map-placeholder h3 { font-size: 1.5rem; }
.map-placeholder p { color: var(--muted); }
.map-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1.5rem; }

.notfound-links { list-style: none; margin: .75rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.notfound-links a { display: inline-block; padding: .45rem .8rem; border: 1px solid rgb(255 255 255 / .35); border-radius: var(--radius-s); color: #fff; text-decoration: none; }
.notfound-links a:hover, .notfound-links a:focus-visible { background: rgb(255 255 255 / .12); color: #fff; }

.arrival { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .6rem; color: var(--text); }
.arrival li { padding-left: 1rem; border-left: 3px solid var(--lila); }

.faq { display: grid; gap: .6rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  font-weight: 650; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 1.25rem 1.1rem; color: var(--text); max-width: 60rem; }

.gallery {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-width: 100%;
  background: var(--primary-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; left: .75rem; bottom: .75rem;
  padding: .35rem .8rem;
  border-radius: var(--radius-s);
  background: rgb(255 255 255 / .92);
  color: var(--ink);
  font-weight: 600; font-size: .9rem;
}

.lightbox {
  border: 0; padding: 0;
  background: transparent;
  max-width: min(92vw, 1200px);
  max-height: 92vh;
}
.lightbox::backdrop { background: rgb(35 42 48 / .88); }
.lightbox img { max-height: 82vh; width: auto; margin-inline: auto; border-radius: var(--radius); }
.lightbox-caption { color: #fff; text-align: center; margin-top: .75rem; }
.lightbox-close {
  position: fixed; top: 1rem; right: 1rem;
  width: 48px; height: 48px;
  border-radius: var(--radius-s); border: 0;
  background: #fff; color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
}

.legal { max-width: 50rem; }
.legal h2 { font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); margin-top: 2.5rem; }
.legal h2:first-child { margin-top: 0; }
.legal ul { padding-left: 1.2rem; margin: 0 0 1em; }
.legal li { margin-bottom: .25rem; }
.legal-intro { font-size: 1.1rem; }
.legal-box { background: var(--sand); border-radius: var(--radius); padding: 1.1rem 1.3rem; margin-bottom: 1em; }
.todo { background: #fff3cd; border: 1px dashed #d4a72c; padding: .75rem 1rem; border-radius: var(--radius-s); color: #6b4e00; }
.toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.5rem; margin-block: 2rem; }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.toc li { break-inside: avoid; padding-block: .15rem; }
@media (max-width: 560px) { .toc ol { columns: 1; } }

.site-footer { background: #3a444c; color: #c3cad0; padding-top: clamp(3rem, 2rem + 3vw, 4.5rem); font-size: .97rem; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-title { font-family: var(--font-sans); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lila-hell); margin-bottom: 1rem; }
.site-footer address { font-style: normal; }
.brand-light, .brand-light:hover { color: #fff; }
.brand-light .brand-sub { color: #b8c1c8; }
.footer-brand p { margin-top: 1rem; max-width: 22rem; }
.hours-footer dt { color: #b8c1c8; }
.hours-footer dd { color: #fff; }
.hours-footer div { grid-template-columns: 1fr; }
.footer-note { margin-top: .9rem; font-size: .9rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / .1);
  font-size: .9rem;
}
.footer-bottom nav { display: flex; gap: 1.25rem; }
.footer-bottom a { text-decoration: none; color: #c3cad0; }
.footer-bottom a:hover, .footer-bottom a[aria-current="page"] { color: #fff; text-decoration: underline; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

@media print {
  .site-header, .nav-toggle, .hero-actions, .section-cta, .map-consent, .video-frame, .site-footer .footer-brand { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
}

:root {
  --ease-out: cubic-bezier(.22, .61, .36, 1);
}

.eyebrow { display: flex; align-items: center; gap: .6rem; }
.eyebrow::before {
  content: "";
  width: 3px; height: 1.15em;
  background: var(--lila);
  flex: none;
}

.pillar, .service-card, .contact-card, .side-card, .faq-item, .notice {
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.pillar:hover, .service-card:hover, .contact-card:hover, .side-card:hover, .faq-item:hover,
.pillar:focus-within, .service-card:focus-within, .contact-card:focus-within, .side-card:focus-within {
  box-shadow: 0 2px 6px rgb(47 57 64 / .05), 0 18px 40px rgb(47 57 64 / .12);
}
.pillar-icon { transition: background-color .35s var(--ease-out), color .35s var(--ease-out); }
.pillar:hover .pillar-icon { background: var(--lila-hell); color: var(--ink); }

.btn .icon, .link-arrow .icon, .jump-list a .icon { transition: transform .3s var(--ease-out); }
.btn:hover .icon, .btn:focus-visible .icon,
.link-arrow:hover .icon, .link-arrow:focus-visible .icon { transform: translateX(3px); }
.btn:hover svg:has(use[href$="i-phone"]), .btn:focus-visible svg:has(use[href$="i-phone"]) { animation: klingeln .6s var(--ease-out); transform: none; }
@keyframes klingeln {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-14deg); }
  40% { transform: rotate(12deg); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(4deg); }
}

.gallery-item img { transition: transform 1.2s var(--ease-out); }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-caption { transition: transform .4s var(--ease-out), background-color .4s; }
.gallery-item:hover .gallery-caption, .gallery-item:focus-visible .gallery-caption { transform: translateY(-4px); background: #fff; }
.lightbox[open] { animation: einblenden .35s var(--ease-out); }
.lightbox[open] img { animation: heranzoomen .45s var(--ease-out); }
.lightbox[open]::backdrop { animation: einblenden .35s ease; }

.faq-item summary::after {
  content: "";
  width: 14px; height: 14px; flex: none;
  background:
    linear-gradient(var(--primary), var(--primary)) center / 100% 2px no-repeat,
    linear-gradient(var(--primary), var(--primary)) center / 2px 100% no-repeat;
  transition: transform .35s var(--ease-out), background-size .35s var(--ease-out);
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
  background-size: 100% 2px, 2px 0;
}
.faq-item summary:hover { color: var(--primary); }
@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] p { animation: aufsteigen .4s var(--ease-out); }
}

.brand img { transition: width .3s var(--ease-out), height .3s var(--ease-out); }
.brand-sub { transition: opacity .3s var(--ease-out); }
.site-header.is-scrolled .brand img { width: 36px; height: 36px; }
.site-header.is-scrolled .brand-sub { opacity: .75; }

@keyframes einblenden { from { opacity: 0; } to { opacity: 1; } }
@keyframes hochgleiten { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes aufsteigen { from { transform: translateY(28px); } to { transform: none; } }
@keyframes heranzoomen { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
@keyframes aufmerksam {
  0% { box-shadow: 0 0 0 0 rgb(240 192 138 / .9); }
  100% { box-shadow: 0 0 0 16px rgb(240 192 138 / 0); }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-text > *, .page-hero .container > * { animation: aufsteigen .7s var(--ease-out) both; }
  .hero-text > :nth-child(2), .page-hero .container > :nth-child(2) { animation-delay: .08s; }
  .hero-text > :nth-child(3), .page-hero .container > :nth-child(3) { animation-delay: .16s; }
  .hero-text > :nth-child(4) { animation-delay: .24s; }
  .hero-photo { animation: heranzoomen .9s var(--ease-out) .1s both; }
  .hero-photo img { transition: transform 6s var(--ease-out); }
  .hero-visual:hover .hero-photo img { transform: scale(1.03); }

    .hours-card { animation: aufsteigen .8s var(--ease-out) .35s both; }

    .notice-hinweis .notice-icon { animation: aufmerksam 1.4s ease-out .9s 2; }

    .pillar:hover, .service-card:hover, .contact-card:hover, .side-card:hover,
  .pillar:focus-within, .service-card:focus-within, .contact-card:focus-within, .side-card:focus-within { transform: translateY(-4px); }
  .btn:hover { transform: translateY(-2px); }

    @supports (animation-timeline: view()) {
    .section-head, .pillar, .service-card, .contact-card, .side-card, .faq-item,
    .intro-grid .prose, .video-grid .prose, .notice, .cta-grid > *, .stats li, .content-grid .prose > * {
      animation: aufsteigen linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 60%;
    }
    .portrait img, .video-frame, .gallery > li {
      animation: hochgleiten linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 60%;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn:hover .icon, .link-arrow:hover .icon, .gallery-item:hover img { transform: none; }
}

.pillar { position: relative; overflow: hidden; isolation: isolate; }
.pillar-top .pillar-num {
  position: absolute;
  right: clamp(.5rem, 2vw, 1.75rem);
  top: 50%;
  translate: 0 -50%;
  z-index: -1;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(7rem, 5rem + 8vw, 12rem);
  line-height: .8;
  color: rgb(120 86 162 / .17);
  pointer-events: none;
  user-select: none;
  transition: color .5s var(--ease-out), translate .6s var(--ease-out);
}
.pillar:hover .pillar-num { color: rgb(120 86 162 / .28); }
@media (prefers-reduced-motion: no-preference) {
  .pillar:hover .pillar-num { translate: -8px -50%; }
}
@media (max-width: 560px) {
  .pillar-top .pillar-num { top: 1.2rem; translate: 0 0; font-size: 6.5rem; }
}

.quote-section { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.quote {
  position: relative;
  margin: 0 auto;
  max-width: 58rem;
  text-align: center;
  padding-top: clamp(3.5rem, 2.5rem + 3vw, 5rem);
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: -.2em; left: 50%;
  translate: -50% 0;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 4rem + 6vw, 9rem);
  line-height: 1;
  color: var(--lila);
}
.quote blockquote { margin: 0; }
.quote p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.45rem, 1.1rem + 1.8vw, 2.45rem);
  line-height: 1.3;
  color: var(--primary-dark);
  text-wrap: balance;
}
.quote figcaption {
  margin-top: 1.75rem;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  font-size: .95rem; color: var(--muted);
}
.quote figcaption::before { content: ""; width: 3rem; height: 2px; background: var(--lila); margin-bottom: .8rem; }
.quote figcaption strong { color: var(--ink); font-weight: 650; }

:root {
  --welle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 24' preserveAspectRatio='none'%3E%3Cpath d='M0 24V14C240 6 480 4 720 10s480 12 720 2v12z'/%3E%3C/svg%3E");
  --welle-h: clamp(10px, 1.6vw, 22px);
}
.section-tint, .section-cta { position: relative; }
.section-tint::before, .section-cta::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: var(--welle-h);
  -webkit-mask: var(--welle) center / 100% 100% no-repeat;
  mask: var(--welle) center / 100% 100% no-repeat;
  pointer-events: none;
}
.section-tint::before, .section-cta::before { bottom: calc(100% - 1px); }
.section-tint::before { background: var(--sand); }
.section-cta::before { background: var(--primary-dark); }
.hero, .page-hero { position: relative; border-bottom: 0; }
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: var(--welle-h);
  background: var(--bg);
  -webkit-mask: var(--welle) center / 100% 100% no-repeat;
  mask: var(--welle) center / 100% 100% no-repeat;
  pointer-events: none;
}
.notices { z-index: 1; }

.open-status {
  display: flex; align-items: center; gap: .6rem;
  margin: -.2rem 0 .9rem;
  padding: .45rem .75rem;
  border-radius: var(--radius-s);
  background: #f1eeeb;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.35;
}
.open-status strong { font-weight: 700; }
.open-dot {
  width: .6rem; height: .6rem; flex: none;
  border-radius: 50%;
  background: #9aa3aa;
}
.open-status.is-open { background: #e3f3e8; color: #14532d; }
.open-status.is-open .open-dot { background: #1f9d55; box-shadow: 0 0 0 0 rgb(31 157 85 / .55); }
@media (prefers-reduced-motion: no-preference) {
  .open-status.is-open .open-dot { animation: puls 2.2s ease-out infinite; }
}
@keyframes puls {
  0% { box-shadow: 0 0 0 0 rgb(31 157 85 / .55); }
  70%, 100% { box-shadow: 0 0 0 .5rem rgb(31 157 85 / 0); }
}
.contact-card-accent .open-status { background: rgb(255 255 255 / .1); color: #fff; margin-bottom: .5rem; }
.contact-card-accent .open-status.is-open { background: rgb(31 157 85 / .25); color: #fff; }
.contact-card-accent .open-dot { background: #c3cad0; }
.contact-card-accent .open-status.is-open .open-dot { background: #5fe08f; }

.stats {
  list-style: none; margin: 2.5rem 0 0; padding: 1.75rem 0 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.stats li {
  display: flex; flex-direction: column;
  padding-inline: clamp(.75rem, 2vw, 1.5rem);
  border-left: 1px solid var(--line);
}
.stats li:first-child { padding-left: 0; border-left: 0; }
.stats strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 2rem + 2.5vw, 3.8rem);
  line-height: 1;
  color: var(--primary-dark);
  letter-spacing: -.02em;
}
.stats .stat-klein { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.stats li > span:last-child { margin-top: .6rem; font-size: .92rem; color: var(--muted); line-height: 1.4; }
.stats li:not(:first-child) strong { margin-top: 1.3rem; }
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .stats li { padding: 0; border-left: 0; }
  .stats li:not(:first-child) strong { margin-top: 0; }
}

.section-cta :focus-visible, .site-footer :focus-visible, .contact-card-accent :focus-visible, .skip-link:focus-visible { outline-color: var(--lila-hell); }

.stats strong .zahl { font-variant-numeric: tabular-nums; }

@view-transition { navigation: auto; }
.site-header { view-transition-name: kopf; }
::view-transition-old(root) { animation: 220ms var(--ease-out) both seite-raus; }
::view-transition-new(root) { animation: 380ms var(--ease-out) both seite-rein; }
@keyframes seite-raus { to { opacity: 0; transform: translateY(-6px); } }
@keyframes seite-rein { from { opacity: 0; transform: translateY(10px); } }
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

.call-bar {
  position: fixed;
  left: .75rem; right: .75rem;
  bottom: calc(.75rem + env(safe-area-inset-bottom));
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .6rem .6rem .6rem 1rem;
  background: rgb(47 57 64 / .92);
  -webkit-backdrop-filter: saturate(1.5) blur(16px);
  backdrop-filter: saturate(1.5) blur(16px);
  color: #fff;
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: var(--radius-l);
  box-shadow: 0 18px 40px rgb(20 26 30 / .35), 0 2px 6px rgb(20 26 30 / .2);
  transform: translateY(calc(100% + 1.5rem));
  opacity: 0;
  transition: transform .45s var(--ease-out), opacity .3s ease;
}
.call-bar.is-visible { transform: none; opacity: 1; }
.call-bar[hidden] { display: none; }
.call-bar-status { display: flex; align-items: center; gap: .6rem; margin: 0; font-size: .86rem; line-height: 1.3; color: #e6eaed; }
.call-bar-status strong { color: #fff; font-weight: 700; }
.call-bar .open-dot { background: #c3cad0; }
.call-bar-status.is-open .open-dot { background: #5fe08f; box-shadow: 0 0 0 0 rgb(95 224 143 / .6); }
@media (prefers-reduced-motion: no-preference) {
  .call-bar-status.is-open .open-dot { animation: puls 2.2s ease-out infinite; }
}
.call-bar-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 46px; padding: .6rem 1.1rem;
  background: var(--lila-hell); color: var(--ink);
  border-radius: var(--radius-s);
  font-weight: 700; text-decoration: none; white-space: nowrap;
}
.call-bar-btn:hover, .call-bar-btn:focus-visible { background: #fff; color: var(--ink); }
.call-bar :focus-visible { outline-color: var(--lila-hell); }
@media (min-width: 761px) { .call-bar { display: none !important; } }
body.mit-leiste .site-footer { padding-bottom: 5.5rem; }


.deko-zahl::before { content: attr(data-zahl); }
.deko-zahl {
  margin: 2.5rem 0 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(7rem, 5rem + 8vw, 12rem);
  line-height: .8;
  color: rgb(120 86 162 / .17);
  user-select: none;
}
