/* ═══════════════════════════════════════
   Bewegte Felle – Tierphysiotherapie
   Design: warm grün/sand, ildes.digital
═══════════════════════════════════════ */

/* ── CSS VARS ── */
:root {
  --gruen-dunkel: #1e3a0f;
  --gruen:        #3d6b22;
  --gruen-hell:   #f0f5e8;
  --sand:         #c19a6b;
  --sand-hell:    #f5efe6;
  --off-white:    #faf9f7;
  --text:         #2c2c2c;
  --text-grau:    #666;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.72;
  color: #2c2c2c;
  background: #faf9f7;
}

/* ── DEMO BADGE (scrolls with page) ── */
.demo-badge {
  background: #c19a6b;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════
   HEADER / NAVBAR  (sticky, compact)
══════════════════════════════════════ */
header {
  background: linear-gradient(135deg, #1e3a0f, #3d6b22);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

header .container {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo link + image */
header .container > a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo, header img.logo {
  height: 44px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 3px 8px;
  display: block;
}

/* Nav links – inside header, NO own background */
header nav {
  background: transparent !important;
  position: static !important;
  box-shadow: none !important;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  flex: 1;
  padding: 0;
  justify-content: flex-start;
}

header nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.87em;
  font-weight: 500;
  white-space: nowrap;
  border-right: none !important;
  transition: background 0.2s, color 0.2s;
}

header nav a:hover,
header nav a.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6em;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  margin-left: auto;
  flex-shrink: 0;
}

/* ── CONTAINER ── */
.container { max-width: 1060px; margin: 0 auto; }

/* ══════════════════════════════════════
   PAGE BANNER (below header on subpages)
══════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, #2d5016, #4a7c2c);
  color: #fff;
  padding: 55px 20px;
  text-align: center;
}
.page-banner h1 { font-size: 2.3em; font-weight: 700; margin-bottom: 10px; color: #fff; }
.page-banner p  { font-size: 1.1em; color: rgba(255,255,255,0.95); }

/* ── PAGE CONTENT wrapper ── */
.page-content { padding: 55px 20px; }

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
h2 {
  font-size: 2em;
  color: #1e3a0f;
  margin-bottom: 16px;
  padding-bottom: 14px;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 3px;
  background: linear-gradient(90deg, #3d6b22, #c19a6b);
  border-radius: 2px;
}
h2.center { text-align: center; }
h2.center::after { left: 50%; transform: translateX(-50%); }

h3 { color: #3d6b22; font-size: 1.2em; margin-bottom: 10px; }
p  { color: #3d3d3d; margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }

.lead { color: #4a4a4a; font-size: 1.05em; margin-bottom: 32px; }

/* ══════════════════════════════════════
   INDEX / HOMEPAGE
══════════════════════════════════════ */
.section { padding: 60px 20px; }
.section.alt { background: #fff; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-text p { color: #444; margin-bottom: 14px; }
.hero-img img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* Home quote banner */
.quote-banner {
  background: linear-gradient(135deg, #2d5016, #4a7c2c);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.quote-banner blockquote {
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 14px;
  font-weight: 300;
}
.quote-banner cite { font-size: 0.9em; opacity: 0.75; font-style: normal; }

/* Treatment cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.card {
  background: #fff;
  border-radius: 10px;
  border-top: 4px solid #3d6b22;
  padding: 26px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 10px 24px rgba(0,0,0,0.11); border-top-color: #c19a6b; }
.card h3 { color: #1e3a0f; margin-bottom: 8px; font-size: 1.1em; }
.card p  { color: #4a4a4a; font-size: 0.94em; }
.card a  { display: inline-block; margin-top: 14px; color: #3d6b22; font-weight: 600; text-decoration: none; font-size: 0.9em; }
.card a:hover { color: #c19a6b; }

/* Gallery strip – Featured Layout (1 groß links, 4 klein rechts, 3 unten) */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
  margin-top: 24px;
}
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}
.gallery-strip img:first-child {
  grid-row: span 2;          /* erstes Bild: doppelt so hoch */
  border-radius: 11px;
}
.gallery-strip img:hover { transform: scale(1.03); opacity: 0.9; }

@media (max-width: 600px) {
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-strip img { height: 140px; }
  .gallery-strip img:first-child { grid-row: span 1; }
}

/* ══════════════════════════════════════
   BEHANDLUNGEN
══════════════════════════════════════ */
.anchor-nav {
  background: #fff;
  border-radius: 10px;
  padding: 22px 28px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  margin-bottom: 38px;
}
.anchor-nav h3 { color: #2d5016; margin-bottom: 10px; font-size: 1em; }
.anchor-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 18px; }
.anchor-nav a  { color: #3d6b22; text-decoration: none; font-weight: 600; font-size: 0.9em; }
.anchor-nav a:hover { color: #c19a6b; text-decoration: underline; }

.behandlung-detail {
  background: #fff;
  border-radius: 10px;
  padding: 34px;
  margin-bottom: 26px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  border-top: 5px solid #3d6b22;
}
.behandlung-detail h3 { color: #1e3a0f; font-size: 1.55em; margin-bottom: 12px; border-bottom: 2px solid #f0f5e8; padding-bottom: 12px; }
.behandlung-detail p  { color: #444; margin-bottom: 13px; }
.behandlung-detail h4 { color: #3d6b22; font-size: 0.9em; margin: 16px 0 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.ind-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.ind-box  { background: #faf9f7; border-radius: 8px; padding: 16px; }
.ind-box h5 { font-size: 0.85em; color: #3d6b22; margin-bottom: 8px; font-weight: 700; }
.ind-box ul { padding-left: 16px; color: #444; font-size: 0.92em; line-height: 1.9; }

.hinweis {
  background: #fff8e8;
  border-left: 4px solid #c19a6b;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.91em;
  color: #5a4a2a;
  margin-top: 14px;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   ÜBER MICH
══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: start;
}
.about-img img { width: 100%; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); margin-bottom: 16px; }
.badge-box { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.badge-box img { max-height: 64px; width: auto; }
.about-text h3  { color: #3d6b22; margin: 20px 0 8px; }
.about-text p   { color: #444; margin-bottom: 12px; }

.qual-list { list-style: none; padding-left: 0; margin: 0 0 16px; }
.qual-list li { color: #444; margin-bottom: 5px; padding-left: 22px; position: relative; }
.qual-list li::before { content: "✓"; position: absolute; left: 0; color: #3d6b22; font-weight: 700; }

.quote-block {
  background: #f0f5e8;
  border-left: 4px solid #3d6b22;
  padding: 16px 20px;
  border-radius: 6px;
  font-style: italic;
  color: #3d6b22;
  margin: 16px 0;
}

/* ══════════════════════════════════════
   GALERIE
══════════════════════════════════════ */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
  margin-bottom: 40px;
}
.galerie-grid img {
  width: 100%; height: 175px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
  cursor: zoom-in;
}
.galerie-grid img:hover { transform: scale(1.04); }

/* ══════════════════════════════════════
   PREISE
══════════════════════════════════════ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  margin-top: 28px;
}
.price-table th { background: #1e3a0f; color: #fff; padding: 16px 20px; text-align: left; }
.price-table td { padding: 15px 20px; border-bottom: 1px solid #e8e0d5; color: #444; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: #faf9f7; }
.price { color: #3d6b22; font-weight: 700; font-size: 1.08em; white-space: nowrap; }

.price-note {
  background: #f0f5e8;
  border-left: 4px solid #3d6b22;
  padding: 18px 22px;
  border-radius: 6px;
  margin-top: 22px;
  color: #444;
  font-size: 0.96em;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   ÖFFNUNGSZEITEN
══════════════════════════════════════ */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.hour-card {
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #3d6b22;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.hour-card strong { display: block; color: #1e3a0f; margin-bottom: 6px; font-size: 1em; }
.hour-card p { color: #4a4a4a; font-size: 0.95em; margin: 0; }

/* ══════════════════════════════════════
   KONTAKT
══════════════════════════════════════ */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 28px; }

.form-box, .info-box {
  background: #fff;
  padding: 34px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}
.form-box h3, .info-box h3 { color: #1e3a0f; margin-bottom: 20px; font-size: 1.15em; }

.form-group { margin-bottom: 17px; }
label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.93em; color: #333; }

input, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d5c9bb;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1em;
  background: #faf9f7;
  transition: border-color 0.2s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #3d6b22;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61,107,34,0.1);
}
textarea { min-height: 110px; resize: vertical; }

.btn {
  background: linear-gradient(135deg, #3d6b22, #1e3a0f);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.9; }

.info-item { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid #e8e0d5; }
.info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-item strong { display: block; color: #3d6b22; margin-bottom: 5px; font-size: 0.92em; text-transform: uppercase; letter-spacing: 0.04em; }
.info-item a { color: #3d6b22; text-decoration: none; font-weight: 600; }
.info-item a:hover { color: #c19a6b; }

.social { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.social a {
  background: #f0f5e8;
  color: #3d6b22;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88em;
  transition: background 0.2s, color 0.2s;
}
.social a:hover { background: #3d6b22; color: #fff; }

/* ══════════════════════════════════════
   NETZWERK
══════════════════════════════════════ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.partner-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  text-decoration: none;
  color: #333;
  border-top: 3px solid #3d6b22;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s, border-top-color 0.25s;
}
.partner-card:hover { transform: translateY(-5px); border-top-color: #c19a6b; }
.partner-card img { max-height: 60px; max-width: 140px; object-fit: contain; }
.partner-card span { display: block; font-size: 0.85em; font-weight: 600; color: #3d6b22; line-height: 1.4; }
.p-icon { font-size: 2em; }

/* ══════════════════════════════════════
   AGB
══════════════════════════════════════ */
.agb-block { margin-bottom: 30px; }
.agb-block h3 {
  color: #1e3a0f;
  margin-bottom: 10px;
  font-size: 1.1em;
  border-left: 4px solid #3d6b22;
  padding-left: 12px;
}
.agb-block p { color: #444; margin-bottom: 10px; font-size: 0.96em; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #1e3a0f;
  color: rgba(255,255,255,0.85);
  padding: 48px 20px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto 32px;
}
.footer-grid strong { display: block; color: #fff; margin-bottom: 10px; font-size: 1em; }
.footer-grid p   { font-size: 0.88em; color: rgba(255,255,255,0.72); margin-bottom: 5px; }
.footer-grid a   { color: #c19a6b; text-decoration: none; }
.footer-grid a:hover { opacity: 0.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82em;
  color: rgba(255,255,255,0.45);
  max-width: 1060px;
  margin: 0 auto;
}
.footer-bottom a { color: #c19a6b; text-decoration: none; }

/* legacy footer used in index (will be replaced, but keep fallback) */
.footer-div { width: 50px; height: 2px; background: #c19a6b; margin: 16px auto; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; margin: 12px 0; }
.footer-nav a { color: rgba(255,255,255,0.68); text-decoration: none; font-size: 0.87em; }
.footer-nav a:hover { color: #c19a6b; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
/* ══════════════════════════════════════
   BEHANDLUNGEN – Text + Bild-Grid
══════════════════════════════════════ */
.treatment {
  padding: 50px 0;
  border-bottom: 1px solid #e8e0d5;
}
.treatment:last-child { border-bottom: none; }
.treatment h2 { margin-bottom: 8px; }
.treatment > h3 { color: #444; font-size: 1em; font-weight: 400; margin-bottom: 20px; }

.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  margin: 20px 0;
}

.treatment-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 80px;   /* bleibt beim Scrollen sichtbar */
}
.treatment-images img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.treatment-images img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
/* Sonstige-Angebote Grid: nebeneinander */
.sonstige-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.sonstige-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,.07);
  border-top: 4px solid #3d6b22;
}
.sonstige-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.sonstige-card-body { padding: 22px; }
.sonstige-card-body h3 { color: #1e3a0f; margin-bottom: 8px; }
.sonstige-card-body p  { color: #444; font-size: 0.93em; }

/* ══════════════════════════════════════
   ÜBER MICH – Zweispaltig
══════════════════════════════════════ */
.layout-two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: start;
}
.layout-two-col > div:first-child h2 { margin-top: 28px; }
.layout-two-col > div:first-child h2:first-child { margin-top: 0; }
.layout-two-col ul { padding-left: 20px; color: #444; line-height: 1.9; font-size: 0.95em; margin-bottom: 16px; }
.layout-two-col hr { border: none; border-top: 1px solid #e8e0d5; margin: 28px 0; }

.sidebar-box {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 3px 10px rgba(0,0,0,.07);
  margin-bottom: 18px;
  border-top: 4px solid #3d6b22;
}
.sidebar-box img {
  width: 100%;
  height: auto;
  border-radius: 7px;
  margin-bottom: 12px;
  display: block;
}
.sidebar-box h3 { color: #1e3a0f; margin-bottom: 8px; font-size: 1.05em; }
.sidebar-box p  { color: #444; font-size: 0.91em; margin-bottom: 5px; }
.sidebar-box a  { color: #3d6b22; text-decoration: none; font-weight: 600; }
.sidebar-box a:hover { color: #c19a6b; }
.sidebar-box hr { border: none; border-top: 1px solid #e8e0d5; margin: 12px 0; }

/* ══════════════════════════════════════
   GALERIE – Masonry + Sections
══════════════════════════════════════ */
.gallery-section {
  margin-bottom: 55px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e0d5;
}
.gallery-section:last-child { border-bottom: none; margin-bottom: 0; }
.gallery-section h2 { margin-bottom: 8px; }
.gallery-section > p { color: #4a4a4a; margin-bottom: 22px; font-size: 0.97em; }

/* CSS-columns Masonry – Bilder behalten natürliche Proportionen */
.gallery-masonry {
  columns: 3;
  column-gap: 12px;
  margin-top: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s, transform 0.3s;
  cursor: zoom-in;
}
.gallery-item img:hover { opacity: 0.88; transform: scale(1.02); }

/* ── MAPS EMBED ── */
.maps-embed { border-radius: 10px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
.maps-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ── SMALL UTILITIES ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  header nav {
    display: none !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0; right: 0;
    background: #1e3a0f !important;
    padding: 10px 16px !important;
    z-index: 998;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35) !important;
  }
  header nav.open { display: flex !important; }
  header nav a { padding: 11px 14px; font-size: 0.92em; }

  .hero-grid        { grid-template-columns: 1fr; gap: 28px; }
  .about-grid       { grid-template-columns: 1fr; gap: 24px; }
  .kontakt-grid     { grid-template-columns: 1fr; }
  .ind-grid         { grid-template-columns: 1fr; }
  .treatment-grid   { grid-template-columns: 1fr; }
  .treatment-images { position: static; flex-direction: row; flex-wrap: wrap; }
  .treatment-images img { height: 170px; flex: 1 1 200px; }
  .layout-two-col   { grid-template-columns: 1fr; gap: 28px; }
  .sonstige-grid    { grid-template-columns: 1fr; }
  .gallery-masonry  { columns: 2; }

  .page-banner h1 { font-size: 1.8em; }
  h2 { font-size: 1.65em; }
  .section { padding: 42px 16px; }
  .page-content { padding: 40px 16px; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Preistabelle scrollbar auf sehr kleinen Screens */
  .price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table { min-width: 460px; }

  /* Behandlung ind-grid immer single column */
  .ind-grid { grid-template-columns: 1fr !important; }
  .gallery-masonry { columns: 1; }
  .sonstige-grid { grid-template-columns: 1fr; }

  /* Kontakt: form-box / info-box padding reduzieren */
  .form-box, .info-box { padding: 22px 18px; }
  .behandlung-detail { padding: 22px 18px; }

  h2 { font-size: 1.45em; }
  .quote-banner blockquote { font-size: 1.2em; }
  .page-banner h1 { font-size: 1.5em; }
}

/* ══════════════════════════════════════
   FEHLENDE KLASSEN (nachgefüllt)
══════════════════════════════════════ */

/* Quote-Box – dunkler Zitatblock mit weißem Text */
.quote-box {
  background: linear-gradient(135deg, #1e3a0f, #3d6b22);
  border-radius: 10px;
  padding: 32px 36px;
  text-align: center;
}
.quote-box p { color: #fff; font-size: 1.15em; font-style: italic; line-height: 1.7; margin-bottom: 10px; }
.quote-box p:last-child { color: rgba(255,255,255,0.7); font-size: 0.9em; font-style: normal; }

/* Indikationen / Kontraindikationen – nebeneinander */
.indications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.indications-box {
  background: #f0f5e8;
  border-left: 4px solid #3d6b22;
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
}
.indications-box h4 { color: #1e3a0f; font-size: 0.85em; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.indications-box ul { padding-left: 16px; color: #444; font-size: 0.9em; line-height: 1.85; }
.indications-box.contra {
  background: #fdf2f0;
  border-left-color: #c0392b;
}
.indications-box.contra h4 { color: #a93226; }

/* Warnhinweis-Box (legal, amber) */
.warning-box {
  background: #fff8e1;
  border-left: 4px solid #e6a817;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  color: #5a4200;
  font-size: 0.9em;
  line-height: 1.7;
}
.warning-box strong { color: #7a5800; }

/* Section mit Sand-Hintergrund */
.section-sand { background: #f5efe6 !important; }

/* CTA-Box – Handlungsaufforderung zentriert */
.cta-box {
  background: linear-gradient(135deg, #1e3a0f, #3d6b22);
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
}
.cta-box h2 { color: #fff; text-align: center; margin-bottom: 14px; }
.cta-box h2::after { left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.4); }
.cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.cta-box .btn {
  display: inline-block;
  width: auto;
  background: #fff;
  color: #1e3a0f;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1em;
  transition: background 0.2s, transform 0.2s;
}
.cta-box .btn:hover { background: #f0f5e8; transform: translateY(-2px); }

/* Öffnungszeiten-Tabelle */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  margin: 24px 0;
}
.hours-table th {
  background: #1e3a0f;
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.95em;
}
.hours-table td { padding: 14px 20px; border-bottom: 1px solid #e8e0d5; color: #444; font-size: 0.95em; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr:hover td { background: #faf9f7; }
.day { font-weight: 600; color: #1e3a0f !important; }

/* Kontakt-Box (kleine Karte mit Adresse + Telefon) */
.contact-box {
  background: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  border-left: 5px solid #3d6b22;
}
.contact-box h3 { color: #1e3a0f; margin-bottom: 14px; }
.contact-box p  { color: #444; font-size: 0.95em; margin-bottom: 7px; }
.contact-box a  { color: #3d6b22; font-weight: 600; text-decoration: none; }

/* Sand-Button Variante */
.btn-sand {
  background: linear-gradient(135deg, #c19a6b, #a07843);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: opacity 0.2s, transform 0.2s;
}
.btn-sand:hover { opacity: 0.88; transform: translateY(-2px); }

/* Kontakt-Grid (2-Spaltig: Formular + Info) – Alias für kontakt-grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 28px;
}

/* Preis-Betrag (alias für .price) */
.price-amount {
  color: #3d6b22;
  font-weight: 700;
  font-size: 1.08em;
  white-space: nowrap;
}

/* AGB-Section (alias für .agb-block) */
.agb-section { margin-bottom: 30px; }
.agb-section h3 {
  color: #1e3a0f;
  margin-bottom: 10px;
  font-size: 1.1em;
  border-left: 4px solid #3d6b22;
  padding-left: 12px;
}
.agb-section p { color: #444; margin-bottom: 10px; font-size: 0.96em; }

/* ── SCROLL-MARGIN für sticky header ── */
[id] { scroll-margin-top: 80px; }

/* ── HR-Styling ── */
hr { border: none; border-top: 1px solid #e8e0d5; margin: 28px 0; }

/* ── INFO-BOX (falls noch nicht global definiert) ── */
.info-box {
  background: #f0f5e8;
  border-left: 4px solid #3d6b22;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  color: #444;
  font-size: 0.95em;
  line-height: 1.7;
}
.info-box strong { color: #1e3a0f; }

/* ── BTN als Link (nicht nur button) ── */
a.btn {
  display: inline-block;
  text-decoration: none;
  width: auto;
}

/* Mobile: indications nebeneinander → untereinander */
@media (max-width: 860px) {
  .indications { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 36px 24px; }
}
