/* ─────────────────────────────────────────────────────────────────────────────
   Physiotherapie Nebel · styles.css
   Alle Styles, CSS-Variablen & Breakpoints
   → Farben & Fonts hier anpassen, nicht in index.html
───────────────────────────────────────────────────────────────────────────── */

/* ─── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  /* ── Basis: Weiß & Schwarz ── */
  --color-bg:       #ffffff;
  --color-surface:  #ffffff;
  --color-surface-2:#f6f6f6;   /* neutrales Hellgrau für abwechselnde Sektionen */
  --color-border:   #e2e2e2;   /* neutrales Grau für Rahmen */
  --color-heading:  #111111;   /* fast Schwarz */
  --color-text:     #444444;   /* dunkles Grau */
  --color-text-sec: #595959;   /* Grau – 7.0:1 Kontrast auf Weiß ✓ */

  /* ── Akzent: nur #92c557 Grün ── */
  --accent-1:    #92c557;   /* Primär – Buttons, Streifen, Highlights */
  --accent-2:    #79a841;   /* Hover auf grünen Flächen */
  --accent-3:    #eef8dd;   /* Sehr hell – nur für Icon-Backgrounds */
  --accent-text: #3a6412;   /* Dunkles Grün für Text auf hellem BG (5.8:1 ✓) */
  --accent-dark: #111111;   /* Schwarz für Hero & Footer */
  --accent-mint: #c4e882;   /* Helles Grün für Hero-Highlights auf Schwarz */

  /* Fonts */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  /* Abstände & Radien */
  --radius-sm:  0.5rem;
  --radius:     1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2.5rem;
  --max-w:      1200px;
  --section-py: 6rem;

  /* Schatten – neutral, kein Grün-Stich */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utility ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section     { padding-block: var(--section-py); }
.section--alt { background: var(--color-surface); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text); /* Dunkleres Grün: 5.8:1 Kontrast auf hellem BG ✓ */
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--accent-1); /* Linie darf das helle Grün sein – dekorativ */
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-heading);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title--light { color: #fff; }
.section-lead {
  font-size: 1.1rem;
  color: var(--color-text-sec);
  max-width: 560px;
  line-height: 1.7;
}
.section-lead--light { color: rgba(255,255,255,0.75); }
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-lead,
.section-header--center .eyebrow { margin-inline: auto; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  min-height: 44px;
}
/* Primär-Button: #92c557 ist zu hell für Weiß → dunkler Text (#1A2F08 = 7.5:1 ✓) */
.btn-primary  { background: var(--accent-1); color: var(--color-heading); border-color: var(--accent-1); }
/* Outline-Button: grüner Rahmen + grüner Text → --accent-text für Kontrast ✓ */
.btn-outline  { background: transparent; color: var(--accent-text); border-color: var(--accent-1); }
/* Weiß-Button im Hero (auf dunkel): Grün-Text = --accent-text ✓ */
.btn-white    { background: #fff; color: var(--accent-text); border-color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }

@media (hover: hover) {
  .btn-primary:hover       { background: var(--accent-2); color: #fff; border-color: var(--accent-2); transform: translateY(-1px); box-shadow: var(--shadow); }
  .btn-outline:hover       { background: var(--accent-1); color: var(--color-heading); transform: translateY(-1px); }
  .btn-white:hover         { background: var(--accent-3); transform: translateY(-1px); }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.25rem;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}

/* Nav über Hero-Bild: Text & Icons müssen auf dunkel sichtbar sein */
.nav:not(.scrolled) .nav-logo-name        { color: #ffffff; }
.nav:not(.scrolled) .nav-logo-sub         { color: var(--accent-mint); }
.nav:not(.scrolled) .nav-links a          { color: rgba(255,255,255,0.85); }
.nav:not(.scrolled) .nav-links a:hover,
.nav:not(.scrolled) .nav-links a.active   { color: #fff; background: rgba(255,255,255,0.12); }
.nav:not(.scrolled) .hamburger span       { background: #ffffff; }
.nav:not(.scrolled) #nav-phone            { color: rgba(255,255,255,0.85); }
.nav:not(.scrolled) #nav-cta-btn.btn-primary {
  background: var(--accent-1);
  color: var(--color-heading);    /* #111 auf #92c557 = 10:1 ✓ */
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-heading);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 600;
  margin-top: 0.1rem;
}
.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s, background 0.2s;
}
.nav-links a.active,
.nav-links a:hover { color: var(--accent-text); background: var(--accent-3); }
.nav-cta { display: none; align-items: center; gap: 1rem; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--color-surface);
  display: flex; flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 0.5rem;
  opacity: 0; pointer-events: none;
  transform: translateY(-1rem);
  transition: all 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-menu a {
  display: block; padding: 0.875rem 1.25rem;
  font-size: 1.15rem; font-weight: 500;
  color: var(--color-heading);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.mobile-menu a:hover { background: var(--color-surface-2); }
.mobile-menu .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #111111 0%, #0d0d0d 100%);
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 40%, rgba(146,197,87,.12) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 20% 80%, rgba(146,197,87,.06) 0%, transparent 55%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
  padding-block: 4rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-mint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.6; transform:scale(1.3); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: #fff; line-height: 1.1;
  margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--accent-mint); }
.hero-lead {
  font-size: 1.1rem; color: rgba(255,255,255,.75);
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 3rem; }
.hero-stats   { display: flex; flex-wrap: wrap; gap: 2rem; }
.hero-stat    { display: flex; flex-direction: column; }
.hero-stat-number { font-family: var(--font-heading); font-size: 1.75rem; color: #fff; line-height: 1; }
.hero-stat-label  { font-size: 0.78rem; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: 0.05em; margin-top: 0.25rem; }

/* Hero card */
.hero-visual { display: none; justify-content: flex-end; }
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2rem; width: 100%; max-width: 380px;
}
.hero-card-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-card-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-mint), var(--accent-1));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.3rem; color: #fff; flex-shrink: 0;
}
.hero-card-name   { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; }
.hero-card-role   { font-size: 0.78rem; color: rgba(255,255,255,.6); margin-top: 0.15rem; }
.hero-card-services { display: flex; flex-direction: column; gap: 0.75rem; }
.hero-card-service  {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,.85); font-size: 0.88rem; font-weight: 500;
}
.hero-card-service-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-mint); flex-shrink: 0; }
.hero-card-badge {
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-card-badge-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(94,234,212,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hero-card-badge-text { font-size: 0.8rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.hero-card-badge-text strong { color: var(--accent-mint); display: block; font-weight: 600; }

/* ─── Values Strip ───────────────────────────────────────────────────────── */
/* #92c557 BG + #1A2F08 Text = 7.5:1 Kontrast ✓ */
.values-strip { background: var(--accent-1); padding-block: 1.75rem; }
.values-grid  {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.5rem 2rem;
}
.value-item {
  display: flex; align-items: center; gap: 0.625rem;
  color: var(--color-heading); font-size: 0.88rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.value-divider { color: rgba(30,51,8,.35); font-size: 1.2rem; }

/* ─── Services ───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-mint));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .service-card:hover { border-color: var(--accent-1); box-shadow: var(--shadow); transform: translateY(-3px); }
  .service-card:hover::after { transform: scaleX(1); }
}
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--accent-3); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
}
.service-name { font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-heading); margin-bottom: 0.5rem; line-height: 1.3; }
.service-desc { font-size: 0.875rem; color: var(--color-text-sec); line-height: 1.65; }
.service-card--hidden { display: none; }
.services-toggle-wrap { text-align: center; margin-top: 2rem; }
.services-toggle { margin-inline: auto; }

/* ─── About ──────────────────────────────────────────────────────────────── */
.about-grid    { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.about-image-box {
  background: linear-gradient(135deg, var(--color-surface-2), var(--accent-3));
  border-radius: var(--radius-lg); aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-image-placeholder { text-align: center; color: var(--color-text-sec); }
.about-image-placeholder .icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.about-image-placeholder p { font-size: 0.85rem; opacity: 0.6; }
.about-badge {
  position: absolute; bottom: 1.5rem; right: -1rem;
  background: var(--color-surface); border-radius: var(--radius);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.75rem;
}
.about-badge-icon { font-size: 1.5rem; }
.about-badge-text { font-size: 0.78rem; color: var(--color-text-sec); line-height: 1.4; }
.about-badge-text strong { display: block; color: var(--color-heading); font-size: 0.95rem; }
.about-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.about-feature  { display: flex; align-items: flex-start; gap: 1rem; }
.about-feature-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--accent-3); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem;
}
.about-feature-title { font-weight: 600; color: var(--color-heading); font-size: 0.95rem; margin-bottom: 0.25rem; }
.about-feature-desc  { font-size: 0.85rem; color: var(--color-text-sec); line-height: 1.6; }

/* ─── Wellness ───────────────────────────────────────────────────────────── */
.wellness-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
.wellness-right-col { display: flex; flex-direction: column; gap: 1.25rem; }

.wellness-img-box { border-radius: var(--radius-lg); overflow: hidden; line-height: 0; }
.wellness-img { width: 100%; height: 240px; object-fit: cover; display: block; border-radius: var(--radius-lg); }

.wellness-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.wellness-card {
  background: var(--color-surface-2); border-radius: var(--radius);
  padding: 1rem 0.875rem; text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.25s ease;
}
@media (hover: hover) {
  .wellness-card:hover { border-color: var(--accent-1); background: var(--accent-3); }
}
.wellness-card-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.wellness-card-name { font-size: 0.82rem; font-weight: 600; color: var(--color-heading); line-height: 1.3; }

/* ─── Hours Banner ───────────────────────────────────────────────────────── */
.hours-banner {
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; align-items: center;
}
.hours-group  { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-label  { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-text); }
.hours-time   { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-heading); }
.hours-divider { height: 3rem; width: 1px; background: var(--color-border); }

/* ─── Contact ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: var(--color-surface);
  border-radius: var(--radius); border: 1px solid var(--color-border);
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--accent-3); display: flex; align-items: center;
  justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.contact-item-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 0.2rem; }
.contact-item-value { font-size: 0.95rem; color: var(--color-heading); font-weight: 500; }
.contact-item-value a { transition: color 0.2s; }
.contact-item-value a:hover { color: var(--accent-text); }

/* Contact Form */
.contact-form {
  background: var(--color-surface); border-radius: var(--radius-lg);
  padding: 2.5rem; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
}
.form-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-heading); margin-bottom: 0.5rem; }
.form-lead  { font-size: 0.875rem; color: var(--color-text-sec); margin-bottom: 1.75rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--color-text); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--color-bg); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 1rem; /* verhindert iOS-Zoom */
  color: var(--color-heading); transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 44px;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(146,197,87,.22);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit   { width: 100%; margin-top: 1.5rem; justify-content: center; font-size: 1rem; padding: 1rem; }
.form-note     { text-align: center; font-size: 0.75rem; color: var(--color-text-sec); margin-top: 0.75rem; }
.form-error    { color: #dc2626; font-size: 0.85rem; margin-top: 0.75rem; text-align: center; }
.form-success  { display: none; text-align: center; padding: 2rem; }
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.form-success h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-heading); margin-bottom: 0.5rem; }
.form-success p  { font-size: 0.9rem; color: var(--color-text-sec); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer { background: var(--accent-dark); color: rgba(255,255,255,.8); padding-block: 3rem 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand-name { font-family: var(--font-heading); font-size: 1.3rem; color: #fff; margin-bottom: 0.25rem; }
.footer-brand-sub  { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-mint); font-weight: 600; }
.footer-brand-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,.75); margin-top: 1rem; max-width: 280px; }
.footer-col-title  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-mint); margin-bottom: 1rem; }
.footer-links      { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-links li { font-size: 0.88rem; color: rgba(255,255,255,.8); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: space-between; align-items: center;
}
.footer-copy  { font-size: 0.78rem; color: rgba(255,255,255,.6); }  /* 6.5:1 auf #111 ✓ */
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,.6); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,.9); }

/* ─── Scroll to top ──────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-1); color: var(--color-heading); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(1rem);
  transition: all 0.3s ease; pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
@media (hover: hover) { .scroll-top:hover { background: var(--accent-2); } }

/* ─── Animations ─────────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ─── Responsive Breakpoints ─────────────────────────────────────────────── */

/* 1280px – Großer Desktop */
@media (min-width: 1280px) {
  .container { padding-inline: 3rem; }
  :root { --section-py: 7rem; }
}

/* 1024px – Laptop */
@media (min-width: 1024px) {
  :root { --section-py: 6rem; }
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .hamburger { display: none; }
}

/* 900px – Tablet Landscape / kleines Desktop */
@media (min-width: 900px) {
  .hero-grid        { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-visual      { display: flex; }
  .about-grid       { grid-template-columns: 1fr 1fr; }
  .about-badge      { right: -2rem; }
  .wellness-grid    { grid-template-columns: 1fr 1fr; align-items: start; }
  .contact-grid     { grid-template-columns: 1fr 1.4fr; gap: 4rem; }
  .footer-grid      { grid-template-columns: 2fr 1fr 1fr; }
}

/* 768px – Tablet */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  :root { --section-py: 4.5rem; }
}

/* 640px – Mobile L */
@media (max-width: 640px) {
  .hours-banner { flex-direction: column; }
  .hours-divider { display: none; }
  .value-divider { display: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* 640px – Footer 2-spaltig */
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* 375px – iPhone SE */
@media (max-width: 375px) {
  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .wellness-features { grid-template-columns: 1fr; }
  :root { --section-py: 3.5rem; }
  .container { padding-inline: 1rem; }
}

/* ─── About: echtes Bild ─────────────────────────────────────────────────── */
.about-image-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ─── Galerie ────────────────────────────────────────────────────────────── */
.gallery-section { background: var(--color-bg); }

/* Standard: 3 Bilder (1 groß + 2 gestapelt) */
.gallery-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.875rem;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-grid .gallery-item:first-child { grid-row: 1 / 3; }

/* 6 Bilder: 2 Zeilen à 3 Spalten */
.gallery-grid--6 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  height: auto;
}
.gallery-grid--6 .gallery-item:first-child { grid-row: unset; }

/* 8 Bilder: 2 Zeilen à 4 Spalten */
.gallery-grid--8 {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  height: auto;
}
.gallery-grid--8 .gallery-item:first-child { grid-row: unset; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
@media (hover: hover) {
  .gallery-item:hover img { transform: scale(1.06); }
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,47,8,0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: flex-end;
  padding: 1.25rem;
}
@media (hover: hover) {
  .gallery-item:hover .gallery-item-overlay { opacity: 1; }
}
.gallery-item-label {
  color: #fff; font-size: 0.88rem; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Tablet */
@media (max-width: 768px) {
  .gallery-grid,
  .gallery-grid--6,
  .gallery-grid--8 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
    height: auto;
  }
  .gallery-grid .gallery-item:first-child,
  .gallery-grid--6 .gallery-item:first-child,
  .gallery-grid--8 .gallery-item:first-child { grid-row: unset; }
  .gallery-item { aspect-ratio: 4/3; }
}

/* Mobile */
@media (max-width: 480px) {
  .gallery-grid,
  .gallery-grid--6,
  .gallery-grid--8 { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 16/9; }
}

/* ─── Hero: Hintergrundbild ──────────────────────────────────────────────── */
.hero { background-size: cover; background-position: center; }
