/* fulda.info – Statisches Stylesheet
   Design: Barockes Stadtportal, Navy/Gold/Creme-Palette
   Farben: #0F1B2D (Navy), #D4A853 (Gold), #F5F0E8 (Creme), #FFFFFF (Weiß)
   Schrift: DM Sans (lokal gehostet)
   Kein externes CDN, kein Tracking, keine Cookies
*/

/* ============================================================
   1. FONTS
   ============================================================ */
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #F5F0E8;
  color: #0F1B2D;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  max-width: 80rem; /* 1280px = max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.section-label {
  color: #D4A853;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .section-title { font-size: 3rem; }
}
.text-center { text-align: center; }
.gold { color: #D4A853; }
.navy { color: #0F1B2D; }
.creme-bg { background-color: #F5F0E8; }
.navy-bg { background-color: #0F1B2D; }
.white-bg { background-color: #ffffff; }

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.nav.transparent {
  background-color: transparent;
}
.nav.solid {
  background-color: rgba(15, 27, 45, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}
.nav-logo-main {
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.nav-logo-main span { color: #D4A853; }
.nav-logo-sub {
  color: #D4A853;
  font-size: 0.5625rem; /* 9px */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-links a,
.nav-links button {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links button:hover { color: #D4A853; }

/* Mobile burger */
.nav-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .nav-burger { display: none; }
}
.nav-burger svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  background-color: rgba(15,27,45,0.98);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile.open { display: block; }
.nav-mobile-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile a,
.nav-mobile button {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
  text-align: left;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
}
.nav-mobile a:hover,
.nav-mobile button:hover { color: #D4A853; }

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,27,45,0.60) 0%,
    rgba(15,27,45,0.40) 50%,
    rgba(15,27,45,0.70) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero-eyebrow {
  color: #D4A853;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .hero-eyebrow { font-size: 0.875rem; }
}
.hero-title {
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 400;
}
@media (min-width: 640px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 5rem; } }
.hero-title span { color: #D4A853; }
.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
@media (min-width: 640px) { .hero-desc { font-size: 1.25rem; } }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .hero-stats { gap: 4rem; } }
.hero-stat-value {
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (min-width: 640px) { .hero-stat-value { font-size: 1.875rem; } }
.hero-stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}
.btn-primary {
  background-color: #D4A853;
  color: #0F1B2D;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background-color 0.2s;
  display: inline-block;
  text-align: center;
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background-color: #c49840; }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background-color 0.2s;
  display: inline-block;
  text-align: center;
  font-family: inherit;
  background: none;
  cursor: pointer;
}
.btn-outline:hover { background-color: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero-scroll:hover { color: #D4A853; }
.hero-scroll svg {
  width: 28px; height: 28px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   6. ÜBER FULDA
   ============================================================ */
.ueber-fulda {
  padding: 5rem 0;
  background-color: #F5F0E8;
}
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .ueber-grid { grid-template-columns: 1fr 1fr; }
}
.ueber-text p {
  color: rgba(15,27,45,0.7);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.info-card {
  background-color: rgba(255,255,255,0.6);
  padding: 1rem;
  border-left: 2px solid #D4A853;
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.info-card-header svg {
  width: 16px; height: 16px;
  stroke: #D4A853; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.info-card-label {
  font-size: 0.625rem; /* 10px */
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15,27,45,0.5);
}
.info-card-value {
  color: #0F1B2D;
  font-size: 0.875rem;
  font-weight: 500;
}
.ueber-image {
  position: relative;
}
.ueber-image img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .ueber-image img { height: 31.25rem; }
}
.ueber-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(15,27,45,0.9);
  color: #ffffff;
  padding: 0.75rem 1rem;
}
.ueber-badge-year {
  color: #D4A853;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.125rem;
}
.ueber-badge-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
}
.ueber-badge-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
}

/* ============================================================
   7. SEHENSWÜRDIGKEITEN
   ============================================================ */
.sehensw {
  padding: 5rem 0;
  background-color: #0F1B2D;
}
.sehensw .section-title { color: #ffffff; }
.sehensw .section-desc { color: rgba(255,255,255,0.8); max-width: 42rem; margin: 0 auto; }
.sehensw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .sehensw-grid { grid-template-columns: 1fr 1fr; }
}
.sight-card {
  background-color: rgba(255,255,255,0.05);
  overflow: hidden;
  transition: background-color 0.3s;
}
.sight-card:hover { background-color: rgba(255,255,255,0.10); }
.sight-card-img {
  height: 12rem;
  overflow: hidden;
}
.sight-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.sight-card:hover .sight-card-img img { transform: scale(1.05); }
.sight-card-body { padding: 1.5rem; }
.sight-card-cat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #D4A853;
  margin-bottom: 0.5rem;
}
.sight-card-cat svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.sight-card-cat span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.sight-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.sight-card-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.sight-card-info {
  color: rgba(212,168,83,0.8);
  font-size: 0.75rem;
}
.sehensw-more {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-top: 2rem;
}

/* ============================================================
   8. GESCHICHTE
   ============================================================ */
.geschichte {
  padding: 5rem 0;
  background-color: #F5F0E8;
}
.geschichte .section-desc {
  color: rgba(15,27,45,0.8);
  max-width: 42rem;
  margin: 0 auto;
}
.geschichte-quote {
  font-family: 'DM Sans', sans-serif;
  color: rgba(15,27,45,0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
  border-left: 4px solid #D4A853;
  padding-left: 1.5rem;
}
.timeline {
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0; bottom: 0;
  width: 1px;
  background-color: rgba(212,168,83,0.3);
}
@media (min-width: 768px) {
  .timeline::before { left: 50%; }
}
.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .timeline-item { gap: 0; }
  .timeline-item:nth-child(even) { flex-direction: row-reverse; }
}
.timeline-content {
  flex: 1;
  padding-left: 3.5rem;
}
@media (min-width: 768px) {
  .timeline-content { padding-left: 0; }
  .timeline-item:nth-child(odd) .timeline-content { padding-right: 3rem; }
  .timeline-item:nth-child(even) .timeline-content { padding-left: 3rem; }
}
.timeline-card {
  background-color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.timeline-year {
  color: #D4A853;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.timeline-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  color: #0F1B2D;
  margin-bottom: 0.5rem;
}
.timeline-desc {
  color: rgba(15,27,45,0.7);
  font-size: 0.875rem;
  line-height: 1.65;
}
.timeline-dot {
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  width: 1rem; height: 1rem;
  background-color: #D4A853;
  border-radius: 50%;
  border: 2px solid #F5F0E8;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .timeline-dot { left: 50%; }
}
.timeline-spacer {
  display: none;
}
@media (min-width: 768px) {
  .timeline-spacer { display: block; flex: 1; }
}

/* ============================================================
   9. VERANSTALTUNGEN
   ============================================================ */
.veranstaltungen {
  padding: 5rem 0;
  background-color: #ffffff;
}
.veranstaltungen .section-desc {
  color: rgba(15,27,45,0.8);
  max-width: 42rem;
  margin: 0 auto;
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
}
.event-card {
  border: 1px solid rgba(15,27,45,0.1);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.event-card:hover { border-color: #D4A853; }
.event-period {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #D4A853;
  margin-bottom: 0.75rem;
}
.event-period svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.event-period span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.event-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: #0F1B2D;
  margin-bottom: 0.5rem;
}
.event-desc {
  color: rgba(15,27,45,0.7);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ============================================================
   10. PRAKTISCHES
   ============================================================ */
.praktisches {
  padding: 5rem 0;
  background-color: #F5F0E8;
}
.praktisches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .praktisches-grid { grid-template-columns: 1fr 1fr; }
}
.praktisches h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  color: #0F1B2D;
  margin-bottom: 1.5rem;
}
.info-items { display: flex; flex-direction: column; gap: 1rem; }
.info-item {
  display: flex;
  gap: 1rem;
  background-color: #ffffff;
  padding: 1rem;
}
.info-item-icon {
  color: #D4A853;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.info-item-icon svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.info-item-title {
  font-weight: 600;
  color: #0F1B2D;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.info-item-desc {
  color: rgba(15,27,45,0.7);
  font-size: 0.875rem;
}
.facts-box {
  margin-top: 1.5rem;
  background-color: #0F1B2D;
  padding: 1.5rem;
}
.facts-box-title {
  color: #D4A853;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
.fact-key {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fact-val {
  color: #ffffff;
  font-weight: 500;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
footer {
  background-color: #0F1B2D;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.footer-brand-name {
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.footer-brand-name span { color: #D4A853; }
.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.footer-col-title {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-links a,
.footer-links button {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  padding: 0;
  text-decoration: none;
}
.footer-links a:hover,
.footer-links button:hover { color: #D4A853; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   12. LEGAL PAGES (Impressum, Datenschutz)
   ============================================================ */
.legal-page {
  min-height: 100vh;
  background-color: #F5F0E8;
}
.legal-main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 7rem 1rem 4rem;
}
@media (min-width: 640px) {
  .legal-main { padding-left: 1.5rem; padding-right: 1.5rem; }
}
.legal-main h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.25rem;
  color: #0F1B2D;
  margin-bottom: 0.5rem;
}
.legal-divider {
  width: 3rem;
  height: 2px;
  background-color: #D4A853;
  margin-bottom: 2rem;
}
.legal-section {
  margin-bottom: 2rem;
}
.legal-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: #0F1B2D;
  margin-bottom: 0.75rem;
}
.legal-section p {
  color: rgba(15,27,45,0.8);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: rgba(15,27,45,0.8);
  margin-bottom: 0.75rem;
}
.legal-section ul li { margin-bottom: 0.25rem; line-height: 1.7; }
.legal-link {
  color: #D4A853;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.legal-link:hover { color: #0F1B2D; }

/* Mail obfuscation link */
a.mail-link {
  color: #D4A853;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
  cursor: pointer;
}
a.mail-link:hover { color: #0F1B2D; }

/* ============================================================
   13. 404 PAGE
   ============================================================ */
.not-found {
  min-height: 100vh;
  background-color: #F5F0E8;
  display: flex;
  flex-direction: column;
}
.not-found-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}
.not-found-code {
  font-family: 'DM Sans', sans-serif;
  font-size: 6rem;
  color: #D4A853;
  line-height: 1;
  margin-bottom: 1rem;
}
.not-found-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  color: #0F1B2D;
  margin-bottom: 1rem;
}
.not-found-desc {
  color: rgba(15,27,45,0.7);
  margin-bottom: 2rem;
}

/* CSP-konform: keine Inline-Styles */
.icon-hidden { display: none; }
.section-title-white { color: #fff; }
