/* Google Fonts lokal selbst gehostet (kein Aufruf an Google-Server, keine IP-Übertragung) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/playfair-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/playfair-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =====================
   Variables – Caparol Moos 40  lch(68 9 120) = #A3A898
   ===================== */
:root {
  --c-primary:      lch(68 9 120);   /* Caparol Moos 40 → #A3A898 */
  --c-primary-dark: lch(44 14 120);  /* accessible dark → #646B54  (5.6:1 vs white) */
  --c-primary-med:  lch(56 11 120);  /* medium → #838976 */
  --c-primary-lt:   lch(83 6 120);   /* light → #CDD0C5 */
  --c-primary-xl:   lch(95 3 120);   /* very light → #F0F1EC */

  --c-text:         #1c2b1a;
  --c-text-muted:   #5a6e58;
  --c-white:        #ffffff;
  --c-bg:           lch(97 1.5 120); /* ~#F4F4F1 */
  --c-border:       lch(88 4 120);   /* ~#DAD9D2 */

  --f-body:    'Inter', -apple-system, sans-serif;
  --f-heading: 'Playfair Display', Georgia, serif;

  --container: 1200px;
  --pad-x:     1.5rem;
  --sec-y:     5rem;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --sh-sm: 0 1px 3px rgba(28,43,26,.06), 0 1px 2px rgba(28,43,26,.04);
  --sh-md: 0 4px 16px rgba(28,43,26,.08), 0 2px 6px rgba(28,43,26,.05);
  --sh-lg: 0 12px 36px rgba(28,43,26,.10), 0 4px 12px rgba(28,43,26,.06);
}

/* =====================
   Reset & Base
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }

/* =====================
   Layout
   ===================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
section { padding: var(--sec-y) 0; }

/* =====================
   Typography
   ===================== */
h1, h2, h3, h4, h5 { font-family: var(--f-heading); line-height: 1.15; }

.section-tag {
  display: block;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
  margin-bottom: .6rem;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 1rem;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-weight: 600;
  transition: all .2s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--c-primary-dark);
  color: var(--c-white);
  border-color: var(--c-primary-dark);
}
.btn-primary:hover {
  background: lch(38 15 120);
  border-color: lch(38 15 120);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px lch(44 14 120 / 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--c-primary-dark);
  border-color: var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary-xl);
  border-color: var(--c-primary-dark);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--c-white);
  color: var(--c-primary-dark);
  border-color: var(--c-white);
}
.btn-white:hover { background: var(--c-primary-xl); }
.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--c-white); }

/* =====================
   Navbar
   ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.navbar.scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: var(--sh-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: .75rem; }
.logo-spine {
  height: 42px; width: auto;
  color: var(--c-primary-dark);
  flex-shrink: 0;
}
.logo-text-group { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--f-heading); font-size: 1.65rem; font-weight: 600; color: var(--c-text); white-space: nowrap; }
.logo-gmbh {
  font-family: var(--f-body);
  font-size: .68em; font-weight: 400;
  color: var(--c-text-muted); margin-left: .2em;
}
.logo-type { font-size: .68rem; color: var(--c-text-muted); margin-top: 3px; letter-spacing: .01em; }

.nav-menu { display: flex; align-items: center; gap: .125rem; }
.nav-link {
  display: inline-flex; align-items: center;
  font-size: .875rem; font-weight: 500;
  color: var(--c-text-muted);
  padding: .5rem .875rem;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--c-primary-dark);
  background: var(--c-primary-xl);
}
.btn-nav {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 600;
  background: var(--c-primary-dark);
  color: white;
  padding: .575rem 1.25rem;
  border-radius: var(--r-sm);
  transition: background .2s, transform .15s;
  margin-left: .5rem;
}
.btn-nav:hover { background: lch(38 15 120); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  padding: .5rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* =====================
   Home Hero
   ===================== */
.hero {
  padding-top: 8rem; padding-bottom: 5rem;
  background: var(--c-bg);
  position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 88% 50%, lch(68 9 120 / 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 5%  90%, lch(68 9 120 / 0.14) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--c-primary-xl);
  border: 1px solid var(--c-primary-lt);
  color: var(--c-primary-dark);
  font-size: .78rem; font-weight: 500;
  padding: .375rem .875rem;
  border-radius: 100px; margin-bottom: 1.5rem;
}
.badge-dot { width: 7px; height: 7px; background: var(--c-primary); border-radius: 50%; }

.hero-title {
  font-size: 3.5rem; font-weight: 500; line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-title-accent { color: var(--c-primary-dark); }
.hero-desc {
  font-size: 1.1rem; color: var(--c-text-muted);
  line-height: 1.75; margin-bottom: 2rem; max-width: 490px;
}
.hero-actions { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-meta-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .85rem; color: var(--c-text-muted);
}
.hero-meta-item svg { width: 15px; height: 15px; color: var(--c-primary-dark); flex-shrink: 0; }

/* Hero visual / image card */
.hero-visual { position: relative; }
.hero-img-card {
  background: white; border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); overflow: hidden;
  aspect-ratio: 4/5; border: 1px solid var(--c-border);
}
.hero-img-inner {
  width: 100%; height: 100%;
  background: linear-gradient(150deg, var(--c-primary-xl) 0%, rgba(196,217,184,.65) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
}
.photo-hint { display: flex; flex-direction: column; align-items: center; gap: .6rem; color: var(--c-primary-dark); }
.photo-hint svg { width: 52px; height: 52px; opacity: .55; }
.photo-hint span {
  font-size: .8rem; font-weight: 600;
  border: 1.5px dashed var(--c-primary);
  padding: .3rem .875rem; border-radius: 6px;
  background: rgba(255,255,255,.65);
}

/* Hero Video */
.hero-video-wrap { position: relative; width: 100%; height: 100%; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-label {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(14,20,12,.65);
  color: rgba(255,255,255,.9);
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  padding: .35rem .875rem; border-radius: 100px;
  backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: .4rem;
}

/* =====================
   Page Hero (inner pages)
   ===================== */
.page-hero {
  padding-top: calc(72px + 3.5rem); padding-bottom: 3.5rem;
  background: linear-gradient(135deg, var(--c-bg) 0%, var(--c-primary-xl) 100%);
  border-bottom: 1px solid var(--c-border);
}
.page-hero-inner { max-width: 680px; }
.page-hero h1 { font-size: 3rem; font-weight: 500; margin-bottom: .875rem; }
.page-hero p { font-size: 1.05rem; color: var(--c-text-muted); line-height: 1.75; }

/* =====================
   Features strip
   ===================== */
.features { background: white; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feat-card {
  padding: 2rem 1.75rem; border-radius: var(--r-lg);
  background: var(--c-bg); border: 1px solid var(--c-border);
  transition: transform .25s, box-shadow .25s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.feat-icon {
  width: 48px; height: 48px;
  background: var(--c-primary-xl); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feat-icon svg { width: 24px; height: 24px; color: var(--c-primary-dark); }
.feat-card h3 { font-family: var(--f-body); font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }
.feat-card p { font-size: .875rem; color: var(--c-text-muted); line-height: 1.65; }

/* =====================
   Services grid (leistungen page + homepage teaser)
   ===================== */
.leistungen-section { background: var(--c-bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  background: white; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.service-card-igel { border-top: 3px solid var(--c-primary-dark); }

.igel-badge {
  position: absolute; top: .875rem; right: .875rem; z-index: 1;
  background: var(--c-primary-dark); color: white;
  font-size: .65rem; font-weight: 700; letter-spacing: .07em;
  padding: .2rem .5rem; border-radius: 4px;
}
.service-photo {
  height: 148px; margin: .875rem .875rem 0;
  border-radius: var(--r-sm); overflow: hidden;
}
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.service-card:hover .service-photo img { transform: scale(1.04); }
/* Placeholder wenn kein Bild */
.service-photo:not(:has(img)) {
  background: linear-gradient(135deg, var(--c-primary-xl) 0%, lch(83 6 120 / 0.55) 100%);
  border: 1.5px dashed var(--c-primary-lt);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
  color: var(--c-primary-dark);
}
.service-photo:not(:has(img)) svg { width: 28px; height: 28px; opacity: .5; }
.service-photo:not(:has(img)) span { font-size: .7rem; font-weight: 600; opacity: .65; }

/* Hero Coming Soon */
.hero-coming-soon {
  width: 100%; height: 100%;
  background: linear-gradient(150deg, var(--c-primary-xl) 0%, lch(83 6 120 / 0.3) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .875rem; text-align: center; padding: 2.5rem;
}
.cs-icon-wrap {
  width: 56px; height: 56px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); margin-bottom: .125rem;
}
.cs-icon-wrap svg { width: 24px; height: 24px; color: var(--c-primary); }
.cs-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--c-primary-dark); color: white;
  padding: .3rem .875rem; border-radius: 100px;
}
.cs-title {
  font-family: var(--f-heading); font-size: 1.3rem; font-weight: 500;
  color: var(--c-text); line-height: 1.3;
}
.cs-note { font-size: .78rem; color: var(--c-text-muted); max-width: 210px; line-height: 1.55; }
.cs-play-btn {
  width: 68px; height: 68px;
  background: var(--c-primary-dark);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px lch(44 14 120 / 0.45);
}
.cs-play-btn svg { margin-left: 3px; }
.cs-play-btn:hover { transform: scale(1.1); box-shadow: 0 6px 32px lch(44 14 120 / 0.6); }
.cs-note { font-size: .78rem; color: var(--c-text-muted); max-width: 210px; line-height: 1.55; cursor: pointer; }

/* Video Modal */
.video-modal {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.video-modal-inner {
  position: relative; width: 100%; max-width: 860px;
}
.video-modal-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; color: white;
  font-size: 1.25rem; cursor: pointer; opacity: .8; transition: opacity .2s;
}
.video-modal-close:hover { opacity: 1; }

.service-icon {
  width: 44px; height: 44px; background: var(--c-primary-xl);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 1rem 1.125rem 0; flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; color: var(--c-primary-dark); }
.service-body { padding: .875rem 1.125rem 1.5rem; flex: 1; }
.service-body h3 {
  font-family: var(--f-body); font-size: 1.05rem; font-weight: 600;
  margin-bottom: .5rem; color: var(--c-text);
}
.service-sub { font-size: .75rem; font-weight: 400; color: var(--c-text-muted); }
.service-body p { font-size: .855rem; color: var(--c-text-muted); line-height: 1.65; }

.teaser-cta { text-align: center; margin-top: 2.5rem; }

/* =====================
   Team
   ===================== */
.team-section { background: white; }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem; max-width: 860px; margin: 0 auto;
}
.team-card {
  background: var(--c-bg); border-radius: var(--r-xl);
  padding: 2.5rem; border: 1px solid var(--c-border);
  text-align: center; transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.team-photo {
  width: 280px; height: 280px;
  background: linear-gradient(135deg, var(--c-primary-lt) 0%, var(--c-primary) 100%);
  border-radius: 50%; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px lch(68 9 120 / 0.45);
}
.team-initials { font-family: var(--f-heading); font-size: 2rem; font-weight: 600; color: white; letter-spacing: .05em; }
.team-photo-real {
  background: none;
  overflow: hidden;
}
.team-photo-real img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-name { font-size: 1.3rem; font-weight: 600; color: var(--c-text); margin-bottom: .25rem; }
.team-role {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c-primary-dark); margin-bottom: .2rem;
}
.team-degree { font-size: .8rem; color: var(--c-text-muted); font-style: italic; margin-bottom: 1.125rem; }
.team-bio { font-size: .875rem; color: var(--c-text-muted); line-height: 1.72; text-align: left; }

/* =====================
   Booking banner (homepage)
   ===================== */
.booking-banner {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, lch(38 15 120) 100%);
  padding: 4.5rem 0; color: white;
}
.booking-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.booking-banner h2 { font-size: 2.1rem; color: white; margin-bottom: .5rem; }
.booking-banner p { color: rgba(255,255,255,.8); font-size: 1rem; }
.booking-banner-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* =====================
   Kontakt page
   ===================== */
.kontakt-section { background: white; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
  width: 44px; height: 44px; background: var(--c-primary-xl);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; color: var(--c-primary-dark); }
.ci-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--c-text-muted);
  margin-bottom: .25rem; display: block;
}
.ci-value { font-size: .95rem; color: var(--c-text); line-height: 1.55; }
.ci-value a { color: var(--c-primary-dark); text-decoration: underline; text-underline-offset: 3px; }
.ci-value a:hover { color: var(--c-primary-med); }

/* Hours table */
.hours-block { margin-top: 2.5rem; }
.hours-block h3 { font-family: var(--f-body); font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.hours-table { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-border); background: var(--c-bg); }
.h-row { display: flex; justify-content: space-between; padding: .75rem 1.125rem; border-bottom: 1px solid var(--c-border); }
.h-row:last-child { border-bottom: none; }
.h-row:not(.h-closed):hover { background: var(--c-primary-xl); }
.h-day { font-size: .875rem; font-weight: 500; color: var(--c-text); }
.h-time { font-size: .875rem; color: var(--c-text-muted); font-weight: 500; }
.h-closed .h-day, .h-closed .h-time { opacity: .45; }

/* Booking options */
.booking-opts { margin-top: 2.5rem; }
.booking-opts h3 { font-family: var(--f-body); font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.booking-opts-list { display: flex; flex-direction: column; gap: .875rem; }
.bopt {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.125rem 1.25rem; background: var(--c-bg);
  border-radius: var(--r-md); border: 2px solid var(--c-border);
  transition: all .2s;
}
.bopt:hover { border-color: var(--c-primary); box-shadow: var(--sh-md); transform: translateX(4px); }
.bopt-icon {
  width: 44px; height: 44px; background: var(--c-primary-xl);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bopt-icon svg { width: 20px; height: 20px; color: var(--c-primary-dark); }
.bopt strong { display: block; font-size: .95rem; color: var(--c-text); margin-bottom: .1rem; }
.bopt span { font-size: .8rem; color: var(--c-text-muted); }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--c-border); }
.map-wrap iframe { display: block; width: 100%; height: 500px; border: 0; }
.map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; height: 500px; padding: 2rem;
  background: var(--c-bg);
}
.map-placeholder p { max-width: 320px; font-size: .875rem; color: var(--c-text-muted); }

/* =====================
   Footer
   ===================== */
.footer { background: var(--c-text); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 1.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: 1rem; display: inline-flex; }
.footer .logo-spine { color: var(--c-primary-lt); }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-gmbh { color: rgba(255,255,255,.5); }
.footer-brand .logo-type { color: rgba(255,255,255,.45); }
.footer-brand > p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 270px; }

.footer-col h4 {
  font-family: var(--f-body); font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: white; margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li { font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--c-primary-lt); }
.footer-col address { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.footer-col address a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-col address a:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; font-size: .78rem; color: rgba(255,255,255,.4);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.75); }

/* =====================
   Legal pages (Impressum / Datenschutz)
   ===================== */
.legal-content {
  max-width: 760px; margin: 0 auto;
  padding: var(--sec-y) var(--pad-x);
}
.legal-content h2 { font-size: 1.5rem; margin: 2.25rem 0 .75rem; color: var(--c-text); }
.legal-content h3 { font-size: 1.05rem; margin: 1.5rem 0 .5rem; font-family: var(--f-body); font-weight: 600; }
.legal-content p, .legal-content li { font-size: .95rem; color: var(--c-text-muted); line-height: 1.78; margin-bottom: .75rem; }
.legal-content ul { padding-left: 1.25rem; }
.legal-content ul li { list-style: disc; }
.legal-ph {
  display: inline-block;
  background: var(--c-primary-xl);
  border: 1.5px dashed var(--c-primary);
  border-radius: 6px;
  padding: .275rem .75rem;
  color: var(--c-primary-dark);
  font-size: .875rem; font-weight: 500;
  margin: .2rem 0;
}

/* =====================
   Doctolib Floating Widget
   ===================== */
.doctolib-widget {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
  display: block; text-align: center;
  background: #00264c !important;
  color: #00264c !important;
  text-decoration: none !important;
  font-size: 16px !important; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  width: auto;
  border-radius: 4px 0 0 4px;
  padding: 5px;
  z-index: 999;
  opacity: .8;
  box-shadow: 1px 2px 4px rgba(0,0,0,.2);
  line-height: 1.4;
}
.doctolib-widget a {
  display: block; color: #00264c; text-decoration: none;
  padding: 6px; margin-top: 5px;
  background: #fff; border-radius: 4px;
  font-weight: 700; transition: .2s;
}
.doctolib-widget a:hover, .doctolib-widget a:focus {
  opacity: .9; outline: 2px solid #f5f5f5; outline-offset: 2px;
}
.doctolib-widget img {
  display: inline-block; height: 18px; margin: 3px 0;
  vertical-align: middle; width: auto;
}
@media (max-width: 600px) {
  .doctolib-widget { top: auto; bottom: 10px; right: 0; transform: none; width: auto !important; padding: 4px; }
  .doctolib-widget a { text-decoration: none; font-size: 16px; font-weight: 700; padding: 5px; }
}

/* =====================
   Animations
   ===================== */
.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd2 { transition-delay: .12s; }
.fd3 { transition-delay: .24s; }
.fd4 { transition-delay: .36s; }
.fd5 { transition-delay: .48s; }
.fd6 { transition-delay: .60s; }

/* =====================
   Responsive
   ===================== */

/* ── Tablet 1024px ── */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.9rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .kontakt-grid { gap: 2.5rem; }
}

/* ── Mobile 768px ── */
@media (max-width: 768px) {
  :root { --sec-y: 3rem; --pad-x: 1.25rem; }

  /* Nav */
  .nav-menu {
    display: none;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--c-white);
    flex-direction: column; align-items: stretch;
    padding: 1rem var(--pad-x) 1.5rem;
    box-shadow: var(--sh-lg);
    border-top: 1px solid var(--c-border);
    gap: .375rem;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-link { display: flex; padding: .875rem 1rem; font-size: 1rem; border-radius: var(--r-sm); min-height: 44px; box-sizing: border-box; }
  .btn-nav {
    display: flex; justify-content: center;
    margin-left: 0; margin-top: 1.25rem;
    text-align: center; padding: 1rem;
    font-size: 1rem; border-radius: var(--r-sm);
    min-height: 44px; box-sizing: border-box;
  }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding-top: 5.5rem; padding-bottom: 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-actions { gap: .75rem; margin-bottom: 1.75rem; }
  .hero-badge { font-size: .72rem; }
  .hero-meta { gap: 1rem; }
  .hero-meta-item { font-size: .8rem; }

  /* Page Hero */
  .page-hero { padding-top: calc(72px + 2.5rem); padding-bottom: 2.5rem; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: .95rem; }

  /* Sections */
  .section-title { font-size: 1.9rem; }
  .section-header { margin-bottom: 2.5rem; }

  /* Feature cards */
  .features-grid { grid-template-columns: 1fr; gap: .875rem; }
  .feat-card { padding: 1.5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-photo { height: 200px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }
  .team-card { padding: 2rem 1.5rem; }
  .team-photo { width: 210px; height: 210px; }

  /* Booking banner */
  .booking-banner { padding: 3rem 0; }
  .booking-banner-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .booking-banner h2 { font-size: 1.7rem; }

  /* Kontakt */
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-wrap iframe, .map-placeholder { height: 280px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── Small phones 480px ── */
@media (max-width: 480px) {
  :root { --sec-y: 2.5rem; --pad-x: 1rem; }

  /* Logo: hide subtitle to save space, slightly smaller than desktop bump to avoid overflow next to the hamburger */
  .logo-type { display: none; }
  .logo-gmbh { font-size: .7em; }
  .logo { gap: .5rem; }
  .logo-name { font-size: 1.4rem; }

  /* Hero */
  .hero-title { font-size: 1.8rem; line-height: 1.2; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; font-size: .9rem; }
  .hero-badge { display: none; }

  /* Typography */
  .section-title { font-size: 1.65rem; }
  .page-hero h1 { font-size: 1.75rem; }

  /* Services */
  .service-body { padding: .75rem 1rem 1.25rem; }
  .service-photo { height: 180px; margin: .625rem .625rem 0; }
  .service-icon { margin: .875rem 1rem 0; }

  /* Team */
  .team-card { padding: 1.5rem 1.25rem; }

  /* Booking banner */
  .booking-banner-btns { flex-direction: column; width: 100%; }
  .booking-banner-btns .btn { width: 100%; justify-content: center; }

  /* Hours table */
  .h-day, .h-time { font-size: .8rem; }

  /* Booking options */
  .bopt { padding: .875rem 1rem; }

  /* Contact */
  .ci-value { font-size: .875rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding-top: 2.5rem; }
  .footer-grid { padding-bottom: 2rem; }

  /* Modal */
  .video-modal { padding: 1rem; }
  .video-modal-inner { width: 100%; }
}

/* ── Tap targets & touch ── */
@media (pointer: coarse) {
  .btn, .btn-nav, .nav-link, .bopt, .booking-option { min-height: 44px; }
  button { -webkit-tap-highlight-color: transparent; }
  a { -webkit-tap-highlight-color: transparent; }
}
