/* ================================================================
   LOOFAH-HOCHEGG — Gemeinsames Stylesheet
   Exakter Klon des RZ-Hochegg Designs, Loofah-Inhalte auf Deutsch
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  --blue:        #1a5276;
  --blue-mid:    #21618c;
  --blue-light:  #2e86c1;
  --blue-pale:   #d6eaf8;
  --blue-hover:  #c5d9ee;
  --green:       #1e8449;
  --green-light: #27ae60;
  --green-pale:  #d5f5e3;
  --gray:        #566573;
  --gray-light:  #aab7b8;
  --gray-pale:   #f2f3f4;
  --border:      #dde1e4;
  --white:       #ffffff;
  --ink:         #1c2833;
  --ink-mid:     #566573;
  --red:         #c0392b;
  --orange:      #d35400;
  --sidebar-w:   240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue-light); text-decoration: none; }
a:hover { color: var(--blue); text-decoration: underline; }
strong { font-weight: 600; }
ul { padding-left: 1.4rem; }
ul li { margin-bottom: 0.3rem; }

/* ================================================================
   TOP BAR
   ================================================================ */
.topbar {
  background: var(--blue);
  padding: 0.3rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: 0.75rem;
}
.topbar a {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
}
.topbar a:hover { color: white; text-decoration: none; }

/* ================================================================
   SITE HEADER
   ================================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.logo-icon {
  width: 50px; height: 50px;
  background: var(--blue);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  color: white;
}
.logo-name {
  font-family: 'Source Serif 4', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.1;
  display: block;
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.15rem;
}
.header-right { display: flex; align-items: center; gap: 1.2rem; }
.btn-antrag {
  background: var(--green);
  color: white;
  padding: 0.42rem 1rem;
  border-radius: 3px;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}
.btn-antrag:hover { background: var(--green-light); color: white; text-decoration: none; }
.search-wrap {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.search-wrap input {
  border: none;
  padding: 0.38rem 0.7rem;
  font-family: inherit;
  font-size: 0.84rem;
  outline: none;
  width: 170px;
  color: var(--ink);
}
.search-wrap button {
  background: var(--blue);
  border: none;
  color: white;
  padding: 0.38rem 0.65rem;
  cursor: pointer;
  font-size: 0.84rem;
}

/* ================================================================
   HAUPTNAVIGATION (sticky, weiß, blauer Unterstrich)
   ================================================================ */
.main-nav {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.main-nav > ul {
  display: flex;
  list-style: none;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1rem;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 0.95rem 1rem;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--blue);
  border-bottom-color: var(--blue);
  text-decoration: none;
}
/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  min-width: 270px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  z-index: 200;
  padding: 0.4rem 0;
}
.main-nav li:hover > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.5rem 1.2rem;
  color: var(--ink-mid);
  font-size: 0.87rem;
  border-left: 3px solid transparent;
}
.dropdown a:hover {
  background: var(--blue-pale);
  color: var(--blue);
  border-left-color: var(--blue);
  text-decoration: none;
}
.dd-also {
  margin-top: 0.4rem;
  padding: 0.5rem 1.2rem 0.3rem;
  border-top: 1px solid var(--border);
}
.dd-also-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}
.dd-also a {
  padding: 0.22rem 0;
  font-size: 0.82rem;
  border-left: none;
  color: var(--blue-light);
}
.dd-also a:hover { background: none; border-left: none; }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  background: var(--gray-pale);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 2rem;
  font-size: 0.8rem;
  color: var(--gray);
  max-width: 100%;
}
.breadcrumb .inner {
  max-width: 1160px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--blue-light); font-size: 0.8rem; }
.breadcrumb span { margin: 0 0.35rem; }

/* ================================================================
   SEITEN-LAYOUT: Sidebar links + Content rechts
   ================================================================ */
.page-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

/* SIDEBAR */
.sidebar {
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
}
.sidebar-heading {
  background: var(--blue);
  color: white;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  text-decoration: none;
}
.sidebar-heading:hover { color: white; text-decoration: none; background: var(--blue-mid); }
.sidebar ul { list-style: none; padding: 0; }
.sidebar ul li { border-bottom: 1px solid var(--border); }
.sidebar ul li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--ink-mid);
  border-left: 3px solid transparent;
  transition: all 0.12s;
}
.sidebar ul li a:hover,
.sidebar ul li a.active {
  background: var(--blue-pale);
  color: var(--blue);
  border-left-color: var(--blue);
  text-decoration: none;
}
.sidebar-also {
  padding: 0.7rem 1rem;
  border-top: 2px solid var(--border);
  background: var(--gray-pale);
}
.sidebar-also-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-light);
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}
.sidebar-also a {
  display: block;
  font-size: 0.8rem;
  color: var(--blue-light);
  padding: 0.15rem 0;
}

/* CONTENT */
.content h1 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.content h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue);
  margin: 2rem 0 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 1.2rem; }
.content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.2rem 0 0.4rem;
}
.content p { margin-bottom: 1rem; color: var(--ink-mid); font-size: 0.95rem; }
.content p:last-child { margin-bottom: 0; }
.content ul { margin-bottom: 1rem; }
.content ul li { font-size: 0.95rem; color: var(--ink-mid); margin-bottom: 0.3rem; }
.content strong { color: var(--ink); }
.lead-text {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.7;
  border-left: 4px solid var(--blue);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

/* Info-Box (blau) */
.info-box {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
  font-size: 0.9rem;
  color: var(--ink-mid);
}
.info-box strong { color: var(--blue); }

/* Warnung-Box (orange) */
.warn-box {
  background: #fef9e7;
  border-left: 4px solid var(--orange);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
  font-size: 0.9rem;
  color: var(--ink-mid);
}

/* Karten-Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 1.2rem 0;
}
.card-item {
  background: white;
  padding: 1.2rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.card-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.card-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 0.2rem; }
.card-item p { font-size: 0.8rem; color: var(--ink-mid); margin: 0; }

/* Link-Karten (Schwerpunkte etc.) */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}
.link-card {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  padding: 1rem 1.1rem;
  text-decoration: none;
  display: block;
  transition: background 0.15s;
}
.link-card:hover { background: var(--blue-hover); text-decoration: none; }
.link-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--blue); margin-bottom: 0.2rem; }
.link-card p { font-size: 0.8rem; color: var(--ink-mid); margin: 0; }
.link-card .mehr { font-size: 0.78rem; color: var(--blue-light); display: block; margin-top: 0.3rem; }

/* Schritte / Ablauf */
.steps { list-style: none; padding: 0; margin: 1rem 0; }
.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--ink-mid);
}
.steps li:last-child { border-bottom: none; }
.step-num {
  width: 28px; height: 28px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Tabellen */
.content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1.2rem 0;
}
.content table th {
  background: var(--blue);
  color: white;
  padding: 0.6rem 0.9rem;
  text-align: left;
  font-weight: 600;
}
.content table td {
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
  vertical-align: top;
}
.content table tr:hover td { background: var(--gray-pale); }
.content table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* Download-Link */
.dl-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-pale);
  border: 1px solid var(--blue-light);
  padding: 0.5rem 1rem;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.3rem 0;
  border-radius: 2px;
}
.dl-link:hover { background: var(--blue-hover); color: var(--blue); text-decoration: none; }

/* FAQ Accordion */
.faq-item {
  border: 1px solid var(--border);
  border-top: none;
  font-size: 0.92rem;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--gray-pale);
  border: none;
  padding: 0.8rem 1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.12s;
}
.faq-q:hover { background: var(--blue-pale); }
.faq-q .arrow { font-size: 0.7rem; transition: transform 0.2s; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0.9rem 1rem 1rem;
  color: var(--ink-mid);
  background: white;
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* Kontakt-Karte */
.contact-card {
  background: var(--blue-pale);
  border: 1px solid var(--blue-light);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 0.6rem; }
.contact-card p { font-size: 0.88rem; color: var(--ink-mid); margin-bottom: 0.3rem; }
.contact-card a { color: var(--blue-light); font-size: 0.88rem; }

/* Formular */
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.form-label .required { color: var(--red); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  background: white;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 2px var(--blue-pale);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--ink-mid);
  margin-bottom: 0.4rem;
}
.form-check input { margin-top: 3px; accent-color: var(--blue); }
.form-hint { font-size: 0.78rem; color: var(--gray); margin-top: 0.2rem; }
.btn-primary {
  background: var(--green);
  color: white;
  border: none;
  padding: 0.65rem 1.8rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-light); }
.btn-secondary {
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid var(--blue-light);
  padding: 0.6rem 1.5rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-secondary:hover { background: var(--blue-hover); }

/* ================================================================
   STARTSEITE — Hero
   ================================================================ */
.hero-area {
  display: grid;
  grid-template-columns: 1fr 290px;
  max-width: 1160px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.hero-slide {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  background: var(--blue);
  display: flex;
  align-items: flex-end;
}
.hero-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-caption {
  position: relative;
  z-index: 2;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(26,82,118,0.92) 0%, rgba(26,82,118,0.3) 70%, transparent 100%);
  width: 100%;
}
.hero-caption h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.hero-caption p { color: rgba(255,255,255,0.88); font-size: 0.97rem; max-width: 520px; }
.hero-tiles {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.hero-tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.12s;
}
.hero-tile:last-child { border-bottom: none; }
.hero-tile:hover { background: var(--blue-pale); text-decoration: none; }
.tile-icon {
  width: 42px; height: 42px;
  background: var(--blue-pale);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hero-tile h4 { font-size: 0.88rem; font-weight: 700; color: var(--blue); line-height: 1.2; margin-bottom: 0.1rem; }
.hero-tile p { font-size: 0.74rem; color: var(--ink-mid); line-height: 1.3; margin: 0; }
.tile-mehr { font-size: 0.72rem; color: var(--blue-light); display: block; margin-top: 0.15rem; }

/* Blue intro band */
.intro-band {
  background: var(--blue);
  color: white;
  padding: 1.8rem 2rem;
  text-align: center;
}
.intro-band .inner { max-width: 820px; margin: 0 auto; }
.intro-band h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.6rem;
}
.intro-band p { font-size: 0.95rem; color: rgba(255,255,255,0.87); line-height: 1.7; }

/* Indikationen */
.indikationen-section { padding: 2.5rem 2rem; background: white; }
.section-wrap { max-width: 1160px; margin: 0 auto; }
.sec-label {
  display: inline-block;
  background: var(--gray-pale);
  color: var(--gray);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}
.sec-title {
  font-family: 'Source Serif 4', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.3rem;
}
.sec-intro { font-size: 0.92rem; color: var(--ink-mid); max-width: 680px; margin-bottom: 1.3rem; }

.indik-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1.3rem;
}
.indik-item {
  background: white;
  padding: 1rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.indik-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.indik-item h4 { font-size: 0.86rem; font-weight: 700; color: var(--ink); line-height: 1.3; }

.schwerp-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.schwerp-link {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  transition: background 0.12s;
}
.schwerp-link:hover { background: var(--blue-hover); text-decoration: none; }
.schwerp-link h3 { font-size: 0.9rem; font-weight: 700; color: var(--blue); margin-bottom: 0.15rem; }
.schwerp-link .mehr { font-size: 0.76rem; color: var(--blue-light); }

/* Auszeichnungen */
.awards-band {
  background: var(--green);
  padding: 1.4rem 2rem;
  text-align: center;
}
.awards-band .inner { max-width: 860px; margin: 0 auto; }
.awards-band h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.35rem;
}
.awards-band p { font-size: 0.9rem; color: rgba(255,255,255,0.87); }
.awards-band a { color: #a9dfbf; }

/* Galerie */
.galerie-section { background: var(--gray-pale); padding: 2.2rem 2rem; }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 1160px;
  margin: 0 auto 0.6rem;
}
.gal-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--blue-pale);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-item svg { width: 100%; height: 100%; }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,82,118,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: white;
  font-size: 1.4rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }

/* Kontakt-Banner */
.kontakt-banner {
  background: var(--blue);
  padding: 1.8rem 2rem;
}
.kontakt-banner .inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.kontakt-banner h3 { font-family: 'Source Serif 4', serif; font-size: 1.2rem; color: white; margin-bottom: 0.25rem; }
.kontakt-banner p { color: rgba(255,255,255,0.82); font-size: 0.88rem; }
.kontakt-banner a.tel { color: rgba(255,255,255,0.82); }
.btn-kontakt {
  background: white;
  color: var(--blue);
  padding: 0.65rem 1.6rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-kontakt:hover { background: var(--blue-pale); color: var(--blue); text-decoration: none; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 2.2rem 2rem 1.5rem;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.3rem;
}
footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.75rem;
}
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 0.3rem; }
footer ul a { color: rgba(255,255,255,0.62); font-size: 0.83rem; }
footer ul a:hover { color: white; text-decoration: none; }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 0.2rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.76rem; padding: 0 0.5rem; border-right: 1px solid rgba(255,255,255,0.15); }
.footer-bottom-links a:last-child { border-right: none; }
.footer-bottom-links a:hover { color: white; text-decoration: none; }
.footer-logo {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(28,40,51,0.97);
  color: rgba(255,255,255,0.82);
  padding: 1rem 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.3);
}
.cookie-banner p { font-size: 0.83rem; max-width: 680px; margin: 0; }
.cookie-btns { display: flex; gap: 0.7rem; flex-shrink: 0; }
.cookie-btn-all {
  background: var(--green);
  color: white;
  border: none;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  border-radius: 3px;
}
.cookie-btn-ess {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  border-radius: 3px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .hero-area { grid-template-columns: 1fr; }
  .hero-tiles { grid-template-rows: none; grid-template-columns: repeat(2, 1fr); border-left: none; border-top: 1px solid var(--border); }
  .indik-grid { grid-template-columns: repeat(2, 1fr); }
  .schwerp-links { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar { margin-bottom: 1.5rem; }
}
@media (max-width: 640px) {
  .header-search { display: none; }
  .hero-caption h2 { font-size: 1.45rem; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .indik-grid { grid-template-columns: 1fr; }
  .hero-tiles { grid-template-columns: 1fr; }
  .main-nav > ul > li > a { padding: 0.75rem 0.65rem; font-size: 0.8rem; }
}
