/* ============================================================
   PC-F@ir – Stylesheet
   Modern, hell, Orange-Akzent passend zum Logo
   ============================================================ */

:root {
  /* Farbwelt */
  --bg:           #f2f3f5;   /* helles Grau (Seitenhintergrund) */
  --bg-2:         #e9ebee;
  --surface:      #ffffff;
  --ink:          #1f2730;   /* dunkler Text */
  --ink-soft:     #5b6573;
  --line:         #e3e6ea;

  --orange:       #ff7a18;
  --orange-deep:  #e85d04;
  --orange-light: #ffa64d;
  --grad-orange:  linear-gradient(135deg, #ff9233 0%, #ff7a18 45%, #e85d04 100%);

  --whatsapp:     #25d366;
  --whatsapp-dk:  #1ebe5a;
  --star:         #ffb400;

  --shadow-sm: 0 2px 8px rgba(31, 39, 48, .06);
  --shadow:    0 10px 30px rgba(31, 39, 48, .10);
  --shadow-lg: 0 24px 60px rgba(31, 39, 48, .16);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-orange); color: #fff;
  box-shadow: 0 10px 24px rgba(232, 93, 4, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(232, 93, 4, .42); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-deep); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .32); }
.btn-whatsapp:hover { background: var(--whatsapp-dk); transform: translateY(-2px); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242, 243, 245, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(255,255,255,.9); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.brand-logo { height: 38px; width: auto; }

.main-nav { display: flex; align-items: center; gap: .35rem; }
.nav-link {
  font-weight: 500; color: var(--ink-soft); padding: .5rem .9rem; border-radius: 10px;
  position: relative; transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--orange-deep); background: rgba(255, 122, 24, .08); }

.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem; margin-left: .5rem;
  background: var(--grad-orange); color: #fff; font-family: var(--font-head); font-weight: 600;
  padding: .58rem 1.15rem; border-radius: 999px; box-shadow: 0 8px 20px rgba(232,93,4,.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232,93,4,.4); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 7rem); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 85% 0%, rgba(255, 122, 24, .16), transparent 60%),
    radial-gradient(50% 50% at 5% 100%, rgba(255, 166, 77, .14), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
  font-size: .85rem; font-weight: 600; padding: .45rem .9rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--whatsapp); box-shadow: 0 0 0 4px rgba(37,211,102,.18); }

.hero-title {
  font-family: var(--font-head); font-weight: 800; line-height: 1.05;
  font-size: clamp(2.4rem, 6vw, 4rem); margin: 1.1rem 0 1rem; letter-spacing: -.02em;
}
.hero-title .grad {
  background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 38ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.6rem; }

.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.6rem; color: var(--ink-soft); font-size: .92rem; }
.hero-trust strong { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--ink); }

/* Hero Karte */
.hero-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: 26px; padding: 2.2rem 2rem; box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-card-glow { position: absolute; top: -40%; right: -30%; width: 70%; height: 80%; background: var(--grad-orange); filter: blur(70px); opacity: .18; }
.hero-card-logo { height: 50px; width: auto; margin-bottom: .4rem; position: relative; }
.hero-card-tag { color: var(--ink-soft); font-weight: 600; font-size: .92rem; margin-bottom: 1.4rem; position: relative; }
.hero-card-list { display: grid; gap: .7rem; position: relative; }
.hcl-item {
  display: flex; align-items: center; gap: .75rem; background: var(--bg);
  border: 1px solid var(--line); border-radius: 14px; padding: .8rem 1rem; font-weight: 500;
}
.hcl-item span { font-size: 1.25rem; }

/* ============================================================
   Sections allgemein
   ============================================================ */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange-deep);
  background: rgba(255,122,24,.1); padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1rem;
}
.section-head h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.01em; }
.section-sub { color: var(--ink-soft); margin-top: .8rem; font-size: 1.05rem; }

/* ============================================================
   Leistungen
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--grad-orange); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,122,24,.35); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px; display: grid; place-items: center; font-size: 1.7rem;
  background: linear-gradient(135deg, rgba(255,146,51,.16), rgba(232,93,4,.12));
  border-radius: 16px; margin-bottom: 1.1rem;
}
.card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; margin-bottom: .5rem; }
.card p { color: var(--ink-soft); }

/* ============================================================
   Bewertungen
   ============================================================ */
.section-reviews { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

.rating-summary {
  display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.2rem); flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 2rem; box-shadow: var(--shadow); max-width: 760px; margin: 0 auto 2.6rem;
}
.rating-score { font-family: var(--font-head); font-weight: 800; font-size: clamp(3rem, 8vw, 4.2rem); line-height: 1; color: var(--ink); }
.rating-detail { flex: 1 1 220px; }
.rating-meta { color: var(--ink-soft); font-size: .9rem; margin: .35rem 0 .2rem; }
.rating-link { color: var(--orange-deep); font-weight: 600; font-size: .92rem; }
.rating-link:hover { text-decoration: underline; }
.rating-google { display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 600; color: var(--ink-soft); }

/* Sterne */
.stars { display: inline-flex; gap: 3px; }
.star {
  --fill: 100%;
  width: 20px; height: 20px; display: inline-block;
  background:
    linear-gradient(90deg, var(--star) var(--fill), #d8dce1 var(--fill));
  -webkit-mask: var(--star-shape) center / contain no-repeat;
          mask: var(--star-shape) center / contain no-repeat;
}
.star.full { --fill: 100%; }
.stars-lg .star { width: 28px; height: 28px; }
:root { --star-shape: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.7-5.1 4.6 1.4 6.8L12 17.8 5.9 20.4l1.4-6.8L2.2 9l6.9-.7z'/%3E%3C/svg%3E"); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.4rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .9rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-text { color: var(--ink); font-size: 1.02rem; flex: 1; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-orange); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}
.review-author strong { display: block; font-size: .98rem; }
.review-author small { color: var(--ink-soft); font-size: .8rem; }

/* ============================================================
   QR-Codes / Schnellzugriff
   ============================================================ */
.qr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.qr-tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.2rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.qr-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,122,24,.4); }
.qr-tile img {
  width: 100%; max-width: 190px; margin: 0 auto .9rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); padding: 10px; background: #fff; aspect-ratio: 1; object-fit: contain;
}
.qr-tile h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; }
.qr-tile p { color: var(--ink-soft); font-size: .9rem; }

/* ============================================================
   Kontakt
   ============================================================ */
.section-contact { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.6rem; }
.contact-info, .contact-hours {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-sm);
}
.contact-list { list-style: none; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
  flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; font-size: 1.3rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 13px;
}
.ci-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 600; }
.contact-list a, .contact-list span:not(.ci-label) { font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--orange-deep); }
.contact-buttons { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.contact-hours h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; margin-bottom: 1.1rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: .7rem 0; border-bottom: 1px dashed var(--line); }
.hours-table th { font-weight: 600; color: var(--ink); width: 38%; }
.hours-table td { color: var(--ink-soft); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-note { margin-top: 1rem; font-size: .95rem; color: var(--ink); font-weight: 700; }

/* ============================================================
   Rechtsseiten (Impressum / Datenschutz)
   ============================================================ */
.legal { padding: clamp(2.4rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); }
.legal-inner { max-width: 820px; }
.legal-back {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--orange-deep);
  margin-bottom: 1.4rem; transition: gap .2s ease;
}
.legal-back:hover { gap: .65rem; }
.legal h1 {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -.01em;
  font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 1.6rem; line-height: 1.1;
}
.legal h1::after {
  content: ""; display: block; width: 64px; height: 4px; margin-top: .9rem;
  background: var(--grad-orange); border-radius: 99px;
}
.legal-block {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.9rem); box-shadow: var(--shadow-sm); margin-bottom: 1.1rem;
}
.legal-block h2 {
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  margin-bottom: .7rem; color: var(--ink);
}
.legal-block p { color: var(--ink-soft); margin-bottom: .8rem; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { color: var(--ink-soft); padding-left: 1.3rem; margin-bottom: .8rem; }
.legal-block li { margin-bottom: .35rem; }
.legal-block a { color: var(--orange-deep); font-weight: 600; word-break: break-word; }
.legal-block a:hover { text-decoration: underline; }

/* ============================================================
   Terminbuchung
   ============================================================ */
.booking { max-width: 760px; margin: 0 auto; display: grid; gap: 1.4rem; }
.booking-step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm);
}
.booking-step h3 {
  font-family: var(--font-head); font-weight: 600; font-size: 1.25rem;
  display: flex; align-items: center; gap: .7rem; margin-bottom: 1.2rem;
}
.step-no {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--grad-orange); color: #fff; font-size: .95rem;
  display: grid; place-items: center;
}

.field { display: block; margin-bottom: 1.1rem; }
.field:last-child { margin-bottom: 0; }
.field-label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .45rem; }
.field-hint { display: block; color: var(--ink-soft); font-size: .85rem; margin-top: .4rem; }

.booking input[type="text"], .booking input[type="tel"], .booking input[type="email"],
.booking input[type="date"], .booking select, .booking textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px;
  padding: .8rem 1rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.booking textarea { resize: vertical; }
.booking input:focus, .booking select:focus, .booking textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 122, 24, .16); background: #fff;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Vor-Ort-Schalter */
.toggle { display: flex; flex-wrap: wrap; gap: .7rem; }
.toggle-opt {
  flex: 1 1 200px; display: flex; align-items: center; gap: .6rem; cursor: pointer;
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px; padding: .75rem 1rem;
  font-weight: 500; transition: border-color .2s ease, background .2s ease;
}
.toggle-opt:hover { border-color: var(--orange-light); }
.toggle-opt input { accent-color: var(--orange-deep); width: 18px; height: 18px; }
.toggle-opt:has(input:checked) { border-color: var(--orange); background: rgba(255,122,24,.07); }

/* Slot-Buttons */
.slots { display: flex; flex-wrap: wrap; gap: .6rem; }
.slots-hint { color: var(--ink-soft); font-size: .95rem; }
.slots-hint--error { color: #c0392b; }
.slot {
  font-family: var(--font-head); font-weight: 600; font-size: .98rem; cursor: pointer;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 10px;
  padding: .6rem 1rem; color: var(--ink); transition: all .18s ease;
}
.slot:hover { border-color: var(--orange); color: var(--orange-deep); transform: translateY(-2px); }
.slot.is-selected { background: var(--grad-orange); color: #fff; border-color: transparent; box-shadow: 0 8px 18px rgba(232,93,4,.3); }

.vorort-info {
  margin-top: .9rem; background: rgba(255,122,24,.08); border: 1px solid rgba(255,122,24,.25);
  border-radius: 12px; padding: .8rem 1rem; font-size: .92rem; color: var(--ink);
}
.vorort-info strong { color: var(--orange-deep); }

.address-fields { border-top: 1px dashed var(--line); padding-top: 1.1rem; margin-bottom: 1.1rem; }

/* Honeypot unsichtbar */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.booking-consent { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.booking-consent a { color: var(--orange-deep); font-weight: 600; }
.booking .btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.form-msg { margin-top: .9rem; font-weight: 600; font-size: .95rem; min-height: 1.2em; }
.form-msg--error { color: #c0392b; }
.form-msg--success { color: var(--whatsapp-dk); }

/* Erfolgsansicht */
.booking-success {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem); box-shadow: var(--shadow);
}
.success-icon {
  width: 70px; height: 70px; margin: 0 auto 1.2rem; border-radius: 50%;
  background: var(--whatsapp); color: #fff; font-size: 2.2rem; display: grid; place-items: center;
}
.booking-success h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; margin-bottom: .8rem; }
.booking-success p { color: var(--ink-soft); margin-bottom: 1rem; }
.booking-success .btn { margin-top: .6rem; }

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

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #1c2530; color: #c8d0da; padding-top: clamp(2.6rem, 6vw, 4rem); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; }
.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: #9aa6b3; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-head); color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.footer-col p { margin-bottom: .45rem; font-size: .95rem; }
.footer-col a:hover { color: var(--orange-light); }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .88rem; color: #8b96a3; }

/* ============================================================
   Zurück nach oben
   ============================================================ */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-orange); color: #fff; font-size: 1.3rem; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }

/* ============================================================
   Scroll-Reveal Animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { order: -1; max-width: 480px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .qr-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* Mobile-Navigation */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 1rem clamp(18px, 4vw, 40px) 1.4rem; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .35s ease; z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-link { padding: .9rem 1rem; font-size: 1.05rem; }
  .nav-cta { margin-left: 0; margin-top: .4rem; justify-content: center; padding: .85rem; }

  .cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }

  /* >>> QR-Codes auf Smartphones ausblenden <<< */
  #qr { display: none !important; }
  .nav-link--qr { display: none; }
}

@media (max-width: 420px) {
  .header-inner { height: 64px; }
  .brand-logo { height: 32px; }
  html { scroll-padding-top: 76px; }
  .main-nav { inset: 64px 0 auto 0; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .contact-buttons .btn { width: 100%; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}
