/* =========================================================
   Classic Clean Karlsruhe – main.css
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* --- 1. CSS Variables --- */
:root {
  --red:        #CC1A1C;
  --red-dark:   #A81517;
  --red-light:  #F5DEDE;
  --dark:       #1A1A1A;
  --mid:        #444444;
  --muted:      #777777;
  --border:     #E0DDD8;
  --bg:         #FAFAF8;
  --bg-section: #F3F1EE;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --radius:     6px;
  --radius-lg:  12px;
  --max-w:      1160px;
  --font:         'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Open Sans', system-ui, -apple-system, sans-serif;
  --transition: .22s ease;
}

/* --- 2. Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 500; font-family: var(--font-heading); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- 3. Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--gray { background: var(--bg-section); }
.section--dark { background: var(--dark); color: var(--white); }
.section--red  { background: var(--red); color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* --- 4. Typography --- */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title--white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.section-subtitle--white { color: rgba(255,255,255,.8); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- 5. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); }
.btn-outline {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover { background: var(--red-light); }
.btn-outline-white {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* --- 6. Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  padding: .45rem .85rem;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 500;
  color: var(--mid);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--red); background: var(--red-light); }
.header-cta { display: flex; align-items: center; gap: .75rem; }
.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
  white-space: nowrap;
}
.header-phone svg { color: var(--red); }
.header-cta .btn-primary {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  padding: .42rem 1.1rem;
  font-size: .84rem;
}
.header-cta .btn-primary:hover {
  background: var(--red);
  color: var(--white);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: .5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .9rem 1rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--red); padding-left: 1.4rem; }
.mobile-nav .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* --- 7. Hero Section --- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .22;
}
.hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content {
  max-width: 580px;
  padding: 5rem 0;
  text-align: left;
}
.hero-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero h1 em { color: var(--white); font-style: normal; font-weight: 400; }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: .73rem;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
  letter-spacing: .02em;
}

/* --- 8. USP / Feature Cards --- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--red);
  transition: var(--transition);
}
.usp-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.usp-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.usp-icon svg { color: var(--red); }
.usp-card h3 { font-size: 1rem; margin-bottom: .5rem; font-weight: 600; }
.usp-card p { font-size: .88rem; color: var(--muted); margin: 0; }

/* --- 9. About/Info Strip --- */
.about-strip {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.about-strip-img {
  flex: 0 0 46%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-strip-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
}
.about-strip-text { flex: 1; }
.about-strip-text .section-subtitle { max-width: none; }

/* --- 10. Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--red); }
.service-card-img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 1.75rem; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.service-card-body p { font-size: .9rem; color: var(--muted); margin-bottom: 1.1rem; }
.service-card-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.service-card-link:hover { color: var(--red-dark); gap: .55rem; }

/* --- 11. Price List --- */
.price-section { background: var(--bg); }
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: .75rem;
}
.price-tab {
  padding: .5rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: .88rem;
  font-weight: 600;
  background: var(--white);
  color: var(--mid);
  cursor: pointer;
  transition: var(--transition);
}
.price-tab.active,
.price-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.price-panel { display: none; }
.price-panel.active { display: block; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table thead tr { background: var(--dark); color: var(--white); }
.price-table th { padding: .9rem 1.2rem; text-align: left; font-size: .88rem; font-weight: 600; }
.price-table td { padding: .8rem 1.2rem; font-size: .92rem; border-bottom: 1px solid var(--border); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--bg-section); }
.price-amount { font-weight: 700; color: var(--red); white-space: nowrap; }
.price-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }

/* --- 12. Blog / Tipps Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--red); transform: translateY(-2px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img-placeholder svg { color: var(--border); }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}
.card-body h3 { font-size: 1.05rem; margin-bottom: .6rem; line-height: 1.35; }
.card-body p { font-size: .88rem; color: var(--muted); flex: 1; margin-bottom: 1.1rem; }
.card-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--muted);
}
.card-read-more {
  font-size: .88rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.card-read-more:hover { color: var(--red-dark); }

/* --- 13. CTA Banner --- */
.cta-banner {
  background: var(--red);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 1.75rem; font-size: 1rem; }
.cta-banner .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- 14. Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.contact-info h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { color: var(--red); }
.contact-item-text strong { display: block; font-size: .82rem; color: var(--muted); font-weight: 600; margin-bottom: .15rem; }
.contact-item-text a { font-size: 1rem; font-weight: 600; color: var(--dark); }
.contact-item-text a:hover { color: var(--red); }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.contact-map iframe {
  width: 100%;
  flex: 1;
  height: 100%;
  min-height: 380px;
  border: none;
  border-radius: var(--radius-lg);
  display: block;
}
.map-placeholder {
  width: 100%;
  height: 380px;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--border);
}
.map-placeholder p { color: var(--muted); font-size: .9rem; margin: 0; }

/* --- 15. FAQ Accordion --- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--red); transform: rotate(45deg); }
.faq-icon svg { color: var(--dark); }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.25rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --- 16. Footer --- */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  margin-bottom: 1.25rem;
  display: inline-block;
  background: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius);
}
.footer-brand .logo img { display: block; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); padding-left: .4rem; }
.footer-col address { font-style: normal; font-size: .9rem; line-height: 1.8; }
.footer-col address a { color: rgba(255,255,255,.65); }
.footer-col address a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .82rem; }
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-legal-links a:hover { color: var(--white); }

/* --- 17. Breadcrumb --- */
.breadcrumb-bar { background: var(--bg-section); border-bottom: 1px solid var(--border); padding: .75rem 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--dark); font-weight: 600; }

/* --- 18. Page Header (Subpages) --- */
.page-header {
  background: var(--dark);
  color: var(--white);
  padding: 3.5rem 0;
}
.page-header .section-label { color: #FF9090; }
.page-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: .75rem;
}
.page-header p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 580px; margin: 0; }

/* --- 19. Article Layout --- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.article-body h2 { font-size: 1.45rem; margin: 2rem 0 .9rem; }
.article-body h3 { font-size: 1.15rem; margin: 1.6rem 0 .7rem; }
.article-body p { font-size: 1rem; color: var(--mid); line-height: 1.75; }
.article-body ul, .article-body ol {
  margin: 1rem 0 1.25rem 1.5rem;
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.75;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.article-meta-tag {
  background: var(--red-light);
  color: var(--red);
  padding: .25rem .7rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: .78rem;
}
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h3 { font-size: 1rem; margin-bottom: 1rem; }
.sidebar-cta { background: var(--red); color: var(--white); }
.sidebar-cta h3 { color: var(--white); }
.sidebar-cta p { font-size: .9rem; color: rgba(255,255,255,.85); margin-bottom: 1.25rem; }
.sidebar-cta .btn-white { width: 100%; justify-content: center; }
.sidebar-links li { margin-bottom: .5rem; }
.sidebar-links a { font-size: .9rem; color: var(--mid); display: flex; align-items: center; gap: .4rem; }
.sidebar-links a:hover { color: var(--red); }

/* --- 20. Annahmestellen Card --- */
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.location-card-img { width: 100%; height: 260px; object-fit: cover; }
.location-card-body { padding: 2rem; }
.location-card-body h2 { font-size: 1.4rem; margin-bottom: .5rem; }
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--red-light);
  color: var(--red);
  padding: .2rem .65rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.location-detail-item strong { display: block; font-size: .8rem; color: var(--muted); margin-bottom: .2rem; }
.location-hours-table { width: 100%; font-size: .9rem; }
.location-hours-table td { padding: .3rem 0; }
.location-hours-table td:last-child { text-align: right; font-weight: 600; }

/* --- 21. Highlight Box --- */
.highlight-box {
  background: var(--red-light);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { color: var(--dark); margin: 0; font-size: .95rem; }

/* --- 22. Tip Icon List --- */
.tip-list { display: flex; flex-direction: column; gap: .75rem; }
.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.tip-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tip-item-icon svg { color: var(--red); }
.tip-item-text strong { display: block; font-size: .9rem; margin-bottom: .2rem; }
.tip-item-text span { font-size: .85rem; color: var(--muted); }

/* --- 23. Wash Symbol Table --- */
.symbol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.symbol-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.symbol-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.symbol-card strong { display: block; font-size: .88rem; margin-bottom: .3rem; }
.symbol-card span { font-size: .8rem; color: var(--muted); }

/* --- 24. Notice / TODO box --- */
.notice-box {
  background: #FFFBEA;
  border: 1px dashed #D4A207;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .88rem;
  color: #7A5E00;
  margin: .75rem 0;
}

/* --- 25. Wäscheservice Section Grid --- */
.waescheservice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* --- 26. Card image top-aligned --- */
.card-img--top { object-position: top; }

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Prevent horizontal scroll globally */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .grid-2,
  .grid-3,
  .services-grid,
  .about-strip,
  .contact-grid,
  .location-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .about-strip { flex-direction: column; gap: 2rem; }
  .about-strip-img img { height: 280px; }
  .usp-grid { grid-template-columns: 1fr; margin-top: -1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .hero { min-height: 480px; }
  .hero-content { padding: 3.5rem 0; }
  .hero-stats { gap: 1.5rem; }
  .usp-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; flex-shrink: 0; }
  .header-inner { gap: .5rem; overflow: hidden; }
  .logo img { height: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .price-tabs { gap: .4rem; }
  .price-tab { font-size: .8rem; padding: .4rem .8rem; }
  .price-table th, .price-table td { padding: .65rem .85rem; font-size: .88rem; }
  .contact-grid { gap: 2rem; }
  .waescheservice-grid { grid-template-columns: 1fr; gap: 2rem; }
  .waescheservice-grid > div:last-child { order: -1; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .btn { padding: .75rem 1.4rem; font-size: .9rem; }
  .header-inner { height: 60px; }
  .mobile-nav { top: 60px; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}
