/* ============================================================
   PHYSIOGRISCHUN – Stylesheet
   Completely distinct from Küchenwerk Bosshard:
   Cool teal/green palette · DM Serif Display · Solid white nav ·
   Centered hero · Image-top treatment cards · Team section
   ============================================================ */

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

:root {
  --deep:    #1a3d35;
  --primary: #2d7a6a;
  --accent:  #4a9982;
  --light:   #8ec4b8;
  --pale:    #eef6f3;
  --bg:      #f8fbfa;
  --white:   #ffffff;
  --text:    #1e2d2a;
  --muted:   #5a7570;
  --border:  #cde0db;
  --red:     #e53935;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --trans:     0.28s ease;
  --shadow:    0 4px 20px rgba(26,61,53,0.08);
  --shadow-md: 0 8px 40px rgba(26,61,53,0.12);
  --shadow-lg: 0 20px 60px rgba(26,61,53,0.18);
  --max-w:     1180px;

  --topbar-h:  40px;
  --nav-h:     72px;
  --total-h:   calc(var(--topbar-h) + var(--nav-h));

  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--trans); }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-body); font-size: 1rem; }

/* ── Container ──────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Sections ───────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-pale { background: var(--pale); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.section-header h2 { margin-top: 14px; }
.section-header p { margin-top: 16px; color: var(--muted); font-size: 1.02rem; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; font-weight: 400; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); font-size: 0.78rem; }

em { font-style: italic; color: var(--light); }

/* Label pill – distinct from kuechenwerk's uppercase text */
.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,153,130,0.12);
  border: 1px solid rgba(74,153,130,0.25);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.label-light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 100px; /* pill shape – distinct from kuechenwerk's sharp btn */
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,122,106,0.35);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,122,106,0.4); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--pale); transform: translateY(-2px); }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  border-radius: 100px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease calc(var(--d, 0s)), transform 0.6s ease calc(var(--d, 0s));
}
.reveal-fade.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--deep);
  height: var(--topbar-h);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
  position: sticky;
  top: 0;
  z-index: 1001;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-left span, .topbar-right a {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.65);
}
.topbar-left svg, .topbar-right svg { width: 13px; height: 13px; fill: var(--accent); flex-shrink: 0; }
.topbar-sep { color: rgba(255,255,255,0.2); }
.topbar-phone { color: var(--light) !important; font-weight: 600; }
.topbar-right a:hover { color: rgba(255,255,255,0.95); }

/* ============================================================
   NAVIGATION  (solid white from the start – no transparent state)
   ============================================================ */
#navbar {
  position: sticky;
  top: var(--topbar-h);
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 400; color: var(--deep); }
.logo-sub { font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--muted); font-size: 0.88rem; font-weight: 500; padding: 8px 14px; border-radius: 100px; transition: all var(--trans); }
.nav-links a:hover { color: var(--primary); background: var(--pale); }
.nav-links .nav-cta { background: var(--primary); color: var(--white); padding: 10px 22px; margin-left: 8px; }
.nav-links .nav-cta:hover { background: var(--accent); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--deep); border-radius: 2px; transition: all var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ────────────────────────────────────────── */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.45); z-index: 1100; opacity: 0; transition: opacity var(--trans);
}
.mobile-overlay.active { display: block; opacity: 1; }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(320px, 88vw); height: 100%;
  background: var(--white); z-index: 1200; padding: 80px 28px 40px;
  display: flex; flex-direction: column; gap: 28px;
  transition: right 0.38s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { right: 0; }
.mobile-close { position: absolute; top: 18px; right: 18px; font-size: 1.2rem; color: var(--muted); padding: 8px; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu ul a { display: block; padding: 12px 0; font-size: 1.1rem; font-family: var(--font-head); color: var(--deep); border-bottom: 1px solid var(--border); }
.mobile-menu ul a:hover { color: var(--primary); padding-left: 8px; }
.mobile-cta { color: var(--primary) !important; font-weight: 600; }
.mobile-meta { margin-top: auto; font-size: 0.82rem; color: var(--muted); line-height: 2; }

/* ============================================================
   HERO  (full-width, mountain bg, centered text – different from kuechenwerk)
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }

/* Teal gradient overlay – very different from kuechenwerk's near-black */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,61,53,0.88) 0%,
    rgba(45,122,106,0.75) 50%,
    rgba(26,61,53,0.70) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 0;
  max-width: 780px;
  gap: 0;
}
.hero-pill {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-sub {
  color: rgba(255,255,255,0.78); font-size: clamp(1rem,1.8vw,1.12rem);
  max-width: 580px; margin-bottom: 36px; font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  animation: lineGrow 2s ease infinite;
}
@keyframes lineGrow { 0%,100% { height: 32px; opacity: 0.4; } 50% { height: 56px; opacity: 1; } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--deep); padding: 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 16px; gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: background var(--trans);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.04); }
.trust-item strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--light); line-height: 1; }
.trust-item span { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }

/* ============================================================
   BEHANDLUNGEN (treatment cards with image tops)
   ============================================================ */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.treatment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans);
  display: flex; flex-direction: column;
}
.treatment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border); }

.treatment-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--pale);
}
.treatment-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.treatment-card:hover .treatment-img img { transform: scale(1.06); }

.treatment-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.treatment-num {
  font-family: var(--font-head);
  font-size: 0.75rem; color: var(--accent); letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.treatment-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.treatment-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; flex: 1; }
.treatment-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px; font-size: 0.82rem; font-weight: 600;
  color: var(--primary); transition: gap var(--trans);
}
.treatment-link:hover { gap: 8px; color: var(--accent); }

/* ============================================================
   BESCHWERDEN (conditions grid)
   ============================================================ */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.condition-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--trans);
}
.condition-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-3px); }
.condition-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.condition-card h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--text); margin-bottom: 6px; }
.condition-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   CTA MID BANNER (teal bg – distinct from kuechenwerk's dark/gold)
   ============================================================ */
.cta-mid {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 72px 0;
}
.cta-mid-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.cta-mid h2 { color: var(--white); margin-top: 10px; font-size: clamp(1.5rem,3vw,2.2rem); }
.cta-overline { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.cta-mid > .container > div:first-child p { color: rgba(255,255,255,0.75); margin-top: 12px; max-width: 500px; font-size: 1rem; }
.cta-mid-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: 100px;
  padding: 10px 18px; display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
  box-shadow: var(--shadow-md);
}
.about-tag svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.about-content { display: flex; flex-direction: column; gap: 18px; }
.about-content h2 { margin-top: 10px; }
.about-lead { font-size: 1.08rem; color: var(--muted); }
.about-content > p { color: var(--muted); font-size: 0.93rem; }

.about-highlights { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.highlight {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text); font-weight: 500;
}
.highlight svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* ============================================================
   TEAM  (unique to physio – kuechenwerk has no team section)
   ============================================================ */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--trans);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.team-photo { aspect-ratio: 1; overflow: hidden; background: var(--pale); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }

.team-info { padding: 24px 26px 28px; }
.team-info h3 { font-size: 1.25rem; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; font-weight: 500; color: var(--accent); display: block; margin-bottom: 12px; }
.team-info p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tags span {
  font-size: 0.72rem; font-weight: 500;
  background: var(--pale); color: var(--primary);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 4px 12px;
}

/* ============================================================
   TESTIMONIALS (light bg, large quote marks – vs dark bg in kuechenwerk)
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--pale); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all var(--trans); position: relative;
}
.testimonial:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.quote-mark {
  font-family: var(--font-head); font-size: 5rem; line-height: 0.7;
  color: var(--accent); opacity: 0.2;
  position: absolute; top: 20px; left: 22px;
  pointer-events: none;
}
.testimonial > p { color: var(--text); font-size: 0.9rem; line-height: 1.7; font-style: italic; flex: 1; padding-top: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--text); }
.testimonial-author span { font-size: 0.76rem; color: var(--muted); }
.testimonial-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }

/* ============================================================
   TERMIN CTA (deep teal full-bleed section)
   ============================================================ */
.termin-cta { background: var(--deep); padding: 96px 0; }
.termin-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start;
}
.termin-text h2 { color: var(--white); margin: 14px 0 16px; }
.termin-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 440px; }

.termin-contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.termin-link {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500;
  transition: color var(--trans);
}
.termin-link svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.termin-link:hover { color: var(--white); }

/* Termin Form (white card on dark background) */
.termin-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 15px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--white);
  color: var(--text); font-size: 0.9rem;
  transition: border-color var(--trans), box-shadow var(--trans); outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a7570' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,122,106,0.12);
}
.form-group input.error,
.form-group textarea.error { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-disclaimer { margin-top: 10px; font-size: 0.75rem; color: var(--muted); text-align: center; }

.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 40px 16px; gap: 14px; }
.form-success.visible { display: flex; }
.success-check {
  width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
}
.form-success h3 { font-size: 1.4rem; }
.form-success p { color: var(--muted); max-width: 300px; font-size: 0.9rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.kontakt-info { display: flex; flex-direction: column; gap: 28px; }
.kinfo-block h4 { color: var(--primary); margin-bottom: 8px; }
.kinfo-block p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.kinfo-block a { color: var(--primary); font-weight: 500; }
.kinfo-block a:hover { color: var(--accent); }

.kontakt-map {
  height: 440px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.kontakt-map iframe { width: 100%; height: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--deep); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--white); font-size: 1.1rem;
}
.footer-logo strong { font-family: var(--font-head); font-size: 1.15rem; display: block; color: var(--white); line-height: 1.2; }
.footer-logo span { font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.footer-brand > p { color: rgba(255,255,255,0.45); font-size: 0.87rem; line-height: 1.7; }

.footer-col h4 { color: rgba(255,255,255,0.9); font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.45); font-size: 0.87rem; }
.footer-col ul a:hover { color: var(--light); }

.footer-col address { display: flex; flex-direction: column; gap: 8px; }
.footer-col address p, .footer-col address a { color: rgba(255,255,255,0.45); font-size: 0.87rem; line-height: 1.6; }
.footer-col address a:hover { color: var(--light); }
.footer-hours { color: rgba(255,255,255,0.35) !important; font-size: 0.8rem !important; margin-top: 8px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.79rem; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.79rem; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-credit { font-size: 0.76rem; color: rgba(255,255,255,0.22); }
.footer-credit a { color: var(--light); font-weight: 500; }
.footer-credit a:hover { color: var(--accent); }

/* ── Back to Top ────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--primary); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 900; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transition: all var(--trans); transform: translateY(8px);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid .team-card:last-child { grid-column: span 2; max-width: 400px; justify-self: center; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(3n) { border-right: none; }
  .termin-inner { grid-template-columns: 1fr 1.1fr; gap: 48px; }
  .kontakt-grid { grid-template-columns: 1fr 1.4fr; gap: 36px; }
  .cta-mid-inner { flex-direction: column; text-align: center; }
  .cta-mid-inner > div:first-child p { margin: 0 auto; }
  .cta-mid-actions { flex-direction: row; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .topbar { display: none; }
  :root { --nav-h: 64px; --total-h: 64px; }
  #navbar { top: 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .treatments-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid .team-card:last-child { grid-column: auto; max-width: none; }
  .conditions-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap img { aspect-ratio: 16/9; }
  .termin-inner { grid-template-columns: 1fr; gap: 40px; }
  .termin-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-map { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: 1px solid rgba(255,255,255,0.08) !important; }
  .trust-item:nth-child(2n) { border-right: none !important; }
  .trust-item:last-child { grid-column: span 2; border-right: none !important; }
  .cta-mid-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h2 { font-size: 1.9rem; }
  .hero-content h1 { font-size: 2.3rem; }
  .back-to-top { bottom: 16px; right: 16px; }
}
