@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root{
  --brand: #008b8b;
  --brand-ink: #046a6a;
  --bg: #ffffff;
  --bg-soft: #f3f7f7;
  --ink: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, .10);
  --shadow: 0 14px 34px rgba(15, 23, 42, .10);
  --radius: 18px;
  --max: 1120px;
}
.brand-logo{
  height: 40px;
  width: auto;
  display: block;
}

.brand-text{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  color: var(--ink);
  white-space: nowrap;
}

@media (max-width: 768px){
  .brand-logo{ max-height: 40px; }
}


*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.wrap{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

a{ color: inherit; }
img{ max-width: 100%; display:block; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark{
  display:inline-grid;
  place-items:center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0,139,139,.12);
  color: var(--brand);
  font-weight: 800;
}
.brand-name{ letter-spacing: .2px; }

.nav{
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a{
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 10px;
}
.nav a:hover{
  background: rgba(0,139,139,.10);
  color: var(--brand-ink);
}

.nav-cta{
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: white;
  background: var(--brand);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,139,139,.22);
}
.nav-cta:hover{ filter: brightness(.98); }

@media (min-width: 920px){
  .nav{ display: flex; }
}

.hero{
  background:
    radial-gradient(1000px 500px at 20% 0%, rgba(0,139,139,.18), transparent 60%),
    radial-gradient(900px 450px at 90% 10%, rgba(0,139,139,.10), transparent 55%),
    linear-gradient(180deg, rgba(243,247,247,.9), rgba(255,255,255,1));
  border-bottom: 1px solid var(--line);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 44px 0 34px;
}

@media (min-width: 920px){
  .hero-grid{ grid-template-columns: 1.05fr .95fr; align-items: center; padding: 64px 0 54px; }
}

.badge{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  background: rgba(0,139,139,.12);
  color: var(--brand-ink);
  border: 1px solid rgba(0,139,139,.18);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
  margin: 0 0 14px;
}

h1{
  margin: 0 0 14px;
  line-height: 1.12;
  font-size: 38px;
  letter-spacing: -0.6px;
}
@media (min-width: 920px){
  h1{ font-size: 52px; }
}

.lead{
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
}
@media (min-width: 920px){
  .lead{ font-size: 18px; }
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 14px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 26px rgba(0,139,139,.18);
  border: 1px solid rgba(0,0,0,0);
}
.btn:hover{ filter: brightness(.98); transform: translateY(-1px); }

.btn-ghost{
  background: transparent;
  color: var(--brand-ink);
  border: 1px solid rgba(0,139,139,.25);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(0,139,139,.08); }

.hero-facts{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-facts li{
  font-size: 13px;
  color: var(--muted);
  border: 1px dashed rgba(0,139,139,.26);
  background: rgba(255,255,255,.7);
  padding: 8px 10px;
  border-radius: 999px;
}

.hero-art{
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 300px;
  position: relative;
}
.hero-art img{ width:100%; height:100%; object-fit: cover; }

.art-fallback-box{
  display: none;
  height: 100%;
  min-height: 300px;
  padding: 18px;
  background:
    radial-gradient(800px 350px at 40% 20%, rgba(0,139,139,.14), transparent 60%),
    linear-gradient(180deg, rgba(243,247,247,1), rgba(255,255,255,1));
}
.hero-art.art-fallback .art-fallback-box,
.mini-art.art-fallback .art-fallback-box{
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  gap: 10px;
}
.art-fallback-box span{ color: var(--brand-ink); font-weight: 700; }
.art-dot{
  width: 10px; height:10px; border-radius: 999px;
  background: rgba(0,139,139,.55);
  box-shadow: 18px 0 0 rgba(0,139,139,.28), -18px 0 0 rgba(0,139,139,.28);
}

.section{
  padding: 56px 0;
}
.section-soft{
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0 0 6px;
  font-size: 30px;
  letter-spacing: -0.3px;
}
.section-head p{
  margin: 0;
  color: var(--muted);
}

.cards-3{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 920px){
  .cards-3{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.card{
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}
.card h3{ margin: 0 0 8px; font-size: 18px; }
.card p{ margin: 0 0 10px; color: var(--muted); }

.text-link{
  font-weight: 800;
  color: var(--brand-ink);
  text-decoration: none;
}
.text-link:hover{ text-decoration: underline; }

.pill-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}
@media (min-width: 720px){
  .pill-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px){
  .pill-grid{ grid-template-columns: repeat(4, 1fr); }
}
.pill{
  background: white;
  border: 1px solid rgba(0,139,139,.18);
  color: var(--brand-ink);
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,139,139,.08);
}
.pill:hover{ background: rgba(0,139,139,.06); }

.note{
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.split{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
@media (min-width: 920px){
  .split{ grid-template-columns: 1.1fr .9fr; gap: 26px; }
}

.lead-sm{
  color: var(--muted);
  font-size: 16px;
  margin-top: 8px;
}

.checklist{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  gap: 10px;
}
.checklist li{
  padding-left: 26px;
  position: relative;
  color: var(--muted);
}
.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

.mini-art{
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 260px;
}
.mini-art img{ width:100%; height:100%; object-fit: cover; }

.info-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 920px){
  .info-grid{ grid-template-columns: 1fr 1fr; gap: 18px; }
}


.mini-art{
  padding: 8px;
}

/* Anfahrt – Bild optisch näher an Überschrift */
.mini-art{
  display: flex;
  align-items: flex-start;
}


.mini-art img{
  max-width: 100%;
  padding: 0;
}

.mini-art{
  background: radial-gradient(
    circle at 50% 40%,
    rgba(0,139,139,0.12),
    rgba(255,255,255,1) 70%
  );
}
.section-soft{
  background: linear-gradient(
    180deg,
    rgba(0,139,139,0.06),
    rgba(255,255,255,1)
  );
}



.section-head{
  margin-bottom: 12px;
}


.contact-card{
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: none;
  background: #fff;
}

.contact-card h3{
  font-size: 15px;
  margin-bottom: 6px;
}

.contact-card p{
  font-size: 15px;
  line-height: 1.5;
}
.contact-cards{
  gap: 14px;
}


.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.qr-card .qr-box{
  margin-top: 14px;
  display: grid;
  place-items: center;
}
.qr-fake{
  width: 160px;
  height: 160px;
  border-radius: 18px;
  border: 1px solid rgba(0,139,139,.22);
  background:
    linear-gradient(90deg, rgba(0,139,139,.16) 25%, transparent 25% 50%, rgba(0,139,139,.16) 50% 75%, transparent 75%),
    linear-gradient(0deg, rgba(0,139,139,.16) 25%, transparent 25% 50%, rgba(0,139,139,.16) 50% 75%, transparent 75%);
  background-size: 18px 18px;
  box-shadow: 0 14px 30px rgba(0,139,139,.10);
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 920px){
  .contact-grid{ grid-template-columns: 1.15fr .85fr; gap: 18px; }
}

.contact-cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
@media (min-width: 720px){
  .contact-cards{ grid-template-columns: repeat(2, 1fr); }
}
.contact-card{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: white;
}
.contact-card h3{ margin: 0 0 6px; font-size: 16px; }
.contact-card p{ margin: 0; color: var(--muted); }

.map-card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  min-height: 320px;
  overflow: hidden;
}
.map-fallback{
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background:
    radial-gradient(900px 400px at 50% 30%, rgba(0,139,139,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(243,247,247,1));
}
.map-fallback p{ margin: 0; }
.tiny{ font-size: 13px; color: var(--muted); margin-top: 8px; }

.callout{
  border-radius: var(--radius);
  border: 1px solid rgba(0,139,139,.22);
  background:
    radial-gradient(900px 340px at 20% 20%, rgba(0,139,139,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(243,247,247,1));
  padding: 18px;
  display: grid;
  gap: 12px;
}
@media (min-width: 920px){
  .callout{ grid-template-columns: 1.2fr .8fr; align-items: center; padding: 22px; }
}
.callout-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: white;
}
.footer-inner{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer-links{
  display:flex;
  gap: 14px;
}
.footer-links a{
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.footer-links a:hover{ color: var(--brand-ink); }

/* ── Schriftgröße-Schalter ───────────────────────────── */
.font-ctrl{
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 8px;
}
.font-btn{
  background: rgba(0,139,139,.10);
  border: 1px solid rgba(0,139,139,.22);
  color: var(--brand-ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 9px;
  cursor: pointer;
  line-height: 1;
}
.font-btn:hover{ background: rgba(0,139,139,.20); }

/* ── vCard / QR ──────────────────────────────────────── */
.vcard-grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}
@media (max-width: 600px){
  .vcard-grid{ grid-template-columns: 1fr; }
}
.vcard-qr img{
  width: 140px;
  height: 140px;
  border-radius: 12px;
  border: 1px solid rgba(0,139,139,.18);
  box-shadow: 0 8px 20px rgba(0,139,139,.12);
  display: block;
}

/* ── Warteliste-Badge ────────────────────────────────── */
.badge-warm{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(220,90,40,.10);
  color: #b84a10;
  border: 1px solid rgba(220,90,40,.22);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
  margin-bottom: 14px;
}
