/* ============================================================
   TIERARZTPRAXIS WIESENTHEID – Freundliches, tierliebes Design
   ============================================================ */

/* ── Ladeanimation ── */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loader-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-animal {
  font-size: 5rem;
  display: block;
  animation: loaderBounce 0.7s ease-in-out infinite alternate;
}
.loader-paws {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 12px;
}
.loader-paw {
  font-size: 1.4rem;
  opacity: 0;
  animation: loaderPaw 1.2s ease-in-out infinite;
}
.loader-paw:nth-child(2) { animation-delay: 0.2s; }
.loader-paw:nth-child(3) { animation-delay: 0.4s; }
.loader-text {
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.5px;
}
@keyframes loaderBounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-14px); }
}
@keyframes loaderPaw {
  0%, 100% { opacity: 0; transform: scale(0.7); }
  50%       { opacity: 1; transform: scale(1); }
}

:root {
  --teal:          #00b09b;
  --teal-dark:     #008a7a;
  --teal-light:    #e0f7f4;
  --teal-xlight:   #f0faf8;
  --teal-mid:      #9de8de;
  --warm:          #ff8c5a;       /* warmer Akzent: koralle/orange */
  --warm-light:    #fff0e8;
  --cream:         #fffbf7;       /* ganz leicht warmes Weiß */
  --white:         #ffffff;
  --sand:          #fdf6ef;
  --text-dark:     #2b2b2b;
  --text-mid:      #555;
  --text-light:    #888;
  --border:        #e4ede9;
  --emergency:     #e63946;
  --emergency-light: #fff0f1;
  --shadow-warm:   0 4px 24px rgba(255,140,90,0.13);
  --shadow-teal:   0 4px 24px rgba(0,176,155,0.13);
  --shadow-soft:   0 8px 40px rgba(0,0,0,0.07);
  --r-xs:  10px;
  --r-sm:  16px;
  --r-md:  24px;
  --r-lg:  36px;
  --r-xl:  48px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --ease: all 0.3s cubic-bezier(.4,0,.2,1);
}

/* ── Pfotenabdruck-Muster ── */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--teal-dark); }
a:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Barrierefreiheit ── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--teal); color: var(--white);
  padding: 12px 20px; border-radius: 0 0 12px 12px;
  font-weight: 700; z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 0; color: var(--white); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; position: relative; z-index: 1; }
.bg-sand  { background: var(--sand); }
.bg-cream { background: var(--cream); }

/* Pfotenabdruck-Hintergründe – zufällig über die ganze Seite verteilt */
.about, .team, .anfahrt {
  background-color: var(--cream);
  background-image: url('../img/paw-pattern.svg');
  background-size: 420px 420px;
}
.leistungen, .download, .kontakt {
  background-color: var(--sand);
  background-image: url('../img/paw-pattern.svg');
  background-size: 420px 420px;
  background-position: 130px 80px;
}
.info-bar {
  background-image: url('../img/paw-pattern.svg');
  background-size: 420px 420px;
  background-position: 60px 200px;
}
.notdienst {
  background-image: url('../img/paw-pattern.svg');
  background-size: 420px 420px;
  background-position: 210px 40px;
}
.move-section {
  background-color: var(--warm-light);
  background-image: url('../img/paw-pattern-warm.svg');
  background-size: 420px 420px;
  background-position: 90px 160px;
}

/* ── Typografie ── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 3px;
  background: var(--warm); border-radius: 2px;
}
.section-eyebrow--light { color: var(--teal-mid); }
.section-eyebrow--light::before { background: var(--teal-mid); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-sub { color: var(--text-mid); font-size: 1.05rem; margin-top: 14px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  cursor: pointer; border: 2.5px solid transparent;
  transition: var(--ease); text-decoration: none;
  line-height: 1.2; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.btn--primary {
  background: var(--teal); color: var(--white); border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(0,176,155,0.35);
}
.btn--primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }

.btn--warm {
  background: var(--warm); color: var(--white); border-color: var(--warm);
  box-shadow: 0 6px 20px rgba(255,140,90,0.35);
}
.btn--warm:hover { background: #e8783e; border-color: #e8783e; color: var(--white); }

.btn--outline-white {
  background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn--outline-white:hover { background: var(--white); color: var(--teal); }

.btn--large { padding: 18px 40px; font-size: 1.1rem; }
.btn--sm    { padding: 10px 22px; font-size: 0.88rem; margin-top: 14px; }
.btn--full  { width: 100%; justify-content: center; }

/* ── Wellentrennlinie ── */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   HEADER
============================================================ */
.site-header { position: sticky; top: 0; z-index: 1000; }

.header-topbar {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  color: var(--white); font-size: 0.83rem; padding: 9px 0;
}
.topbar-inner {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.topbar-inner span { display: flex; align-items: center; gap: 7px; }
.topbar-inner a { color: rgba(255,255,255,0.9); }
.topbar-inner a:hover { color: var(--white); }
.topbar-inner i { font-size: 0.75rem; opacity: 0.85; }

.main-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--teal-light);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 28px; gap: 16px;
  max-width: 1200px; margin: 0 auto;
}

.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo:hover { text-decoration: none; opacity: 0.9; }
.logo-img { height: 54px; width: auto; display: block; object-fit: contain; }

.nav-menu { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav-link {
  padding: 9px 15px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  color: var(--text-mid); transition: var(--ease);
  text-decoration: none; white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--teal); background: var(--teal-xlight); text-decoration: none;
}
.nav-link--emergency {
  background: var(--emergency-light); color: var(--emergency) !important; font-weight: 800;
}
.nav-link--emergency:hover { background: var(--emergency); color: var(--white) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  border-radius: 10px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--text-dark); border-radius: 2px; transition: var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   UMZUG-BANNER
============================================================ */
.move-banner {
  background: linear-gradient(90deg, #ff8c5a, #ffaa6e);
  color: var(--white); text-align: center;
  padding: 13px 24px; font-size: 0.92rem;
  font-family: var(--font-head); font-weight: 600;
  box-shadow: 0 2px 12px rgba(255,140,90,0.3);
}
.move-banner i { margin: 0 6px; font-size: 0.85rem; animation: wiggle 2s ease infinite; }
@keyframes wiggle {
  0%,100% { transform: rotate(0deg); }
  25%      { transform: rotate(-10deg); }
  75%      { transform: rotate(10deg); }
}

/* ============================================================
   HERO – warm, einladend, organisch
============================================================ */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  background:
    linear-gradient(145deg, rgba(0,90,80,0.88) 0%, rgba(0,160,140,0.72) 60%, rgba(255,140,90,0.4) 100%),
    url('../img/gallery/hero_bg.jpg') center / cover no-repeat;
  color: var(--white); overflow: hidden; padding: 80px 0 120px;
}

/* Organische Blob-Formen im Hintergrund */
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,200,140,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,176,155,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Dekorative Pfotenabdrücke */
.hero-paws {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-paws span {
  position: absolute; font-size: 2.5rem; opacity: 0.07;
  animation: float-paw 6s ease-in-out infinite;
}
.hero-paws span:nth-child(1) { top: 15%; right: 12%; animation-delay: 0s; }
.hero-paws span:nth-child(2) { top: 60%; right: 25%; animation-delay: 1.5s; font-size: 1.8rem; }
.hero-paws span:nth-child(3) { top: 30%; right: 5%;  animation-delay: 3s; font-size: 3.5rem; }
.hero-paws span:nth-child(4) { bottom: 20%; right: 40%; animation-delay: 0.8s; font-size: 2rem; }
@keyframes float-paw {
  0%,100% { transform: translateY(0) rotate(-10deg); }
  50%      { transform: translateY(-16px) rotate(10deg); }
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px); border-radius: 50px;
  padding: 8px 22px; font-size: 0.9rem; font-weight: 600;
  margin-bottom: 22px; letter-spacing: 0.3px;
}
.hero-eyebrow i { color: var(--warm); font-size: 1rem; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em {
  font-style: normal; color: var(--warm);
  position: relative;
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); opacity: 0.93; margin-bottom: 38px; max-width: 560px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600;
}
.trust-item .trust-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px; border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; backdrop-filter: blur(4px);
}

/* Wellen-Boden des Heroes */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2;
}

/* ============================================================
   INFO-LEISTE
============================================================ */
.info-bar { background: var(--white); position: relative; z-index: 3; }
.info-bar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.09);
  margin: -48px 28px 0; position: relative;
  max-width: calc(1200px - 56px);
  margin-left: auto; margin-right: auto;
  transform: translateY(-48px);
  background: var(--white);
}
.info-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 28px 22px; transition: var(--ease);
  border-right: 1px solid var(--border);
}
.info-card:last-child { border-right: none; }
.info-card:hover { background: var(--teal-xlight); }
.info-card h3 { font-size: 0.9rem; font-weight: 800; margin-bottom: 3px; color: var(--text-dark); }
.info-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; }
.info-card a { color: var(--teal); font-weight: 600; }
.info-card-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--teal-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.15rem;
}
.info-card-icon.emergency-icon { background: var(--emergency-light); color: var(--emergency); }
.link-emergency { color: var(--emergency) !important; font-weight: 700; }

/* ============================================================
   BUCHUNGS-STREIFEN
============================================================ */
.booking-bar {
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 20px 0;
  position: relative; z-index: 2;
}
.booking-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.booking-bar-text {
  display: flex; align-items: center; gap: 18px;
  color: var(--white);
}
.booking-bar-icon {
  font-size: 2rem; opacity: 0.9; flex-shrink: 0;
}
.booking-bar-text strong {
  display: block; font-size: 1.05rem;
  font-family: var(--font-head); font-weight: 700;
}
.booking-bar-text span {
  display: block; font-size: 0.88rem; opacity: 0.85; margin-top: 2px;
}
@media (max-width: 768px) {
  .booking-bar-inner { flex-direction: column; text-align: center; gap: 16px; }
  .booking-bar-text { flex-direction: column; gap: 8px; }
}

/* ============================================================
   ÜBER UNS
============================================================ */
.about { background-color: var(--cream); padding-top: 20px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-images { position: relative; padding-bottom: 40px; }
.about-img-main img {
  border-radius: var(--r-lg); width: 100%; aspect-ratio: 4/3;
  object-fit: cover; box-shadow: var(--shadow-soft);
}
.about-img-secondary {
  position: absolute; bottom: 0; right: -30px; width: 50%;
  border: 5px solid var(--white); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-teal);
}
.about-img-secondary img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about-badge-float {
  position: absolute; top: 24px; left: -16px;
  background: linear-gradient(135deg, var(--warm), #ffaa6e);
  color: var(--white); border-radius: var(--r-md);
  padding: 18px 22px; text-align: center;
  box-shadow: var(--shadow-warm); font-family: var(--font-head);
}
.about-badge-float .big-number { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-badge-float span:last-child { font-size: 0.75rem; opacity: 0.9; letter-spacing: 1px; text-transform: uppercase; }

/* Dekoratives Pfoten-Element */
.paw-deco {
  position: absolute; font-size: 7rem; opacity: 0.04;
  font-family: sans-serif; pointer-events: none; user-select: none;
}

.about-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700 !important; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; }
.about-list { margin: 22px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text-mid);
}
.about-list i { color: var(--teal); font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   LEISTUNGEN – auf warmem Sand-Hintergrund
============================================================ */
.leistungen { background-color: var(--sand); }

/* Accordion */
.leistungen-accordion {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 860px; margin: 0 auto;
}

.leistung-item {
  background: var(--white); border-radius: var(--r-md);
  border: 2px solid transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  overflow: hidden; transition: border-color 0.25s;
}
.leistung-item[open] { border-color: var(--teal-mid); }

.leistung-summary {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; cursor: pointer; list-style: none;
  user-select: none;
}
.leistung-summary::-webkit-details-marker { display: none; }
.leistung-summary:hover { background: rgba(0,0,0,0.015); }

.leistung-title {
  flex: 1; font-size: 0.97rem; font-weight: 600;
  color: var(--text-dark);
}

.leistung-chevron {
  font-size: 0.75rem; color: var(--teal); transition: transform 0.3s ease;
  flex-shrink: 0;
}
.leistung-item[open] .leistung-chevron { transform: rotate(180deg); }

.leistung-body {
  padding: 0 20px 20px 20px;
}
.leistung-body p {
  color: var(--text-mid); font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 10px;
}
.leistung-body p:last-child { margin-bottom: 0; }

.leistung-icon {
  width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; transition: var(--ease);
}
.leistung-item[open] .leistung-icon { background: var(--teal); color: var(--white); }
.leistung-summary:hover .leistung-icon { background: var(--teal); color: var(--white); }

/* Download card below accordion */
.leistungen-download-card {
  margin-top: 0;
  background: linear-gradient(135deg, var(--warm-light), #fff8f4);
  border: 2px solid rgba(255,140,90,0.3); border-radius: var(--r-md);
  padding: 26px 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.leistungen-download-card .leistung-icon { background: var(--warm); color: var(--white); margin-bottom: 0; }
.leistungen-download-card h3 { margin-bottom: 4px; }
.leistungen-download-card p { color: var(--text-mid); font-size: 0.92rem; margin: 0; }
.leistungen-download-card > div { flex: 1; }

/* ============================================================
   TEAM – herzlich & persönlich
============================================================ */
.team { background-color: var(--cream); }

/* Buntes Pfotenabdruck-Muster als Hintergrund */
.team::before {
  content: '🐾';
  position: absolute; top: 40px; left: 5%;
  font-size: 8rem; opacity: 0.04;
  pointer-events: none; user-select: none;
}
.team::after {
  content: '🐾';
  position: absolute; bottom: 40px; right: 5%;
  font-size: 8rem; opacity: 0.04;
  pointer-events: none; user-select: none;
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.team-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: var(--ease); border: 2px solid transparent;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(0,176,155,0.16);
  border-color: var(--teal-mid);
}

.team-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/3.2;
  background: linear-gradient(135deg, var(--teal-light), #d4f5f0);
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.45s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.06); }

.team-card-ribbon {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,100,88,0.75) 0%, transparent 100%);
  padding: 24px 16px 14px;
}
.team-card-ribbon h3 { color: var(--white); font-size: 1.05rem; margin: 0; }
.team-card-ribbon .team-role-inline {
  font-size: 0.8rem; color: var(--teal-mid);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}

.team-info { padding: 20px 22px 24px; }
.team-facts { display: flex; flex-direction: column; gap: 9px; }
.team-facts li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid);
}
.team-facts i { color: var(--teal); font-size: 0.8rem; flex-shrink: 0; width: 14px; }
.team-facts .fact-heart i { color: var(--warm); }

/* Kein echtes Foto → schöner Platzhalter */
.team-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
}
.team-img-placeholder .ph-icon {
  font-size: 4rem; opacity: 0.35;
}
.team-img-placeholder p {
  font-size: 0.82rem; color: var(--teal-dark);
  opacity: 0.6; font-weight: 600;
}

/* ============================================================
   NOTDIENST – warm, nicht kalt-klinisch
============================================================ */
.notdienst {
  background: linear-gradient(145deg, #004840 0%, #006b5e 50%, #008a70 100%);
  color: var(--white); position: relative; overflow: hidden;
}
/* Organischer Blob oben rechts */
.notdienst::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,140,90,0.15) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
/* Riesen-Pfote dekorativ */
.notdienst::after {
  content: '\f1b0';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; bottom: -30px; right: 3%;
  font-size: 22rem; color: rgba(255,255,255,0.025);
  pointer-events: none; line-height: 1;
}

.notdienst-inner { position: relative; z-index: 1; }
.notdienst h2 { color: var(--white); margin-bottom: 14px; }
.notdienst-lead { font-size: 1.08rem; opacity: 0.92; max-width: 640px; margin-bottom: 40px; }

.notdienst-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-bottom: 30px;
}
.notdienst-card {
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md); padding: 28px 24px;
  backdrop-filter: blur(10px); transition: var(--ease);
}
.notdienst-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); }
.notdienst-card-icon {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.12); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--teal-mid); margin-bottom: 14px;
}
.notdienst-card h3 { color: var(--teal-mid); margin-bottom: 10px; font-size: 1rem; }
.notdienst-card p { font-size: 0.88rem; opacity: 0.82; }

.notdienst-phone {
  display: block; font-size: 1.6rem; font-weight: 900;
  font-family: var(--font-head); color: var(--white);
  margin-bottom: 6px; letter-spacing: 0.5px;
}
.notdienst-phone:hover { color: var(--teal-mid); text-decoration: none; }

.notdienst-fees { display: flex; flex-direction: column; gap: 10px; }
.notdienst-fees li {
  font-size: 0.87rem; opacity: 0.88;
  padding-left: 14px; border-left: 3px solid var(--warm);
}
.notdienst-fees strong { color: var(--white); opacity: 1; }

.notfall-list { display: flex; flex-direction: column; gap: 8px; }
.notfall-list li {
  font-size: 0.87rem; opacity: 0.87;
  display: flex; align-items: flex-start; gap: 8px;
}
.notfall-list li::before {
  content: '!'; flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(255,140,90,0.4); color: #ffd0a8;
  border-radius: 50%; font-size: 0.72rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.notdienst-hinweis {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.09);
  border-left: 4px solid var(--warm);
  border-radius: 0 var(--r-xs) var(--r-xs) 0;
  padding: 16px 20px; font-size: 0.9rem;
}
.notdienst-hinweis i { color: var(--warm); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.notdienst-hinweis p { opacity: 0.9; margin: 0; }
.notdienst-hinweis strong { color: var(--white); }

/* ============================================================
   UMZUG 2027
============================================================ */
.move-section {
  background: linear-gradient(135deg, var(--warm-light) 0%, var(--cream) 100%);
  border-top: none; border-bottom: none;
}
.move-inner { display: flex; gap: 60px; align-items: center; }

.move-img-wrap {
  flex-shrink: 0; width: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.move-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.move-icon-wrap {
  flex-shrink: 0; width: 150px; height: 150px;
  background: linear-gradient(135deg, var(--warm), #ffaa6e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 3.8rem;
  box-shadow: 0 8px 40px rgba(255,140,90,0.35);
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.move-content > p:not(.move-date) { color: var(--text-mid); margin-bottom: 28px; }
.move-date {
  font-family: var(--font-head); font-size: 1.25rem;
  color: var(--warm); margin-bottom: 16px; font-weight: 700;
}
.move-date strong { color: var(--teal-dark); }
.move-features { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.move-feature {
  display: flex; align-items: center; gap: 9px;
  background: var(--white); border: 2px solid rgba(255,140,90,0.3);
  border-radius: 50px; padding: 9px 20px;
  font-size: 0.88rem; font-weight: 700; color: var(--text-dark);
  box-shadow: 0 2px 10px rgba(255,140,90,0.1);
}
.move-feature i { color: var(--warm); }
.move-note { font-size: 0.88rem; color: var(--text-light); font-style: italic; }

/* ============================================================
   DOWNLOAD
============================================================ */
.download { background-color: var(--sand); }
.download-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.download-content h2 { margin-bottom: 16px; }
.download-content > p { color: var(--text-mid); margin-bottom: 32px; }

.download-steps { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.download-step { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.step-num {
  width: 50px; height: 50px; background: var(--warm);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(255,140,90,0.3);
}
.download-step p { font-size: 0.87rem; font-weight: 700; color: var(--text-mid); max-width: 90px; }
.step-arrow { color: var(--warm); font-size: 1.3rem; opacity: 0.5; }

.doc-preview {
  width: 150px; background: var(--white);
  border-radius: var(--r-md); padding: 22px 18px;
  box-shadow: var(--shadow-soft); position: relative; border: 1.5px solid var(--border);
}
.doc-header { height: 9px; background: var(--warm); border-radius: 5px; margin-bottom: 16px; }
.doc-line { height: 6px; background: var(--teal-light); border-radius: 3px; margin-bottom: 9px; }
.doc-line--short { width: 60%; }
.doc-line--med   { width: 80%; }
.doc-icon { position: absolute; bottom: 14px; right: 14px; font-size: 2.2rem; color: var(--warm); opacity: 0.45; }

/* ============================================================
   ANFAHRT
============================================================ */
.anfahrt { background-color: var(--cream); }
.anfahrt-grid { display: grid; grid-template-columns: 360px 1fr; gap: 44px; align-items: start; }
.anfahrt-info h3 {
  color: var(--teal-dark); margin: 24px 0 12px;
  font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1px;
}
.anfahrt-info h3:first-child { margin-top: 0; }
.anfahrt-info address p {
  color: var(--text-mid); display: flex; align-items: center; gap: 8px; margin-bottom: 5px;
}
.anfahrt-info address i { color: var(--teal); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 9px 6px; font-size: 0.88rem;
  border-bottom: 1px solid var(--border); color: var(--text-mid);
}
.hours-table td:first-child { font-weight: 700; color: var(--text-dark); width: 120px; }
.hours-table tr:last-child td { border-bottom: none; }

.anfahrt-hinweise {
  margin-top: 20px; background: var(--teal-xlight);
  border-radius: var(--r-sm); padding: 16px 18px;
}
.anfahrt-hinweise ul { display: flex; flex-direction: column; gap: 10px; }
.anfahrt-hinweise li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid);
}
.anfahrt-hinweise i { color: var(--teal); width: 16px; text-align: center; }

.map-container {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 2px solid var(--border);
}
.map-container iframe { display: block; }

/* ============================================================
   KONTAKT
============================================================ */
.kontakt { background-color: var(--sand); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; align-items: start; }
.kontakt-info { display: flex; flex-direction: column; gap: 22px; }
.kontakt-item { display: flex; gap: 16px; align-items: flex-start; }
.kontakt-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--teal-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.1rem;
}
.kontakt-item strong { display: block; font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.kontakt-item a, .kontakt-item span { font-size: 0.95rem; color: var(--text-mid); }
.kontakt-item a:hover { color: var(--teal); }

.social-btn {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--ease);
}
.social-btn:hover { background: var(--teal); color: var(--white); text-decoration: none; }
.footer-social, .kontakt-social { display: flex; gap: 10px; margin-top: 10px; }

/* Formular */
.kontakt-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.form-group label span { color: var(--emergency); }
.form-group input,
.form-group textarea {
  padding: 14px 18px; border: 2px solid var(--border);
  border-radius: var(--r-sm); font-family: var(--font-body);
  font-size: 0.95rem; color: var(--text-dark);
  background: var(--white); transition: var(--ease); outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,176,155,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-check { flex-direction: row !important; align-items: flex-start; gap: 12px; }
.form-check input[type="checkbox"] {
  width: 20px; height: 20px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--teal); cursor: pointer;
}
.form-check label { font-weight: 400; font-size: 0.87rem; color: var(--text-mid); line-height: 1.55; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #0d201e;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.logo-img--footer { filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; }

.site-footer h4 {
  color: var(--white); font-size: 0.85rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px; font-family: var(--font-head);
}
.footer-links ul,
.footer-contact ul,
.footer-hours ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-contact a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--ease); }
.footer-links a:hover,
.footer-contact a:hover { color: var(--teal-mid); text-decoration: none; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; }
.footer-contact i { color: var(--teal); width: 14px; font-size: 0.85rem; }
.footer-hours li {
  display: flex; justify-content: space-between;
  font-size: 0.87rem; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-hours li span:first-child { color: rgba(255,255,255,0.55); }
.footer-hours li span:last-child  { color: var(--white); font-weight: 700; }
.footer-social { margin-top: 18px; }
.footer-social .social-btn { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.footer-social .social-btn:hover { background: var(--teal); color: var(--white); }

.footer-bottom {
  background: rgba(0,0,0,0.25); padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px 24px;
}
.footer-bottom p { font-size: 0.83rem; opacity: 0.55; }
.footer-bottom ul { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,0.45); font-size: 0.83rem; }
.footer-bottom a:hover { color: var(--teal-mid); text-decoration: none; }

.made-with-love {
  font-size: 0.82rem;
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 5px;
}
.made-with-love a {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.made-with-love a:hover { color: var(--warm); text-decoration: none; }
.love-heart {
  color: var(--warm);
  opacity: 1 !important;
  font-size: 0.9rem;
  animation: heartbeat 1.8s ease-in-out infinite;
  display: inline-block;
}
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  20%      { transform: scale(1.3); }
  40%      { transform: scale(1); }
  60%      { transform: scale(1.15); }
}

/* ============================================================
   COOKIE MODAL
============================================================ */

/* Overlay */
.cookie-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 40, 35, 0.55);
  backdrop-filter: blur(3px);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cookie-overlay.is-visible {
  opacity: 1; pointer-events: auto;
}

/* Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  z-index: 9999;
  width: min(480px, calc(100vw - 32px));
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-modal.is-visible {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal-inner {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  text-align: center;
}
.cookie-modal-icon {
  font-size: 2.8rem; line-height: 1; margin-bottom: 14px;
}
.cookie-modal-inner h2 {
  font-size: 1.4rem; color: var(--teal-dark);
  margin-bottom: 12px;
}
.cookie-modal-inner > div > p,
.cookie-modal-inner #cookieViewCustom > p {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 24px;
}
.cookie-modal-inner a { color: var(--teal); text-decoration: underline; }

/* Buttons im Modal */
.cookie-modal-actions {
  display: flex; flex-direction: column; gap: 10px;
}
.btn--full { width: 100%; justify-content: center; }
.btn--outline-cookie {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--teal-dark);
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: var(--ease);
}
.btn--outline-cookie:hover { border-color: var(--teal); color: var(--teal); }
.btn--ghost {
  background: transparent; border: none;
  color: var(--text-light); font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 600;
  padding: 10px 20px; border-radius: var(--r-md);
  cursor: pointer; transition: var(--ease);
}
.btn--ghost:hover { color: var(--teal-dark); background: var(--sand); }

/* Individuelle Auswahl */
.cookie-categories {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px; text-align: left;
}
.cookie-category {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 16px;
  background: var(--sand); border-radius: var(--r-md);
  cursor: pointer; border: 2px solid transparent;
  transition: border-color 0.2s;
}
.cookie-category:not(.cookie-category--disabled):hover { border-color: var(--teal-mid); }
.cookie-category--disabled { cursor: default; opacity: 0.75; }
.cookie-category-info strong {
  display: block; font-size: 0.9rem; color: var(--teal-dark); margin-bottom: 2px;
}
.cookie-category-info span { font-size: 0.8rem; color: var(--text-mid); }
.cookie-toggle--always {
  font-size: 0.75rem; font-weight: 700; color: var(--teal);
  white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px;
}

/* Toggle Switch */
.cookie-toggle { position: relative; flex-shrink: 0; }
.cookie-checkbox { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle-track {
  display: block; width: 44px; height: 24px;
  background: var(--border); border-radius: 999px;
  transition: background 0.25s;
  position: relative; cursor: pointer;
}
.cookie-toggle-track::after {
  content: ''; position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--white); border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cookie-checkbox:checked + .cookie-toggle-track { background: var(--teal); }
.cookie-checkbox:checked + .cookie-toggle-track::after { transform: translateX(20px); }
.cookie-checkbox:focus-visible + .cookie-toggle-track {
  outline: 3px solid var(--teal); outline-offset: 2px;
}

.cookie-modal-actions--custom { margin-top: 0; }

/* Footer Cookie-Einstellungen */
.footer-cookie-btn {
  background: none; border: none; cursor: pointer;
  color: inherit; font: inherit; padding: 0;
  opacity: 0.75; transition: opacity 0.2s;
  text-decoration: underline;
}
.footer-cookie-btn:hover { opacity: 1; }

/* Map Placeholder */
.map-blocked {
  width: 100%; height: 450px;
  background: var(--sand);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--border);
}
.map-blocked[hidden] { display: none !important; }
.map-blocked-inner {
  text-align: center; padding: 32px;
  max-width: 420px;
}
.map-blocked-inner .fa-map-marked-alt {
  font-size: 3rem; color: var(--teal-mid);
  opacity: 0.5; margin-bottom: 16px; display: block;
}
.map-blocked-inner strong {
  display: block; font-family: var(--font-head);
  font-size: 1.1rem; color: var(--teal-dark); margin-bottom: 10px;
}
.map-blocked-inner p {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 20px;
}

/* ============================================================
   SCROLL-TO-TOP
============================================================ */
.scroll-top-btn {
  position: fixed; bottom: 32px; right: 32px;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white); border: none; border-radius: 16px;
  font-size: 1rem; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,176,155,0.4);
  transition: var(--ease); opacity: 0; pointer-events: none; z-index: 500;
  display: flex; align-items: center; justify-content: center;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { transform: translateY(-4px) rotate(-5deg); }
.scroll-top-btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .info-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .info-card:nth-child(2) { border-right: none; }
  .info-card:nth-child(3) { border-top: 1px solid var(--border); }
  .about-grid { gap: 48px; }
  .about-img-secondary { right: -16px; }
  .leistungen-accordion { max-width: 100%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .notdienst-cards { grid-template-columns: repeat(2, 1fr); }
  .move-img-wrap { width: 340px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  h2 { font-size: 1.8rem; }

  .header-topbar { display: none; }
  .nav-toggle { display: flex; }
  .main-nav { position: relative; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    align-items: stretch; gap: 0; padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: none; border-top: 2px solid var(--teal-light);
  }
  .nav-menu.open { display: flex; }
  .nav-link { border-radius: var(--r-xs); }

  .hero { min-height: 80vh; padding-bottom: 80px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .info-bar-grid {
    grid-template-columns: 1fr; margin: -24px 16px 0;
    transform: translateY(-24px);
  }
  .info-card { border-right: none; border-bottom: 1px solid var(--border); }
  .info-card:last-child { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }

  /* Mobile: Galerie-Ansicht für Leistungen */
  .leistungen-accordion { max-width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .leistungen-download-card { grid-column: span 2; flex-direction: column; }

  .leistung-item { border: 2px solid transparent; }
  .leistung-item[open] { grid-column: span 2; }

  .leistung-summary {
    flex-direction: column; align-items: center; text-align: center;
    gap: 10px; padding: 18px 14px;
  }
  .leistung-icon { margin-bottom: 0; width: 42px; height: 42px; font-size: 1.1rem; }
  .leistung-title { font-size: 0.78rem; line-height: 1.3; word-break: break-word; hyphens: auto; }
  .leistung-chevron { display: none; }

  .leistung-item[open] .leistung-summary {
    flex-direction: row; text-align: left; gap: 14px; padding: 16px 18px;
  }
  .leistung-item[open] .leistung-title { font-size: 0.97rem; }
  .leistung-item[open] .leistung-chevron { display: block; }
  .leistung-body { padding: 0 18px 18px 18px; }

  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .notdienst-cards { grid-template-columns: 1fr; }
  .move-inner { flex-direction: column; text-align: center; gap: 28px; }
  .move-icon-wrap { width: 110px; height: 110px; font-size: 2.8rem; }
  .move-img-wrap { width: 100%; max-width: 480px; }
  .move-features { justify-content: center; }
  .download-inner { grid-template-columns: 1fr; }
  .download-visual { display: none; }
  .anfahrt-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; }
  .download-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}

@media print {
  .site-header, .move-banner, .scroll-top-btn, .hero-cta,
  .kontakt-form, .map-container { display: none !important; }
  body { font-size: 12pt; background: white; }
  .section { padding: 20pt 0; }
}
