/* ============================================================
   SCHLÜSSELDIENST BRAUN – Global Styles
   Design: Premium Notdienst – Anthrazit + Amber
   Fonts: Barlow Condensed (Display) + Source Sans 3 (Body)
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --anthrazit:     #1A2336;
  --anthrazit-mid: #243049;
  --anthrazit-lg:  #2E3D5C;
  --amber:         #F0A500;
  --amber-dark:    #D4910A;
  --amber-light:   #FFC234;
  --weiss:         #FFFFFF;
  --hellgrau:      #F4F7FB;
  --grau:          #E2E8F0;
  --grau-mid:      #B0BEC5;
  --text:          #1A2336;
  --text-mid:      #4A5568;
  --text-light:    #718096;
  --success:       #2ECC71;
  --whatsapp:      #25D366;
  --whatsapp-dark: #1DAE56;
  --radius:        6px;
  --radius-lg:     12px;
  --shadow-sm:     0 2px 8px rgba(26,35,54,.10);
  --shadow-md:     0 6px 24px rgba(26,35,54,.14);
  --shadow-lg:     0 16px 48px rgba(26,35,54,.20);
  --transition:    .22s ease;
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Source Sans 3', sans-serif;
  --max-w:         1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--weiss);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

/* --- Layout Helpers --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding-block: 5rem; }
.section--sm { padding-block: 3rem; }
.section--lg { padding-block: 7rem; }
.section--dark { background: var(--anthrazit); color: var(--weiss); }
.section--gray { background: var(--hellgrau); }

.text-center { text-align: center; }
.text-amber  { color: var(--amber); }
.text-light  { color: var(--text-light); }

.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 3rem;
}

.text-center .section-sub { margin-inline: auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--anthrazit);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

/* Logo */
.nav-logo img {
  height: 44px;
  width: auto;
}

/* Main nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-menu > li { position: relative; }

.nav-menu a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.88);
  padding: .5rem .85rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--amber);
  background: rgba(240,165,0,.08);
}

/* Dropdown */
.nav-menu .dropdown { position: relative; }

.nav-menu .dropdown > a::after {
  content: '▾';
  font-size: .7rem;
  margin-left: .35rem;
  opacity: .7;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: .5rem .6rem .6rem; /* .5rem oben = Brücke über den Gap */
  background: var(--weiss);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  z-index: 200;
  border-top: 3px solid var(--amber);
}

.dropdown-menu a {
  color: var(--text);
  font-size: .9rem;
  padding: .55rem 1rem;
  border-radius: var(--radius);
  display: block;
}

.dropdown-menu a:hover {
  background: var(--hellgrau);
  color: var(--amber-dark);
}

.dropdown:hover .dropdown-menu { display: block; }

/* CTA phone */
.nav-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--amber);
  color: var(--anthrazit);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-call:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240,165,0,.35);
}

.btn-call svg { flex-shrink: 0; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--weiss);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .03em;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn--amber {
  background: var(--amber);
  color: var(--anthrazit);
}

.btn--amber:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,165,0,.35);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--weiss);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--amber);
  color: var(--amber);
}

.btn--outline:hover {
  background: var(--amber);
  color: var(--anthrazit);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: var(--weiss);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--weiss);
}

.btn--lg { font-size: 1.2rem; padding: 1rem 2.2rem; }
.btn--sm { font-size: .9rem; padding: .55rem 1.2rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  background: var(--anthrazit);
  padding-block: 6rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(46,61,92,.6) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 2C16.7 2 6 12.7 6 26c0 5.6 1.9 10.8 5.1 14.9L2 52l11.3-9C17.4 46.1 23.4 48 30 48c13.3 0 24-10.7 24-24S43.3 2 30 2z' fill='rgba(240,165,0,.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(26,35,54,.08));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(240,165,0,.12);
  border: 1px solid rgba(240,165,0,.3);
  color: var(--amber);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--weiss);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-phone-display {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 2.5rem;
}

/* Trust badges under hero */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
}

.hero-trust-item svg {
  flex-shrink: 0;
  color: var(--amber);
}

/* ============================================================
   TRUST STRIP (after hero)
   ============================================================ */

.trust-strip {
  background: var(--anthrazit-mid);
  padding-block: 2rem;
  border-bottom: 3px solid var(--amber);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--weiss);
}

.trust-strip-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(240,165,0,.12);
  border: 1px solid rgba(240,165,0,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.trust-strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.trust-strip-item span {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--weiss);
  border: 1px solid var(--grau);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240,165,0,.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(240,165,0,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: .6rem;
}

.service-card p {
  color: var(--text-mid);
  font-size: .95rem;
  margin-bottom: 1.25rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--amber-dark);
  transition: gap var(--transition);
}

.service-card-link:hover { gap: .7rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(to right, var(--amber) 0%, rgba(240,165,0,.2) 100%);
}

.process-card {
  text-align: center;
  position: relative;
}

.process-number {
  width: 56px;
  height: 56px;
  background: var(--amber);
  color: var(--anthrazit);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(240,165,0,.12);
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.process-card p {
  color: var(--text-mid);
  font-size: .9rem;
}

/* Vertical variant (for partials/howto-process.twig) */
.process-grid--vertical {
  grid-template-columns: 1fr;
  max-width: 640px;
  gap: 0;
}

.process-grid--vertical::before { display: none; }

.process-grid--vertical .process-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-align: left;
  padding-bottom: 2rem;
  padding-left: 0;
}

.process-grid--vertical .process-card:last-child {
  padding-bottom: 0;
}

.process-grid--vertical .process-number {
  margin: 0;
  flex-shrink: 0;
}

.process-grid--vertical .process-card h3 { margin-bottom: .35rem; }

/* ============================================================
   PRICING TABLE
   ============================================================ */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--weiss);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table thead th {
  background: var(--anthrazit);
  color: var(--weiss);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-align: left;
  padding: 1rem 1.5rem;
}

.pricing-table thead th:last-child {
  text-align: right;
  color: var(--amber);
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--grau);
  transition: background var(--transition);
}

.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--hellgrau); }

.pricing-table td {
  padding: .9rem 1.5rem;
  font-size: .95rem;
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--anthrazit);
}

.pricing-table td.price-fixed {
  color: var(--amber-dark);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(46,204,113,.12);
  color: #1B7A48;
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 100px;
  margin-left: .5rem;
}

@media (max-width: 768px) {
  /* Beschreibungsspalte ausblenden – 2-spaltige Tabelle passt auf jedes Gerät */
  .pricing-table th:nth-child(2),
  .pricing-table td:nth-child(2) { display: none; }

  .pricing-table td,
  .pricing-table th { padding: .75rem 1rem; }

  .pricing-table td:last-child,
  .pricing-table th:last-child { white-space: nowrap; }

  .pricing-badge { display: none; }
}

/* ============================================================
   REVIEWS / RATINGS
   ============================================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--weiss);
  border: 1px solid var(--grau);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: .8rem;
  color: var(--amber);
}

.review-text {
  font-size: .95rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--anthrazit);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: .9rem;
}

.review-author span {
  font-size: .8rem;
  color: var(--text-light);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list { max-width: 860px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid var(--grau);
}

.faq-item:first-child { border-top: 1px solid var(--grau); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--amber-dark); }

.faq-question-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--hellgrau);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  transition: background var(--transition), transform var(--transition);
}

.faq-item.open .faq-question-icon {
  background: var(--amber);
  color: var(--anthrazit);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--text-mid);
  font-size: .97rem;
  line-height: 1.7;
}

.faq-answer p + p { margin-top: .75rem; }

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CTA BANNER / STÖRER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--anthrazit) 0%, var(--anthrazit-lg) 100%);
  padding-block: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(240,165,0,.06);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--weiss);
  margin-bottom: .75rem;
}

.cta-banner p {
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.stoerer {
  background: var(--amber);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.stoerer-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--anthrazit);
  max-width: 600px;
}

.stoerer .btn--amber {
  background: var(--anthrazit);
  color: var(--amber);
}

.stoerer .btn--amber:hover {
  background: var(--anthrazit-mid);
  box-shadow: 0 6px 20px rgba(26,35,54,.3);
}

/* ============================================================
   CHECKLIST
   ============================================================ */

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: 1rem;
}

.checklist-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--anthrazit);
  margin-top: .15rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-form {
  background: var(--weiss);
  border: 1px solid var(--grau);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--grau);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--text);
  background: var(--weiss);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(240,165,0,.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================================
   CITY PAGE (STADTSEITE)
   ============================================================ */

.city-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--anthrazit);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
  border-bottom: 3px solid var(--amber);
}

.city-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

.city-nav-logo img {
  height: 44px;
  width: auto;
}

.city-nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}

.city-nav-links a {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: .5rem .85rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.city-nav-links a:hover,
.city-nav-links a.active {
  color: var(--amber);
  background: rgba(240,165,0,.08);
}

.city-nav-cta a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  white-space: nowrap;
  letter-spacing: .01em;
}

.city-nav-cta a:hover { color: var(--amber-dark); }

.sidebar-sticky {
  position: sticky;
  top: calc(68px + 1.5rem); /* Nav-Höhe + Abstand */
  align-self: start;
}

.city-nearby {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.city-nearby a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--amber-dark);
  background: var(--hellgrau);
  padding: .4rem .9rem;
  border-radius: 100px;
  border: 1px solid var(--grau);
  transition: background var(--transition), border-color var(--transition);
}

.city-nearby a:hover {
  background: rgba(240,165,0,.08);
  border-color: var(--amber);
}

/* ============================================================
   BLOG / RATGEBER
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--weiss);
  border: 1px solid var(--grau);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  background: var(--anthrazit-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 1.5rem; }

.blog-card-category {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: .5rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  line-height: 1.3;
}

.blog-card p {
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.blog-card-meta {
  font-size: .82rem;
  color: var(--text-light);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--text-light);
  padding-block: 1rem;
}

.breadcrumb a {
  color: var(--amber-dark);
  font-weight: 600;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb-sep { color: var(--grau-mid); }

/* ============================================================
   INFO CARDS / ICON BOXES
   ============================================================ */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--hellgrau);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 4px solid var(--amber);
}

.info-card-icon {
  color: var(--amber-dark);
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.info-card p {
  font-size: .9rem;
  color: var(--text-mid);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--anthrazit);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo img {
  height: 42px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-desc {
  font-size: .9rem;
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .6rem;
  font-size: .9rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--amber);
}

.footer-contact-item a {
  color: var(--weiss);
  font-weight: 600;
}

.footer-contact-item a:hover { color: var(--amber); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--weiss);
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}

.footer-nav li { margin-bottom: .5rem; }

.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.footer-nav a::before {
  content: '→';
  font-size: .7rem;
  color: var(--amber);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-4px);
}

.footer-nav a:hover {
  color: var(--weiss);
}

.footer-nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-hours {
  font-size: .9rem;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-row .open { color: var(--success); font-weight: 700; }

.footer-bottom {
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-left {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--amber); }

.footer-vermittler {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

/* ============================================================
   STICKY MOBILE BUTTONS
   ============================================================ */

.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--anthrazit);
  border-top: 2px solid rgba(255,255,255,.1);
  padding: .5rem .75rem;
  gap: .5rem;
  flex-direction: row;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  width: 100%;
}

.mobile-sticky-btn--call {
  background: var(--amber);
  color: var(--anthrazit);
}

.mobile-sticky-btn--whatsapp {
  background: var(--whatsapp);
  color: var(--weiss);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--anthrazit) 0%, var(--anthrazit-lg) 100%);
  padding-block: 4rem 3rem;
  color: var(--weiss);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--weiss);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero--gray::after { background: var(--hellgrau); }

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--weiss);
  margin-bottom: .75rem;
}

.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ============================================================
   CONTENT PROSE (for long-form text sections)
   ============================================================ */

.prose h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-top: 1.75rem;
  margin-bottom: .75rem;
}

.prose p {
  color: var(--text-mid);
  line-height: 1.75;
}

.prose ul, .prose ol {
  padding-left: 1.5rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.prose ul li { list-style: disc; margin-bottom: .35rem; }
.prose ol li { list-style: decimal; margin-bottom: .35rem; }

.prose strong { color: var(--text); }

/* ============================================================
   CHIPS / TAGS
   ============================================================ */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--hellgrau);
  color: var(--text-mid);
  font-size: .82rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 100px;
  border: 1px solid var(--grau);
}

/* ============================================================
   NOTICE / ALERT
   ============================================================ */

.notice {
  background: rgba(240,165,0,.08);
  border: 1px solid rgba(240,165,0,.3);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .93rem;
  color: var(--text-mid);
}

.notice strong { color: var(--amber-dark); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,165,0,.4); }
  50%       { box-shadow: 0 0 0 10px rgba(240,165,0,0); }
}

.animate-fade-up { animation: fadeUp .5s ease both; }
.pulse-amber { animation: pulse 2.5s ease infinite; }

/* ============================================================
   RESPONSIVE – Mobile
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--anthrazit-mid);
    padding: 1rem;
    gap: .25rem;
    border-bottom: 3px solid var(--amber);
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open a { font-size: 1.05rem; padding: .75rem 1rem; }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    border-top: none;
    padding: .25rem 0 .5rem 1rem;
  }

  .dropdown-menu a { color: rgba(255,255,255,.75); }
  .dropdown-menu a:hover { background: rgba(255,255,255,.07); color: var(--amber); }

  .nav-cta .btn-call .btn-label { display: none; }

  /* Hero */
  .hero { padding-block: 4rem 3rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 1rem; }

  /* Process */
  .process-grid::before { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-desc { max-width: none; }

  /* Sticky mobile buttons */
  .mobile-sticky { display: flex; }

  /* Bottom padding to avoid overlap with sticky bar (~70px) */
  .site-footer { padding-bottom: 70px; }

  /* Section padding */
  .section { padding-block: 3.5rem; }
  .section--lg { padding-block: 4.5rem; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: .8rem; }
  .trust-strip-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .btn--lg { font-size: 1rem; padding: .85rem 1.6rem; }
  .contact-form { padding: 1.5rem; }
  .stoerer { flex-direction: column; }
}

/* USP grid (Leistungen-Seite): single column on mobile */
@media (max-width: 768px) {
  .usp-grid { grid-template-columns: 1fr !important; }
}

/* Content + Sidebar layout: sidebar above content on mobile */
@media (max-width: 768px) {
  .content-with-sidebar {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .content-with-sidebar .sidebar-sticky {
    position: static;
    order: -1;
  }
}

/* Über Uns & Kontakt responsive grid */
@media (max-width: 768px) {
  .ueber-uns-grid,
  .kontakt-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Homepage Banner-Bilder */
.home-banner {
  overflow: hidden;
  line-height: 0;
  height: 400px;
}
@media (max-width: 768px) {
  .home-banner {
    height: 220px;
  }
}
