/* ═══════════════════════════════════════════════════════════════
   Zahnarzt Dr. Thielen – Stylesheet v5
   Design: Lemon-Squeezy-inspired (Teal Edition)
   Font: Plus Jakarta Sans
   Palette: Deep Teal-Black / Pure White / Mint / Teal
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens – Teal Palette ── */
:root {
  --black:        #0C1A19;
  --black-deep:   #060E0D;
  --white:        #FFFFFF;
  --sand:         #F0FDFA;
  --sand-dark:    #CCFBF1;
  --sand-deeper:  #99F6E4;
  --sage:         #2DD4BF;
  --sage-dark:    #134E4A;
  --teal:         #0D9488;
  --teal-dark:    #0F766E;
  --teal-light:   #CCFBF1;
  --teal-mid:     #14B8A6;
  --grey:         #CBD5D4;
  --grey-mid:     #4B7A75;
  --grey-light:   #F7FFFE;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-height: 68px;
  --max-width: 1200px;
  --radius: 9999px;
  --radius-sm: 4px;
  --radius-md: 8px;

  --shadow-offset: 6px 6px 0px rgba(0,0,0,0.15);
  --shadow-offset-dark: 6px 6px 0px rgba(0,0,0,0.4);
  --shadow-soft: 0 12px 40px rgba(0,0,0,0.12);

  --gap: clamp(1.5rem, 4vw, 3rem);
  --section-pad: clamp(3rem, 5vw, 5rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.1;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  padding: 0.5rem 1rem; background: var(--teal); color: #fff;
  border-radius: var(--radius-sm); font-weight: 700; z-index: 9999;
  transition: top 0.15s;
}
.skip-link:focus { top: 1rem; }

/* ── Container ── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 3px;
  font-family: var(--font); font-size: 0.8125rem; font-weight: 500; line-height: 1;
  cursor: pointer; border: 1.5px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s,
              transform 0.2s, box-shadow 0.25s;
  text-decoration: none; white-space: nowrap; min-height: 48px;
  letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.btn:active { transform: scale(0.97) !important; }

/* Arrow icon inside buttons */
.btn__arrow {
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn:hover .btn__arrow { transform: translateX(5px); }

/* Primary – orange solid, lifts with glow */
.btn--primary {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.45);
}

/* Ghost – transparent with white border, fill-sweep on hover */
.btn--ghost {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35);
  z-index: 0;
}
.btn--ghost::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.75); color: var(--white); }
.btn--ghost:hover::before { transform: scaleX(1); }

/* Ghost white – for CTA on orange background */
.btn--ghost-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
  z-index: 0;
}
.btn--ghost-white::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn--ghost-white:hover { border-color: var(--white); color: var(--white); }
.btn--ghost-white:hover::before { transform: scaleX(1); }

/* White – on dark/orange backgrounds */
.btn--white {
  background: var(--white); color: var(--teal); border-color: var(--white);
  z-index: 0;
}
.btn--white::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--sand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn--white:hover { color: var(--teal-dark); border-color: var(--sand); }
.btn--white:hover::before { transform: scaleX(1); }
.btn--white .btn__arrow { color: var(--teal); }

/* Outline dark – on light backgrounds, fills black */
.btn--outline-dark {
  background: transparent; color: var(--black); border-color: var(--black);
  z-index: 0;
}
.btn--outline-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--black);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn--outline-dark:hover { color: var(--white); border-color: var(--black); }
.btn--outline-dark:hover::before { transform: scaleY(1); }

.btn--lg { padding: 1rem 2rem; font-size: 0.875rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-height);
  background: rgba(5,50,46,0.65);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(5,50,46,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav { display: flex; align-items: center; height: 100%; gap: 1.5rem; }

.nav__logo {
  display: flex; align-items: center; gap: 0.875rem;
  text-decoration: none; flex-shrink: 0;
}
.nav__logo:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 2px; }

.logo-mark rect { fill: var(--teal); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Dancing Script', cursive; font-weight: 700; font-size: 1.25rem;
  color: var(--white); letter-spacing: 0.01em;
  line-height: 1;
}
.logo-subtitle {
  font-size: 0.62rem; font-weight: 400; color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em; margin-top: 3px; text-transform: uppercase;
}

.nav__menu {
  display: flex; align-items: center; gap: 0.25rem; margin-left: auto; list-style: none;
}
.nav__link {
  display: inline-flex; align-items: center;
  padding: 0.5rem 0.875rem;
  font-family: var(--font); font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.65); text-decoration: none; min-height: 44px;
  border-radius: 2px; position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: 6px; left: 0.875rem; right: 0.875rem;
  height: 1px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--white); }
.nav__link.active::after { transform: scaleX(1); }
.nav__link:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

.nav__cta { margin-left: 0.75rem; }

/* ── Hero white stripe divider (mobile only) ── */
.hero-divider { display: none; }

/* ── Dropdown ── */
.nav__item--dropdown { position: relative; }
.nav__link--drop {
  background: none; border: none; cursor: pointer;
  gap: 0.3rem;
}
.nav__chevron {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.nav__item--dropdown:hover .nav__chevron,
.nav__item--dropdown.open .nav__chevron { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10, 24, 22, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  min-width: 200px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown.open .nav__dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav__dropdown-link:hover {
  color: #fff;
  background: rgba(13,148,136,0.15);
}

.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  padding: 0.5rem; border-radius: 2px; margin-left: auto; flex-shrink: 0;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  border-radius: 1px; transition: transform 0.25s, opacity 0.15s;
}
.nav__burger:focus-visible { outline: 2px solid var(--teal); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   HERO – Full Bleed
   ═══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex; align-items: flex-end;
  position: relative;
  overflow: hidden;
}

/* ── Background slideshow ── */
.hero__bg {
  position: absolute; inset: 0;
}
.slideshow__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slideshow__img.active { opacity: 1; }

/* Gradient overlay: left heavy, right fades out */
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    130deg,
    rgba(6,14,13,0.92) 0%,
    rgba(6,14,13,0.60) 42%,
    rgba(6,14,13,0.08) 100%
  );
}

/* ── Content layer ── */
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  width: 100%;
}

.hero__text { display: flex; flex-direction: column; }

/* Eyebrow label */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal-mid);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.75rem;
}
.hero__practice {
  display: block;
  font-size: 0.55em; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 0.15em;
}
.hero__name {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.6em; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em; line-height: 1;
  margin-bottom: 0.3em;
}
.hero__title em {
  display: block;
  font-size: 0.52em; font-style: italic; font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.hero__intro {
  font-size: 1rem; font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.8; max-width: 460px;
  margin-bottom: 0;
}
.hero__intro--gap { margin-bottom: 0.75rem; }

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 2rem;
}

/* Ghost button – auf dunklem Hintergrund */
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 0.875rem 1.875rem;
  font-size: 0.9375rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.09);
}

/* ── Info-Karten (Desktop rechts) ── */
.hero__cards {
  display: flex; flex-direction: column;
  gap: 0.875rem; align-items: flex-end;
}
.hero__info-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  min-width: 250px;
}
.hero__info-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 0.3rem;
}
.hero__info-value {
  font-size: 0.9375rem; font-weight: 600;
  color: var(--white);
}
.hero__info-sub {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  margin-top: 0.15rem;
}

/* ── Slideshow Punkte ── */
.slideshow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.slideshow__dot.active {
  background: var(--white);
  transform: scale(1.3);
}
.hero__dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 3;
}

/* ═══════════════════════════════════════════════════════════════
   HIGHLIGHTS BAR
   ═══════════════════════════════════════════════════════════════ */
.highlights-bar {
  background: var(--sand);
  border-top: 2px solid var(--sand-dark);
  border-bottom: 2px solid var(--sand-dark);
  padding: 2rem 0;
}
.highlights-bar__inner {
  display: flex; justify-content: center; flex-wrap: wrap;
  align-items: center;
}
.highlight-item {
  display: flex; align-items: center; gap: 1rem;
  color: var(--grey-mid);
  padding: 0.75rem 2.5rem;
  border-right: 1px solid var(--sand-dark);
  font-size: 0.8125rem;
}
.highlight-item:last-child { border-right: none; }
.highlight-item__icon {
  display: flex; flex-shrink: 0;
  color: var(--teal); opacity: 0.9;
}
.highlight-item__text strong {
  display: block; font-weight: 600;
  font-size: 0.875rem; color: var(--black); letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}
.highlight-item__text span {
  display: block; font-size: 0.78rem;
  color: var(--grey-mid);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--sand); }
.section--dark { background: var(--black); }
.section--white { background: var(--white); }
.section--sand { background: var(--sand); }

.section__header { max-width: 680px; margin: 0 auto var(--gap); text-align: center; }
.section__header--left { text-align: left; margin-left: 0; }

.section__label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--black);
}
.section--dark .section__title { color: var(--black); }
.section__title--left { text-align: left; }

.section__subtitle {
  font-size: 0.9375rem; color: var(--grey-mid); line-height: 1.8; font-weight: 400;
}
.section--dark .section__subtitle { color: var(--grey-mid); }

/* ── Logo hover ── */
.nav__logo { transition: opacity 0.2s; }
.nav__logo:hover { opacity: 0.8; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════════════ */
/* #leistungen bg controlled via section--white class */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--sand);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  border-radius: 14px;
  border: 1.5px solid var(--sand-dark);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--teal);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(13,148,136,0.12);
}
.service-card:hover::before { transform: scaleY(1); }

.service-card--featured {
  background: var(--teal-dark);
  grid-column: 1 / -1;
  flex-direction: row; gap: 3rem; align-items: flex-start;
  padding: 2.5rem;
  border: none;
}
.service-card--featured:hover {
  background: var(--teal);
  box-shadow: 0 20px 50px rgba(13,148,136,0.4);
}

.service-card__icon {
  flex-shrink: 0; color: var(--teal);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.service-card--featured .service-card__icon { color: var(--teal-light); }

.service-card__body { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }

.service-card__tag {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--teal);
}
.service-card--featured .service-card__tag { color: var(--teal-light); }
.service-card__title {
  font-size: 0.9375rem; font-weight: 700; color: var(--black);
  letter-spacing: -0.01em;
}
.service-card--featured .service-card__title {
  font-size: 1.2rem; color: var(--white);
}
.service-card__desc {
  font-size: 0.85rem; color: var(--grey-mid); line-height: 1.7; font-weight: 400;
}
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.75); }
.service-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
  gap: 0.25rem;
}
.service-card__link:hover { gap: 0.5rem; text-decoration: underline; }
.service-card--featured .service-card__link { color: var(--teal-light); }

/* ═══════════════════════════════════════════════════════════════
   QUOTE SECTION
   ═══════════════════════════════════════════════════════════════ */
.quote-section {
  background: var(--teal);
  padding: 6rem 0;
  text-align: center;
}
.quote-section__inner { max-width: 820px; margin: 0 auto; }
.quote-section blockquote {
  font-family: var(--font);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 500; font-style: italic;
  color: var(--white);
  line-height: 1.5; margin-bottom: 2rem;
}
.quote-section blockquote::before { content: none; }
.quote-section blockquote::after  { content: none; }
.quote-author {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.quote-author__line { width: 28px; height: 1px; background: rgba(255,255,255,0.4); }
.quote-author__name {
  font-weight: 500; color: var(--white);
  font-size: 0.875rem; letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT / PRAXIS
   ═══════════════════════════════════════════════════════════════ */
#praxis .section__label { color: var(--teal); }
#praxis .section__title { color: var(--black); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-layout--reversed { direction: rtl; }
.about-layout--reversed > * { direction: ltr; }
.about__visual { position: relative; }
.about__image {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: block;
  filter: contrast(1.05);
}
.about__caption {
  margin-top: 0.875rem;
  font-size: 0.75rem; color: var(--sage); letter-spacing: 0.04em;
  font-style: italic;
}
.about__content { display: flex; flex-direction: column; gap: 1.5rem; }
.about__text { font-size: 0.9375rem; color: var(--grey-mid); line-height: 1.9; font-weight: 400; }
.about__values { display: flex; flex-direction: column; gap: 0; margin-top: 0.5rem; }
.value-item {
  display: flex; align-items: flex-start; gap: 0.875rem;
  font-size: 0.875rem; color: var(--black); font-weight: 400;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--sand-dark);
}
.value-item:last-child { border-bottom: none; }
.value-item__icon {
  width: 18px; height: 18px; margin-top: 2px;
  color: var(--teal); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════════════ */
.team-section { padding: var(--section-pad) 0; }
.team-section .section__title { color: var(--black); }

.team-card {
  display: grid;
  grid-template-columns: clamp(220px, 32%, 380px) 1fr;
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,11,20,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(13,11,20,0.16);
}
.team-card__image-wrap {
  overflow: hidden;
}
.team-card__image {
  width: 100%; height: 100%; min-height: 460px;
  object-fit: cover; object-position: top center; display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-card:hover .team-card__image { transform: scale(1.05); }
.team-card__body {
  padding: 3.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.team-card__role {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--teal);
}
.team-card__name {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.05; color: var(--black);
}
.team-card__bio { font-size: 0.9rem; color: var(--grey-mid); line-height: 1.85; font-weight: 400; }
.team-card__credentials {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 1.5rem; border-top: 1.5px solid var(--sand-dark);
}
.credential-tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem; font-weight: 500;
  color: var(--black);
  padding: 0.375rem 0.875rem;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius);
  background: var(--sand);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  cursor: default;
}
.credential-tag:hover {
  background: var(--teal); border-color: var(--teal);
  color: var(--white); transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   INFO / ÖFFNUNGSZEITEN
   ═══════════════════════════════════════════════════════════════ */
/* #oeffnungszeiten bg controlled via section--white class */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.info-card {
  background: var(--sand);
  border: 1.5px solid var(--sand-dark);
  border-radius: 14px;
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  box-shadow: 0 4px 20px rgba(13,148,136,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,148,136,0.14);
}
.info-card__icon {
  width: 44px; height: 44px;
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.info-card__title {
  font-size: 1.125rem; font-weight: 700; color: var(--black);
  letter-spacing: -0.02em;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.hours-table tr { border-bottom: 1px solid var(--sand-dark); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table th {
  text-align: left; padding: 0.18rem 0.5rem 0.18rem 0;
  font-weight: 500; color: var(--black); white-space: nowrap; width: 35%;
  font-size: 0.8125rem;
}
.hours-table td { padding: 0.18rem 0.5rem; color: var(--grey-mid); font-size: 0.8125rem; }
.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--black);
}
.contact-item svg { flex-shrink: 0; color: var(--teal); margin-top: 2px; }
.contact-item a { color: var(--black); font-weight: 500; }
.contact-item a:hover { color: var(--teal); }
.contact-note {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--grey-mid);
  background: var(--sand); padding: 0.875rem 1rem;
  border-radius: var(--radius-sm); border: 1px solid var(--sand-dark);
}
.contact-note svg { flex-shrink: 0; color: var(--teal); margin-top: 1px; }
.map-embed {
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1.5px solid var(--sand-dark);
}
.map-btn { align-self: flex-start; }
.info-card--map { gap: 1rem; }

/* ── Notfall Banner ── */
.emergency-banner {
  background: var(--teal-light);
  border: 1.5px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  margin-top: 0.5rem;
}
.emergency-banner__icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.emergency-banner__title { font-weight: 700; color: var(--black); margin-bottom: 0.25rem; font-size: 0.875rem; }
.emergency-banner__text { font-size: 0.8125rem; color: var(--grey-mid); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section { background: var(--black); padding: 0 0 var(--section-pad); }
.cta-card {
  background: var(--teal);
  border-radius: var(--radius-md);
  padding: 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-card__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.cta-card__text {
  font-size: 0.9375rem; color: rgba(255,255,255,0.75);
  max-width: 480px; line-height: 1.7; font-weight: 400;
}
.cta-card__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  flex-shrink: 0; position: relative; z-index: 1;
}
.cta-card .btn--white {
  background: var(--white); color: var(--teal); border-color: var(--white);
}
.cta-card .btn--white:hover { background: var(--sand); color: var(--teal-dark); }
.cta-card .btn--white-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.cta-card .btn--white-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--teal-dark); color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .logo-name { color: var(--white); }
.footer__brand .logo-subtitle { color: rgba(255,255,255,0.45); }
.footer__tagline {
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  margin-top: 1rem; line-height: 1.7; font-style: italic;
}
.footer__nav-title {
  font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a, .footer__contact a {
  color: rgba(255,255,255,0.65); font-size: 0.875rem;
  transition: color 0.15s;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--white); }
.footer__contact address { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.footer__ai-notice {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0 0;
  line-height: 1.6;
}
.footer__ai-notice svg { flex-shrink: 0; margin-top: 0.15em; opacity: 0.6; }
.footer__ai-notice a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer__ai-notice a:hover { color: var(--white); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0;
  font-size: 0.8125rem; color: rgba(255,255,255,0.5);
}
.footer__bottom nav { display: flex; gap: 1.5rem; }
.footer__bottom nav a { color: rgba(255,255,255,0.55); font-size: 0.8125rem; }
.footer__bottom nav a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   FOCUS
   ═══════════════════════════════════════════════════════════════ */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.hero :focus-visible,
.why-section :focus-visible,
.feature-block :focus-visible,
.cta-strip :focus-visible,
.footer :focus-visible { outline-color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════════════════════
   WHY SECTION
   ═══════════════════════════════════════════════════════════════ */
.why-section {
  background: var(--teal-dark);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}
.why__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}
.why__headline .section__label { color: var(--teal-light); }
.why__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 0.75rem;
}
.why__points {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.why-point {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: baseline;
}
.why-point:last-child { border-bottom: none; }
.why-point h3 {
  font-size: 0.875rem; font-weight: 700;
  color: var(--teal-light); letter-spacing: 0.01em;
  line-height: 1.5;
}
.why-point p {
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* Mobile/Desktop-only nav items */
.nav__item--mobile-only { display: none; }
.nav__item--desktop-only { display: list-item; }

/* ═══════════════════════════════════════════════════════════════
   FEATURE BLOCK
   ═══════════════════════════════════════════════════════════════ */
.feature-block {
  background: var(--teal);
  padding: var(--section-pad) 0;
}
.feature-block__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-block__visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.feature-block__img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
}
.feature-block__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-quote {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500; font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
  border-left: 3px solid rgba(255,255,255,0.4);
}
.feature-block__text .quote-author {
  padding-left: 1.5rem;
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════════
   INTERVIEW SECTION
   ═══════════════════════════════════════════════════════════════ */
.interview-section {
  background: var(--black);
  overflow: hidden;
}
.interview-section__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.interview-section__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.interview-section__image {
  position: relative;
  overflow: hidden;
}
.interview-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.interview-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0.75rem 0 2rem;
}
.interview__qa {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.interview__qa:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.interview__question {
  font-size: 0.9375rem;
  color: var(--teal-mid);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}
.interview__answer {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

/* ── Team Slideshow ── */
.team-slideshow {
  position: relative;
  margin-top: 2.5rem;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--black);
}
.team-slideshow__slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.team-slideshow__slide.active { opacity: 1; }
.team-slideshow__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.team-slideshow__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(12,26,25,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
  z-index: 2;
}
.team-slideshow__btn:hover { background: rgba(13,148,136,0.8); }
.team-slideshow__btn--prev { left: 1rem; }
.team-slideshow__btn--next { right: 1rem; }
.team-slideshow__dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 2;
}
.team-slideshow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  padding: 0; transition: background 0.2s, transform 0.2s;
}
.team-slideshow__dot.active {
  background: var(--teal-mid); transform: scale(1.25);
}

/* ── Team List (no photos) ── */
.team-list {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
}
.team-list__item {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--sand-dark);
}
.team-list__item:last-child { border-right: none; }
.team-list__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}
.team-list__role {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .interview-section__inner {
    grid-template-columns: 1fr;
  }
  .interview-section__image {
    height: 280px;
    order: -1;
  }
  .team-slideshow { aspect-ratio: 4/3; max-width: 90%; margin-left: auto; margin-right: auto; }
  .team-list { flex-direction: column; border-right: none; }
  .team-list__item { border-right: none; border-bottom: 1px solid var(--sand-dark); padding: 1rem; }
  .team-list__item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════════════════════════════ */
.cta-strip {
  background: var(--teal);
  padding: clamp(4rem, 7vw, 7rem) 0;
  text-align: center;
}
.cta-strip__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-strip__label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1.25rem;
}
.cta-strip__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 1.25rem;
}
.cta-strip__title em {
  color: var(--teal-light); font-style: italic;
}
.cta-strip__subtitle {
  font-size: 0.9375rem; color: rgba(255,255,255,0.72);
  line-height: 1.75; margin-bottom: 2.5rem;
}
.cta-strip__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – TABLET PORTRAIT + MOBILE (≤ 1023px)
   Tablet portrait = mobile: alles single-column
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  :root { --section-pad: 3rem; }

  /* Hero – Mobile: Hochformat-Bild oben, Text darunter auf dunklem Grund */
  .hero {
    min-height: 100vh;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 4rem;
  }
  /* Bild bleibt absolut wie auf Desktop */
  .hero__bg {
    position: absolute; inset: 0;
  }
  .hero__bg .slideshow__img {
    object-position: center 20%;
  }
  /* Stärkerer Overlay auf Mobile für Lesbarkeit */
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(6,14,13,0.45) 0%,
      rgba(6,14,13,0.55) 40%,
      rgba(6,14,13,0.85) 100%
    );
  }
  /* Text: über dem Bild, einspaltig */
  .hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    background: transparent;
    padding: calc(var(--header-height) + 2rem) 1.5rem 3rem;
    gap: 0;
  }
  .hero__cards { display: none; }
  .hero__title { font-size: clamp(1.9rem, 5vw, 2.75rem); }
  .hero__actions { margin-top: 1.5rem; }
  .hero__dots { bottom: auto; position: relative; transform: none; left: auto;
    justify-content: flex-start; margin-top: 1.5rem; }

  .why-section { padding-top: 2.5rem; }

  /* Nav: Hamburger + mobile-only items */
  .nav__burger { display: flex; }
  .nav__item--mobile-only { display: list-item; }
  .nav__item--desktop-only { display: none; }
  .nav__menu {
    display: none; position: absolute; top: var(--header-height);
    left: 0; right: 0; background: rgba(7,5,13,0.97);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column; align-items: stretch; gap: 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .nav__menu.open { display: flex; }
  .nav__link { border-radius: 2px; padding: 0.65rem 0.5rem; }
  .nav__cta { margin-left: 0; justify-content: center; margin-top: 0.5rem; }

  /* Dropdowns on mobile: static, collapsible */
  .nav__dropdown {
    position: static; transform: none;
    opacity: 1; pointer-events: auto;
    background: rgba(255,255,255,0.05);
    border: none; border-radius: 4px;
    box-shadow: none;
    padding: 0.25rem 0 0.25rem 1rem;
    display: none;
    transition: none;
  }
  .nav__item--dropdown.open .nav__dropdown { display: block; }
  .nav__dropdown-link {
    padding: 0.5rem 0.75rem;
    color: rgba(255,255,255,0.75);
  }
  .nav__dropdown-link:hover { color: #fff; }

  /* Highlights bar */
  .highlights-bar__inner { flex-direction: column; align-items: stretch; }
  .highlight-item {
    border-right: none; border-bottom: 1px solid var(--sand-dark);
    width: 100%; justify-content: flex-start; padding: 1rem 1.5rem;
  }
  .highlight-item:last-child { border-bottom: none; }

  /* Featured Card: auf Tablet/Mobile als Block */
  .service-card--featured { flex-direction: column; gap: 1.5rem; }

  /* About */
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { max-width: 90%; margin: 0 auto; }
  .about__images { grid-template-columns: 1fr; }
  .about__image, .about__image-secondary { width: 100%; max-width: 100%; }
  .about__image-secondary-wrap { margin-top: 4.5rem; }

  /* Why section */
  .why__inner { grid-template-columns: 1fr; gap: 2rem; }
  .why__title { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .why-point { grid-template-columns: 1fr; gap: 0.25rem; padding: 0.875rem 0; }
  .why-section { padding: 2.5rem 0; }

  /* Feature block: Text über Bild wie Hero */
  .feature-block { padding: 0; }
  .feature-block__inner {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
    min-height: 75vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .feature-block__visual {
    position: absolute; inset: 0;
    max-width: none; margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .feature-block__img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: unset;
  }
  .feature-block__inner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(6,14,13,0.25) 0%, rgba(6,14,13,0.88) 100%);
    pointer-events: none;
  }
  .feature-block__text {
    position: relative; z-index: 2;
    align-items: flex-start;
    padding: 2.5rem 1.5rem 3rem;
  }
  .feature-quote { font-size: 1.2rem; text-align: left; }
  .feature-block__text .quote-author { padding-left: 0; }
  .feature-block__actions { display: flex; justify-content: flex-start; }

  /* Info grid: Karte volle Breite wenn 2-spaltig */
  .info-card--map { grid-column: 1 / -1; }
  .info-card { align-items: stretch; }

  /* Hours table */
  .hours-table { font-size: 0.8rem; }
  .hours-table th { width: 40%; font-size: 0.8rem; }
  .hours-table td { font-size: 0.8rem; padding: 0.5rem 0.25rem; }

  /* Team */
  .team-card__image { min-height: 260px; max-height: 420px; object-position: center top; }
  .team-card__body { padding: 2rem; }

  /* CTA strip */
  .cta-strip { padding: 3.5rem 0; }
  .cta-strip__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .cta-strip__actions { flex-direction: column; align-items: center; gap: 1rem; }
  .cta-strip__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }

  /* Contact */
  .contact-info { position: static; }

  /* Misc */
  .cta-card { flex-direction: column; align-items: flex-start; padding: 2.5rem; }
  .cta-card__actions { width: 100%; }
  .section__title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE (≤ 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Footer vollständig gestapelt */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 1; max-width: 100%; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer__bottom nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════════════════ */
/* Team-Karte: kollabiert wenn zu schmal für 2-spaltiges Layout */
@media (max-width: 620px) {
  .team-card { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --section-pad: 2.5rem; }
  .container { padding: 0 1.25rem; }

  .hero__title { font-size: 1.75rem; line-height: 1.1; }
  .hero__practice { font-size: 0.5em; }
  .hero__name { font-size: 1.4em; }
  .hero__intro { font-size: 0.875rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .service-card { padding: 1.5rem; }
  .service-card--featured { padding: 1.75rem; }

  .info-card { padding: 1.25rem; }
  .hours-table th, .hours-table td { font-size: 0.75rem; }

  .cta-card__actions { flex-direction: column; }
  .cta-card__actions .btn { width: 100%; justify-content: center; }

  .form-row { grid-template-columns: 1fr !important; gap: 1.25rem; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .form-footer .btn { width: 100%; justify-content: center; }

  .photo-strip { height: 260px; }
  .section__label { font-size: 0.65rem; }
  .section__title { font-size: 1.75rem; }
}

/* ═══════════════════════════════════════════════════════════════
   PHOTO STRIP
   ═══════════════════════════════════════════════════════════════ */
.photo-strip {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.photo-strip__img-wrap {
  position: relative;
  width: 100%; height: 100%;
}
.photo-strip__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  filter: brightness(0.5) contrast(1.1);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.photo-strip:hover .photo-strip__img { transform: scale(1.04); }
.photo-strip__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.photo-strip__text {
  font-family: var(--font);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.photo-strip__text em {
  display: block; font-style: italic; font-weight: 400;
  color: var(--teal-mid);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT – ZWEITES BILD
   ═══════════════════════════════════════════════════════════════ */
.about__image-secondary-wrap {
  margin-top: 1rem;
}
.about__image-secondary {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  filter: contrast(1.03);
  transition: transform 0.5s ease;
}
.about__image-secondary:hover { transform: scale(1.02); }

/* ═══════════════════════════════════════════════════════════════
   KONTAKTFORMULAR
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--white);
  border-top: 1.5px solid var(--sand-dark);
  padding-top: 3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: clamp(260px, 28%, 320px) 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 640px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-info {
  display: flex; flex-direction: column;
  background: var(--teal);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}
.contact-info__item {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.contact-info__item:first-child { padding-top: 0; }
.contact-info__item:last-of-type { border-bottom: none; }
.contact-info__label {
  font-size: 0.65rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.6);
}
.contact-info__value {
  font-size: 0.875rem; color: var(--white);
  line-height: 1.75; font-weight: 400;
}
a.contact-info__value {
  color: var(--white);
  transition: color 0.2s;
}
a.contact-info__value:hover { color: var(--teal-light); }
.contact-info__cta { padding-top: 1.75rem; }

/* Form */
.contact-form {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.form-group {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.form-label {
  font-family: var(--font);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey-mid);
}
.form-input {
  font-family: var(--font);
  font-size: 0.875rem; font-weight: 400;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  border-radius: 3px;
  padding: 0.875rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--grey); font-style: italic; }
.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}
.form-input:hover:not(:focus) { border-color: var(--sand-deeper); }

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23636363' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1.5px solid var(--sand-dark);
}
.form-hint {
  font-size: 0.75rem; color: var(--grey-mid);
  line-height: 1.65; max-width: 340px; font-style: italic;
}

/* Hours table: stack on very small screens */
@media (max-width: 480px) {
  .hours-table { display: block; }
  .hours-table tbody { display: block; }
  .hours-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--sand-dark);
    gap: 0 0.5rem;
  }
  .hours-table tr:last-child { border-bottom: none; }
  .hours-table th {
    grid-column: 1 / -1; font-weight: 600; font-size: 0.8rem;
    padding: 0 0 0.25rem 0; width: auto;
  }
  .hours-table td { font-size: 0.78rem; padding: 0; color: var(--grey-mid); }
  .hours-table td[colspan="2"] { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════════════════════
   Cookie Banner
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  animation: slideUp 0.35s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-banner[hidden] { display: none; }

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--grey);
}

.cookie-banner__text strong { color: var(--white); font-size: 0.95rem; }

.cookie-banner__text a {
  color: var(--teal-mid);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }

.cookie-btn--primary  { background: var(--teal); color: var(--white); }
.cookie-btn--outline  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }

/* Maps blocked placeholder */
.maps-blocked {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--sand);
  border: 1.5px dashed var(--grey);
  border-radius: 8px;
  height: 240px;
  text-align: center;
  padding: 1.5rem;
  color: var(--grey-mid);
  font-size: 0.85rem;
}

.maps-blocked svg { color: var(--teal); opacity: 0.6; }
.maps-blocked p { margin: 0; max-width: 24ch; }
.btn--teal { background: var(--teal); color: var(--white); }

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    gap: 1rem;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
