/* ══════════════════════════════════════════════════════════════════
   JK-Lokservice · Gemeinsames Stylesheet
   Firmenfarbe: #a52336
   ══════════════════════════════════════════════════════════════════ */

:root {
  /* ── Firmenfarbe (Burgunderrot) ── */
  --red:        #a52336;
  --red-deep:   #8c1e2e;
  --red-subtle: rgba(165,35,54,0.07);

  /* ── Beige/Hell ── */
  --beige-0:  #F7F1E6;   /* Haupthintergrund */
  --beige-1:  #EFE6D5;   /* Karten, Abschnitte */
  --beige-2:  #E4D9C6;   /* stärkere Trenner */
  --beige-3:  #D2C4AE;   /* Borderlinien */

  /* ── Dunkel ── */
  --dark-0:   #111110;
  --dark-1:   #1A1916;
  --dark-2:   #232118;

  /* ── Text ── */
  --ink-1:    #1C1A15;
  --ink-2:    #6B6356;
  --ink-3:    #A8998A;
  --light-1:  #F3EDE3;
  --light-2:  #9A9080;
  --light-3:  #5C554A;

  --radius:    2px;
  --radius-md: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--beige-0);
  color: var(--ink-1);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px; font-weight: 400; line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 700; color: var(--ink-1); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; color: var(--ink-1); }
h3 { font-size: 1.05rem; font-weight: 600; color: var(--ink-1); }
p  { color: var(--ink-2); line-height: 1.85; }
a  { color: inherit; text-decoration: none; }
strong { color: var(--ink-1); font-weight: 600; }
ul, ol { padding-left: 0; }

.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--light-1); }
.on-dark p  { color: var(--light-2); }
.on-dark strong { color: var(--light-1); }

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.71rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 16px;
}
.rule { width: 48px; height: 3px; background: var(--red); margin: 22px 0 28px; display: block; }

.wrap     { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.section  { padding: 96px 0; }
.section-sm { padding: 68px 0; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 14px 30px; border-radius: var(--radius);
  cursor: pointer; border: none; transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); box-shadow: 0 6px 20px rgba(165,35,54,0.25); }
.btn-outline-dark { background: transparent; color: var(--ink-1); border: 1.5px solid var(--beige-3); }
.btn-outline-dark:hover { border-color: var(--ink-3); }
.btn-outline-light { background: transparent; color: var(--light-1); border: 1.5px solid var(--light-3); }
.btn-outline-light:hover { border-color: var(--light-2); }

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--red);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 28px;
  height: 90px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 58px; width: 58px; }
.nav-logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--ink-1);
  letter-spacing: 0.03em; text-transform: uppercase;
}
.nav-logo-name em { color: var(--red); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 8px 13px; font-size: 0.86rem; font-weight: 500; color: var(--ink-2); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink-1); }
.nav-links a.active:not(.nav-cta) { border-bottom: 2px solid var(--red); padding-bottom: 6px; }
.nav-cta { margin-left: 10px !important; background: var(--red) !important; color: #fff !important; padding: 9px 20px !important; border-radius: var(--radius) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--red-deep) !important; color: #fff !important; }
.nav-mob { display: none; background: none; border: none; cursor: pointer; color: var(--ink-1); }
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--beige-3); border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10); min-width: 230px; z-index: 200; padding: 10px 0 6px;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block !important; padding: 10px 18px !important; font-size: 0.85rem !important;
  color: var(--ink-2) !important; white-space: nowrap; border-bottom: none !important;
}
.nav-dropdown-menu a:hover { background: var(--beige-1); color: var(--red) !important; }
.nav-dropdown-menu a:first-child { border-bottom: 1px solid var(--beige-3) !important; margin-bottom: 4px; font-weight: 600 !important; color: var(--ink-1) !important; }
.nav-dropdown-chevron { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 12px;
}
.mobile-menu {
  display: none; position: fixed; top: 90px; left: 0; right: 0; z-index: 99;
  background: var(--beige-0); border-bottom: 1px solid var(--beige-3);
  padding: 16px 28px 24px; flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 0; font-size: 1rem; color: var(--ink-1); border-bottom: 1px solid var(--beige-3); font-weight: 500; }
.mobile-menu a:last-child { border-bottom: none; margin-top: 12px; }
.mobile-menu .mob-sub { font-size: 0.88rem !important; color: var(--ink-3) !important; padding: 8px 0 8px 14px !important; border-bottom: 1px solid var(--beige-3) !important; }

/* ── SEITENHERO (Unterseiten) ──────────────────────────────────────  */
.page-hero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--beige-3);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,11,12,0.88) 0%, rgba(11,11,12,0.72) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 110px 0 60px; width: 100%;
}
.page-hero-content .eyebrow { color: rgba(255,255,255,0.65); }
.page-hero-content h1 { color: var(--light-1); }
.page-hero-content h2 { color: var(--light-1); }
.page-hero-content p  { color: rgba(243,237,227,0.82); text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.page-hero-content strong { color: var(--light-1); }
.page-hero-attr {
  position: absolute; bottom: 10px; right: 16px; z-index: 3;
  font-size: 0.65rem; color: rgba(255,255,255,0.38);
  font-family: 'Source Sans 3', sans-serif;
}
.page-hero-attr a { color: rgba(255,255,255,0.38); transition: color 0.15s; }
.page-hero-attr a:hover { color: rgba(255,255,255,0.65); }
.breadcrumb {
  font-size: 0.78rem; color: var(--ink-3); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-3); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--ink-2); }
.breadcrumb-sep { color: var(--beige-3); }

/* ── HERO (Startseite) ───────────────────────────────────────────── */
.hero-section {
  position: relative; min-height: 100vh; padding-top: 64px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: -20% 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,rgba(11,11,12,0.88) 0%,rgba(11,11,12,0.70) 50%,rgba(11,11,12,0.45) 100%);
}
.hero-wrap {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto;
  padding: 80px 28px; width: 100%;
}
.hero-content { max-width: 620px; }
.hero-content h1 { color: var(--light-1); margin-bottom: 24px; }
.hero-lead { font-size: 1.08rem; color: var(--light-2); margin-bottom: 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-creds { border-top: 1px solid rgba(243,237,227,0.12); padding-top: 24px; display: flex; flex-direction: column; }
.cred-row {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid rgba(243,237,227,0.08);
  font-size: 0.89rem; color: var(--light-2);
}
.cred-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── SIGNAL BAR ──────────────────────────────────────────────────── */
.signal-bar { background: var(--red); padding: 18px 0; }
.signal-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.sig-item {
  padding: 5px 32px; border-right: 1px solid rgba(255,255,255,0.22);
  text-align: center; font-size: 0.84rem; color: rgba(255,255,255,0.88); font-weight: 500;
}
.sig-item:last-child { border-right: none; }
.sig-item strong { display: block; color: #fff; font-size: 0.91rem; font-weight: 700; margin-bottom: 1px; }

/* ── ÜBER ────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: var(--radius-md); overflow: hidden; }
.about-img img { width: 100%; display: block; }
.about-txt p { margin-bottom: 16px; }
.checklist { border-top: 1px solid var(--beige-3); margin: 28px 0 36px; }
.ck-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 15px 0; border-bottom: 1px solid var(--beige-3);
  font-size: 0.91rem; color: var(--ink-2);
}
.ck-mark { color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 2px; font-size: 0.85rem; }

/* ── LEISTUNGS-REIHEN ────────────────────────────────────────────── */
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid var(--beige-3);
}
.svc-row:last-child { border-bottom: none; }
.svc-row.flip { direction: rtl; }
.svc-row.flip > * { direction: ltr; }
.svc-img { border-radius: var(--radius-md); overflow: hidden; }
.svc-img img { width: 100%; display: block; box-shadow: 0 16px 48px rgba(28,26,21,0.14); }
.svc-txt p { margin-top: 18px; margin-bottom: 14px; }
.link-more {
  font-size: 0.84rem; font-weight: 700; color: var(--red);
  letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.link-more:hover { gap: 9px; }

/* ── PREISE ──────────────────────────────────────────────────────── */
.price-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--beige-3); border: 1px solid var(--beige-3);
  margin-top: 48px;
}
.p-card { background: var(--beige-1); padding: 32px 24px; display: flex; flex-direction: column; transition: background 0.2s; }
.p-card:hover { background: var(--beige-2); }
.p-icon { font-size: 1.15rem; margin-bottom: 14px; }
.p-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.p-price { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--ink-1); line-height: 1; margin-bottom: 22px; }
.p-feats { list-style: none; border-top: 1px solid var(--beige-3); flex: 1; }
.p-feats li { padding: 9px 0; border-bottom: 1px solid var(--beige-3); font-size: 0.83rem; color: var(--ink-2); display: flex; gap: 9px; }
.p-feats li::before { content: '—'; color: var(--red); flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }
.p-note { text-align: center; font-size: 0.84rem; color: var(--ink-3); margin-top: 28px; }
.p-note a { color: var(--red); font-weight: 600; }

/* ── ABLAUF ──────────────────────────────────────────────────────── */
.proc-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--beige-3); border: 1px solid var(--beige-3);
  margin-top: 48px;
}
.proc-card { background: var(--beige-0); padding: 36px 28px; transition: background 0.2s; }
.proc-card:hover { background: var(--beige-1); }
.proc-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700;
  color: var(--red); opacity: 0.5; line-height: 1; margin-bottom: 18px; display: block;
}
.proc-card h3 { font-size: 0.98rem; margin-bottom: 10px; }
.proc-card p  { font-size: 0.87rem; line-height: 1.7; }
.proc-note {
  margin-top: 36px; padding: 28px 32px;
  background: var(--beige-1); border: 1px solid var(--beige-3);
  text-align: center; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.proc-note p { color: var(--ink-2); margin: 0; font-size: 0.93rem; }

/* ── KUNDENSTIMMEN ───────────────────────────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--beige-3); border: 1px solid var(--beige-3);
  margin-top: 48px;
}
.testi-card { background: var(--beige-0); padding: 36px 30px; transition: background 0.2s; border-top: 3px solid var(--red); }
.testi-card:hover { background: var(--beige-1); }
.testi-stars { color: #E8A800; font-size: 0.78rem; letter-spacing: 3px; margin-bottom: 18px; }
.testi-q { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink-1); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-by { font-size: 0.8rem; color: var(--ink-3); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list { margin-top: 48px; border: 1px solid var(--beige-3); }
.faq-item { border-bottom: 1px solid var(--beige-3); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%; background: var(--beige-0); border: none; cursor: pointer;
  text-align: left; padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: 'Source Sans 3', sans-serif; font-size: 0.94rem; font-weight: 600; color: var(--ink-1);
  transition: background 0.15s;
}
.faq-btn:hover { background: var(--beige-1); }
.faq-icon { color: var(--red); font-size: 1.1rem; transition: transform 0.28s; flex-shrink: 0; }
.faq-ans { padding: 0 28px 20px; font-size: 0.9rem; color: var(--ink-2); line-height: 1.8; display: none; background: var(--beige-0); }
.faq-item.open .faq-ans { display: block; border-left: 3px solid var(--red); padding-left: 25px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-btn { border-left: 3px solid var(--red); padding-left: 25px; }

/* ── KONTAKT ─────────────────────────────────────────────────────── */
.contact-section { background: var(--beige-1); border-top: 1px solid var(--beige-3); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: stretch; }
.contact-info p { margin-top: 18px; margin-bottom: 32px; }
.channels { border: 1px solid var(--beige-3); }
.ch-row {
  display: flex; align-items: center; gap: 16px;
  padding: 17px 20px; border-bottom: 1px solid var(--beige-3);
  background: var(--beige-0); transition: background 0.15s; text-decoration: none;
}
.ch-row:last-child { border-bottom: none; }
.ch-row:hover { background: var(--beige-1); }
.ch-ico { width: 36px; height: 36px; border-radius: var(--radius); background: var(--red-subtle); border: 1px solid rgba(165,35,54,0.18); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.ch-txt strong { font-size: 0.88rem; display: block; color: var(--ink-1); font-weight: 600; }
.ch-txt span { font-size: 0.8rem; color: var(--ink-2); }
.form-box { background: var(--beige-0); border: 1px solid var(--beige-3); padding: 36px; border-radius: var(--radius-md); display: flex; flex-direction: column; }
.form-box form { display: flex; flex-direction: column; flex: 1; }
.form-box form .form-g:has(textarea) { flex: 1; display: flex; flex-direction: column; }
.form-box form .form-g:has(textarea) textarea { flex: 1; resize: none; }
.form-box h3 { margin-bottom: 26px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-g { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-g label { font-size: 0.79rem; font-weight: 700; color: var(--ink-2); letter-spacing: 0.04em; }
.form-g input, .form-g textarea {
  background: var(--beige-1); border: 1.5px solid var(--beige-3);
  border-radius: var(--radius); padding: 12px 15px;
  color: var(--ink-1); font-family: 'Source Sans 3', sans-serif; font-size: 0.92rem;
  outline: none; width: 100%; transition: border-color 0.2s;
}
.form-g input:focus, .form-g textarea:focus { border-color: var(--red); background: var(--beige-0); }
.form-g input::placeholder, .form-g textarea::placeholder { color: var(--ink-3); }
.form-g textarea { min-height: 120px; resize: vertical; }
.form-priv { font-size: 0.78rem; color: var(--ink-3); line-height: 1.6; margin-bottom: 18px; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer { background: var(--beige-2); border-top: 3px solid var(--red); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.83rem; color: var(--ink-2); margin-top: 14px; line-height: 1.7; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.84rem; color: var(--ink-2); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--ink-1); }
.footer-bot { border-top: 1px solid var(--beige-3); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.78rem; color: var(--ink-3); }
.footer-bot a { color: var(--ink-3); margin-left: 16px; transition: color 0.15s; }
.footer-bot a:hover { color: var(--ink-2); }

/* ── MOBILER KONTAKT-BUTTON ─────────────────────────────────────── */
.float-opt {
  display: flex; align-items: center; gap: 12px;
  background: var(--beige-0); border: 1px solid var(--beige-3);
  padding: 10px 18px 10px 12px; border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(28,26,21,0.18); white-space: nowrap;
  text-decoration: none; transition: border-color 0.2s, transform 0.2s;
}
.float-opt:hover { border-color: var(--beige-2); transform: translateX(-3px); }
.float-opt-ico { width: 32px; height: 32px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-opt-ico.wa   { background: #25D366; }
.float-opt-ico.mail { background: var(--red); }
.float-opt-lbl { font-size: 0.82rem; font-weight: 700; color: var(--ink-1); display: block; }
.float-opt-sub { font-size: 0.73rem; color: var(--ink-2); display: block; margin-top: 1px; }

/* ── ANIMATIONEN ─────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.fu  { animation: fadeUp 0.7s ease both; }
.d1  { animation-delay: 0.1s; }
.d2  { animation-delay: 0.22s; }
.d3  { animation-delay: 0.34s; }
.d4  { animation-delay: 0.46s; }

/* ── REPARATURBERICHT ELEMENTE ───────────────────────────────────── */

/* Nummerierte Abschnitte */
.rb-section { margin-top: 48px; }
.rb-section-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.rb-section-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--red); color: #fff; font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; margin-top: 5px; }
.rb-section-header h2 { margin: 0; }
.rb-section p { color: var(--ink-2); line-height: 1.85; }
.rb-section p + p { margin-top: 12px; }

/* Ergebnis-Box */
.rb-result { margin-top: 48px; background: var(--dark-1); border-radius: var(--radius-md); padding: 28px 32px; display: flex; gap: 22px; align-items: flex-start; }

.rb-result-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.rb-result-eyebrow { font-family: 'Source Sans 3', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #7ec87e; margin-bottom: 6px; display: block; }
.rb-result h3 { font-size: 1.15rem; color: var(--light-1); margin-bottom: 10px; }
.rb-result p { font-size: 0.92rem; color: var(--light-2); margin: 0; line-height: 1.7; }

/* Kosten-Footer (innerhalb rb-result) */
.rb-result-cost { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 10px; }
.rb-result-cost svg { flex-shrink: 0; opacity: 0.6; }
.rb-result-cost span { font-size: 0.88rem; color: var(--light-2); }
.rb-result-cost strong { color: var(--light-1); font-weight: 600; }

/* Bildgalerie im Bericht */
.rb-gallery { margin-top: 32px; border-radius: var(--radius-md); overflow: hidden; }
.rb-gallery img { width: 100%; height: 360px; object-fit: cover; display: block; }
.rb-gallery-2 { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: var(--radius-md); overflow: hidden; }
.rb-gallery-2 img { width: 100%; height: 280px; object-fit: cover; display: block; }
.rb-gallery-3 { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; border-radius: var(--radius-md); overflow: hidden; }
.rb-gallery-3 img { width: 100%; height: 260px; object-fit: cover; display: block; }

/* Tipp-Box */
.rb-tip { margin-top: 48px; background: #fdf8ed; border: 1px solid #e5d280; border-left: 3px solid #c4a820; border-radius: var(--radius-md); padding: 22px 26px; }
.rb-tip-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rb-tip-header strong { font-family: 'Source Sans 3', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #8a7010; }
.rb-tip p { font-size: 0.91rem; color: var(--ink-2); margin: 0; line-height: 1.72; }
.rb-tip p + p { margin-top: 10px; }

/* ── FACT SHEET (Modell / Defekt / Verfahren / Aufwand) ─────────── */
.rb-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--beige-3); border: 1px solid var(--beige-3); border-radius: var(--radius-md); overflow: hidden; margin: 0 0 44px; }
.rb-fact { background: var(--beige-1); padding: 18px 20px; }
.rb-fact-lbl { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.rb-fact-val { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1.1rem; color: var(--ink-1); line-height: 1.2; }
.rb-fact-val small { display: block; font-family: 'Source Sans 3', sans-serif; font-weight: 400; font-size: 0.8rem; color: var(--ink-2); margin-top: 3px; letter-spacing: 0; text-transform: none; }
@media (max-width: 680px) { .rb-facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .rb-facts { grid-template-columns: 1fr; } }

/* ── PULL / HERVORGEHOBENER HINWEIS ─────────────────────────────── */
.rb-pull { border-left: 3px solid var(--red); background: linear-gradient(90deg, rgba(165,35,54,0.06), transparent 80%); padding: 16px 20px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 20px 0 16px; font-size: 1.04rem; font-style: italic; color: var(--ink-1); line-height: 1.6; }

/* ── PROZESSSCHRITTE ────────────────────────────────────────────── */
.rb-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0 16px; }
.rb-step { background: var(--beige-1); border: 1px solid var(--beige-3); border-radius: var(--radius-md); padding: 18px 20px; }
.rb-step-num { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.rb-step h3 { font-size: 0.97rem; font-weight: 600; color: var(--ink-1); margin: 0 0 6px; }
.rb-step p { font-size: 0.87rem; color: var(--ink-2); margin: 0; line-height: 1.6; }
@media (max-width: 680px) { .rb-steps { grid-template-columns: 1fr; } }

/* ── BILD-PROZESSUNTERSCHRIFT (// Fertigungsschritte: …) ─────────── */
.rb-proc-caption { margin-top: 0; padding: 10px 16px; background: var(--beige-2); border: 1px solid var(--beige-3); border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md); font-size: 0.75rem; font-family: 'Source Sans 3', sans-serif; letter-spacing: 0.06em; color: var(--ink-3); }
.rb-gallery.has-caption { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.rb-gallery.has-caption img { border-radius: var(--radius-md) var(--radius-md) 0 0; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .svc-row, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-wrap { padding: 60px 24px; min-height: auto; padding-top: 24px; }
  .hero-bg { inset: 0; }
  .svc-row.flip { direction: ltr; }
  .svc-img { order: -1; }
  .price-grid { grid-template-columns: repeat(2,1fr); }
  .proc-grid  { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell  { border-right: none; border-bottom: 1px solid var(--beige-3); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row2  { grid-template-columns: 1fr; }
  .nav-links  { display: none; }
  .nav-mob    { display: flex; }
  .sig-item   { padding: 5px 16px; }
}
@media (max-width: 560px) {
  .price-grid, .proc-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.2rem; }
  .rb-gallery img { height: 220px; }
  .rb-gallery-2 img { height: 180px; }
  .rb-gallery-3 { grid-template-columns: 1fr 1fr; }
  .rb-gallery-3 img { height: 160px; }
}

/* ── MOBILE-ONLY FIXES ── */

/* Anfrage stellen Button im Mobil-Menü: weißer Text, Padding links/rechts */
.mobile-menu a.btn-primary {
  color: #fff !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

/* Mehr Abstand zwischen erstem Menüpunkt und roter Trennlinie */
.mobile-menu a:first-child {
  padding-top: 20px;
}

/* Mobiler aufklappbarer Kontakt-Button (nur mobil) */
.mob-float {
  display: flex;
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.mob-float-opts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s, transform 0.22s;
}
.mob-float.open .mob-float-opts {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mob-float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(165,35,54,0.35);
  transition: background 0.2s, transform 0.3s;
  flex-shrink: 0;
}
.mob-float-btn:hover { background: var(--red-deep); }
.mob-float.open .mob-float-btn { background: var(--dark-2); transform: rotate(45deg); }
.mob-float-ico-close { display: none; }
.mob-float.open .mob-float-ico-open { display: none; }
.mob-float.open .mob-float-ico-close { display: block; }

/* Desktop: Button ausblenden */
@media (min-width: 901px) {
  .mob-float { display: none !important; }
}

/* ── RESPONSIVE 3-SPALTEN-GRID ── */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--beige-3);
  border: 1px solid var(--beige-3);
}
@media (max-width: 900px) {
  .grid-3col { grid-template-columns: 1fr; }
}

/* ── MOBILE: Page-Hero Zentrierung ── */
@media (max-width: 900px) {
  .page-hero-content { text-align: center; padding: 80px 0 48px; }
  .page-hero-content > div[style*="flex"] { justify-content: center; }
  .page-hero-content p { max-width: 100% !important; }
}

/* ── MOBILE: Eyebrow-Zeile (flex space-between) ── */
@media (max-width: 900px) {
  .eyebrow-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
}
