/* =================================================================
   Praxis Brandt — Physiotherapie & Osteopathie · Ravensburg
   Eigenes Designsystem, distinkt zu Ristorante (Terrakotta) und Zimmerei (Walnuss).
   Farbwelt: Salbei + Off-White + Koralle · Typo: Crimson Pro + DM Sans
   ================================================================= */

/* -----------------------------------------------------------------
   Design-Tokens
   ----------------------------------------------------------------- */
:root {
  /* Farben */
  --sage:        #5C7A6F;
  --sage-deep:   #3D5C4F;
  --sage-soft:   #A8BAB1;
  --sage-pale:   #E8EDE9;
  --coral:       #E27D60;
  --coral-deep:  #C5614A;
  --coral-soft:  #F2C8B9;
  --white:       #FFFFFF;
  --off-white:   #FAFAF7;
  --paper:       #F4F2EC;
  --charcoal:    #1F2421;
  --ink:         #2A2F2B;
  --ink-soft:    #5E635F;
  --line:        #DCDCD2;
  --line-soft:   #ECEBE3;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(31, 36, 33, 0.06);
  --shadow-md:   0 8px 24px rgba(31, 36, 33, 0.10);
  --shadow-lg:   0 24px 60px rgba(31, 36, 33, 0.14);

  /* Typo */
  --serif:    'Crimson Pro', Georgia, 'Times New Roman', serif;
  --sans:     'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 4px;
  --radius:    12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -----------------------------------------------------------------
   Reset + Grundlagen
   ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--sage-deep); text-decoration: none; transition: color 0.18s var(--ease); }
a:hover { color: var(--coral-deep); }
::selection { background: var(--coral); color: var(--white); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--charcoal); color: var(--off-white);
  padding: 12px 18px; z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

/* -----------------------------------------------------------------
   Demo-Banner
   ----------------------------------------------------------------- */
.demo-banner {
  background: var(--charcoal);
  color: var(--off-white);
  border-bottom: 1px solid rgba(226, 125, 96, 0.30);
  font-size: 13px;
}
.demo-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.demo-banner-tag {
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.demo-banner-text { flex: 1; color: rgba(250, 250, 247, 0.88); line-height: 1.5; }
.demo-banner-text a { color: var(--coral-soft); font-weight: 500; text-decoration: underline; }
.demo-banner-text a:hover { color: var(--off-white); }

/* -----------------------------------------------------------------
   Header — Floating Glass-Pill (zentriert, schwebt oben)
   ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 20px;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  margin: 20px 0 -82px;          /* hängt sich in den Hero rein */
  pointer-events: none;          /* nur die Pille reagiert */
}
.header-inner {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 22px;
  background: rgba(250, 250, 247, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(31, 36, 33, 0.08);
  border-radius: var(--radius-pill);
  box-shadow:
    0 4px 16px rgba(31, 36, 33, 0.06),
    0 16px 40px rgba(31, 36, 33, 0.08);
  transition: box-shadow 0.25s var(--ease);
  max-width: calc(100vw - 32px);
}
.header-inner:hover {
  box-shadow:
    0 6px 20px rgba(31, 36, 33, 0.08),
    0 20px 50px rgba(31, 36, 33, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
  white-space: nowrap;
}
.brand-mark {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--sage);
}
.brand-text { line-height: 1.05; }
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  display: block;
}
.brand-sub {
  display: none;     /* in der Pille ausgeblendet — Platz */
}

/* Trennstrich zwischen Brand und Nav */
.header-divider {
  width: 1px;
  height: 22px;
  background: rgba(31, 36, 33, 0.14);
  margin: 0 6px;
  flex: none;
}

.main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav a {
  display: inline-block;
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.005em;
  border-radius: var(--radius-pill);
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.main-nav a:hover {
  color: var(--charcoal);
  background: rgba(92, 122, 111, 0.10);
}
.header-cta {
  display: flex;
  gap: 6px;
  align-items: center;
}
.header-cta .btn {
  padding: 10px 18px;
  font-size: 13px;
}
.header-phone {
  display: none;     /* in Pille zu viel — Telefon prominent im Termin-Bereich */
}

/* Tablet/Mobile: Pille wird kompakter, Nav versteckt */
@media (max-width: 880px) {
  .main-nav { display: none; }
  .header-inner { padding: 6px 6px 6px 18px; gap: 4px; }
  .header-inner::after {     /* dekorative Drei-Punkte-Anzeige */
    content: "···";
    color: var(--ink-soft);
    letter-spacing: 2px;
    padding: 0 10px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .site-header { top: 12px; margin: 12px 0 -68px; padding: 0 12px; }
  .brand-name { font-size: 15px; }
  .header-inner::after { display: none; }
}

/* -----------------------------------------------------------------
   BTN
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(226, 125, 96, 0.30);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--charcoal);
}
.btn-ghost:hover {
  background: var(--sage-pale);
  border-color: var(--sage);
  color: var(--charcoal);
}
.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover {
  background: var(--sage-deep);
  color: var(--white);
}

/* -----------------------------------------------------------------
   HERO — Centered with Image-Trio
   ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 120px 24px 120px;     /* extra Top-Padding, da Header reinhängt */
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, var(--sage-pale) 0%, var(--off-white) 70%);
  overflow: hidden;
  text-align: center;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(168, 186, 177, 0.20);
  border: 1px solid rgba(92, 122, 111, 0.18);
  border-radius: var(--radius-pill);
}
.hero-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  color: var(--sage-deep);
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 40px;
  text-wrap: balance;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Image-Trio — geometrisch versetzt */
.hero-trio {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.hero-trio-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--sage-pale);
}
.hero-trio-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-trio-img-1 { aspect-ratio: 3 / 4; transform: translateY(20px); }
.hero-trio-img-2 { aspect-ratio: 4 / 5; transform: translateY(-20px); box-shadow: var(--shadow-lg); }
.hero-trio-img-3 { aspect-ratio: 3 / 4; transform: translateY(40px); }

.hero-meta {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.hero-meta-item .num {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  color: var(--sage-deep);
  line-height: 1;
}
.hero-meta-item .label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

@media (max-width: 880px) {
  .hero { padding: 56px 20px 80px; }
  .hero-cta { margin-bottom: 56px; }
  .hero-trio { grid-template-columns: 1fr 1fr; }
  .hero-trio-img-3 { display: none; }
  .hero-trio-img-1, .hero-trio-img-2 { transform: none; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  .hero-trio { grid-template-columns: 1fr; }
  .hero-trio-img-1, .hero-trio-img-2 { transform: none; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

/* -----------------------------------------------------------------
   Generic Sektion-Header
   ----------------------------------------------------------------- */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 112px 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--coral);
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 0 0 24px;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--sage-deep); }
.section-intro {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 56px;
}
.section-header.center { text-align: center; }
.section-header.center .section-intro,
.section-header.center .eyebrow { margin-left: auto; margin-right: auto; }

/* -----------------------------------------------------------------
   WILLKOMMEN
   ----------------------------------------------------------------- */
.welcome {
  background: var(--off-white);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-text p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: var(--ink);
}
.welcome-text p.lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.welcome-signature {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 20px;
  color: var(--sage-deep);
  font-style: italic;
}
.welcome-signature small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
  font-style: normal;
}
.welcome-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.welcome-photo img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}
.welcome-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(31, 36, 33, 0.78);
  color: var(--off-white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

@media (max-width: 880px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* -----------------------------------------------------------------
   LEISTUNGEN — 6-Karten-Grid
   ----------------------------------------------------------------- */
.services {
  background: var(--sage-pale);
  padding-top: 112px;
  padding-bottom: 112px;
  max-width: none;
  margin: 0;
}
.services-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  border: 1px solid var(--line-soft);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-image img { transform: scale(1.04); }
.service-body { padding: 24px; }
.service-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--charcoal);
  margin: 0 0 8px;
  line-height: 1.15;
}
.service-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.service-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 3px;
  background: var(--sage-pale);
  color: var(--sage-deep);
}
.service-tag.privat { background: var(--coral-soft); color: var(--coral-deep); }

@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------------
   TEAM — Karten mit Initialen
   ----------------------------------------------------------------- */
.team {
  background: var(--off-white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.member {
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: border-color 0.25s var(--ease);
}
.member:hover { border-color: var(--sage); }
.member-pic {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
}
.member-pic.coral { background: var(--coral-soft); color: var(--coral-deep); }
.member-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.member-role {
  font-size: 12px;
  color: var(--sage-deep);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.member-spec {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr 1fr; } }

/* -----------------------------------------------------------------
   ABLAUF — 3-Schritte
   ----------------------------------------------------------------- */
.steps {
  background: var(--paper);
  padding-top: 112px;
  padding-bottom: 112px;
  max-width: none;
}
.steps-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step {
  text-align: left;
}
.step-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 20px;
  background: var(--sage-pale);
}
.step-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.step-number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-block;
  padding: 4px 12px;
  background: var(--coral-soft);
  border-radius: 4px;
  margin-bottom: 12px;
}
.step-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--charcoal);
  margin: 0 0 8px;
  line-height: 1.15;
}
.step-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------------
   TERMIN — CTA-Sektion mit Mock-Widget
   ----------------------------------------------------------------- */
.booking {
  background: var(--sage-deep);
  color: var(--off-white);
  padding-top: 112px;
  padding-bottom: 112px;
  max-width: none;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse, rgba(226, 125, 96, 0.20) 0%, transparent 70%);
}
.booking-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.booking .eyebrow { color: var(--coral-soft); }
.booking .eyebrow::before { background: var(--coral); }
.booking .section-title { color: var(--off-white); margin: 0 0 20px; }
.booking .section-title em { color: var(--coral-soft); }
.booking-text p {
  color: rgba(250, 250, 247, 0.82);
  line-height: 1.7;
  font-size: 17px;
  margin: 0 0 24px;
}
.booking-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.booking-channel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(250, 250, 247, 0.08);
  border: 1px solid rgba(250, 250, 247, 0.20);
  border-radius: var(--radius-pill);
  color: var(--off-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.booking-channel:hover { background: rgba(250, 250, 247, 0.14); color: var(--off-white); }
.booking-channel svg { width: 18px; height: 18px; color: var(--coral-soft); flex: none; }

/* Mock booking widget */
.booking-widget {
  background: var(--off-white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.booking-widget h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--charcoal);
  margin: 0 0 8px;
}
.booking-widget p.small {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.booking-widget .field {
  display: block;
  margin-bottom: 14px;
}
.booking-widget label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 6px;
  display: block;
}
.booking-widget select,
.booking-widget input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
}
.booking-widget select:focus,
.booking-widget input:focus {
  outline: none;
  border-color: var(--sage);
}
.booking-widget .slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.booking-widget .slot {
  text-align: center;
  padding: 9px 4px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  color: var(--charcoal);
  transition: all 0.18s var(--ease);
}
.booking-widget .slot:hover { border-color: var(--sage); background: var(--sage-pale); }
.booking-widget .slot.taken { color: var(--ink-soft); background: var(--paper); cursor: not-allowed; text-decoration: line-through; }
.booking-widget .slot.selected { background: var(--coral); border-color: var(--coral); color: var(--white); }
.booking-widget .booking-submit { margin-top: 20px; width: 100%; }

@media (max-width: 880px) {
  .booking-wrap { grid-template-columns: 1fr; gap: 48px; }
}

/* -----------------------------------------------------------------
   TESTIMONIALS
   ----------------------------------------------------------------- */
.testimonials {
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--coral);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0 0 24px;
  flex: 1;
}
.testimonial-text::before { content: "„"; color: var(--coral); }
.testimonial-text::after  { content: "\201C"; color: var(--coral); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}
.testimonial-author-pic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  flex: none;
}
.testimonial-author strong {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 1px;
}

.testimonials-google {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.testimonials-google strong { color: var(--coral-deep); font-weight: 600; }

@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------- */
.faq {
  background: var(--paper);
  padding-top: 112px;
  padding-bottom: 112px;
  max-width: none;
}
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--charcoal);
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  font-size: 30px;
  line-height: 1;
  color: var(--sage);
  transition: transform 0.2s var(--ease);
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--sage-deep); }
.faq-answer {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 75ch;
}

/* -----------------------------------------------------------------
   ANFAHRT
   ----------------------------------------------------------------- */
.contact {
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-info p { line-height: 1.7; margin: 0 0 18px; }
.contact-info h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--charcoal);
  margin: 28px 0 8px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-address {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  font-style: normal;
  margin-bottom: 16px;
}
.contact-address strong { color: var(--charcoal); display: block; }
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-feature-settings: "tnum";
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--ink-soft); font-weight: 500; }
.hours-list .time { color: var(--charcoal); }
.hours-list .closed { color: var(--ink-soft); font-style: italic; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5;
  background: var(--sage-pale);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { aspect-ratio: 16 / 10; }
}

/* -----------------------------------------------------------------
   FOOTER
   ----------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(250, 250, 247, 0.72);
  padding: 56px 24px 28px;
  font-size: 14px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .brand-name { color: var(--off-white); }
.footer-brand .brand-sub { color: var(--coral-soft); }
.footer-brand p {
  margin: 14px 0 0;
  line-height: 1.6;
  font-size: 13px;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--off-white);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(250, 250, 247, 0.72); }
.footer-col a:hover { color: var(--coral-soft); }
.footer-bottom {
  border-top: 1px solid rgba(250, 250, 247, 0.10);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-demo {
  background: rgba(226, 125, 96, 0.18);
  border: 1px solid rgba(226, 125, 96, 0.35);
  color: var(--coral-soft);
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 12px;
}
.footer-demo strong { color: var(--off-white); font-weight: 700; }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* -----------------------------------------------------------------
   Reduced Motion
   ----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
