*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2e4a;
  --gold: #c8922a;
  --gold-light: #e8b84b;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --text: #1a2e4a;
  --text-muted: #5a6a7a;
  --border: #dde3eb;
}

html { scroll-behavior: smooth; background: #e8e8e8; }

body {
  font-family: 'Open sans', Verdana, Arial;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 17px;
  max-width: 1440px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(0,0,0,0.12);
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

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

.nav-brand { display: flex; flex-direction: column; line-height: 1.25; }

.nav-brand-name {
  font-family: 'Open sans', Verdana, Arial;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.nav-brand-sub {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

/* HERO */
.hero {
  width: 100%;
  height: 75vh;
  min-height: 420px;
  max-height: 780px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* INTRO */
.intro { background: var(--navy); padding: 4rem 2rem; }

.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.intro-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 400;
}

.intro-title {
  font-family: 'Open sans', Verdana, Arial;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.intro-divider {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin: 1.75rem 0;
}

.intro-text {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
}

.intro-text + .intro-text { margin-top: 1rem; }

/* INFO BOXES */
.info-section {
  padding: 4rem 2rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.info-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem;
}

.info-box-icon { width: 36px; height: 36px; margin-bottom: 1rem; color: var(--gold); }

.info-box h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.info-box p { font-size: 15px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

.info-box strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  font-size: 17px;
  margin-bottom: 0.25rem;
}

/* VISIT SECTION */
.visit-section { max-width: 1100px; margin: 0 auto; padding: 4.5rem 2rem; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-title {
  font-family: 'Open sans', Verdana, Arial;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.visit-item {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.visit-item-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.visit-item p { font-size: 15px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* SUPPORT */
.support-section { background: var(--navy); padding: 4.5rem 2rem; }

.support-inner { max-width: 1100px; margin: 0 auto; }

.support-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 400;
}

.support-title {
  font-family: 'Open sans', Verdana, Arial;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.support-text {
  color: rgba(255,255,255,0.75);
  font-size: 15.5px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 55ch;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(200,146,42,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.support-link:hover { color: var(--white); border-color: var(--white); }

/* PAGE HEADER (Impressum / Datenschutz) */
.page-header { background: var(--navy); padding: 3.5rem 2rem 3rem; }
.page-header-inner { max-width: 1100px; margin: 0 auto; }

.page-header-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.page-header h1 {
  font-family: 'Open sans', Verdana, Arial;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.page-content { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem 6rem; }

.placeholder-block {
  background: var(--off-white);
  border: 1px dashed var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 15px;
  font-style: italic;
}

.placeholder-block p { margin-bottom: 0.5rem; }
.placeholder-block p:last-child { margin-bottom: 0; }

/* FOOTER */
footer {
  background: #0f1e30;
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem 2rem;
  border-top: 3px solid var(--gold);
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

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

.footer-brand {
  font-family: 'Open sans', Verdana, Arial;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.5rem;
}

.footer-notice {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  line-height: 2;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .hero { height: 56vw; min-height: 260px; }
  .intro-inner { grid-template-columns: 1fr; gap: 0; }
  .intro-inner > div:first-child { margin-bottom: 1.5rem; }
  .info-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* LEGAL PAGES */
.legal-section { margin-bottom: 0.5rem; }
.legal-section p { font-size: 15.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(200,146,42,0.3); transition: color 0.2s; }
.legal-section a:hover { color: var(--navy); }

.legal-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.legal-heading {
  font-family: 'Open sans', Verdana, Arial;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.legal-note {
  font-size: 13px !important;
  font-style: italic;
  color: var(--text-muted);
}

.legal-basis {
  display: inline-block;
  font-size: 13px !important;
  color: var(--white) !important;
  background: var(--navy);
  padding: 4px 12px;
  border-radius: 3px;
  margin-top: 0.75rem !important;
  font-style: normal !important;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 2rem 0;
}

.legal-block {
  background: var(--white);
  padding: 1.5rem 1.75rem;
}

.legal-block h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.5rem;
}

.legal-block p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-block a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,146,42,0.3);
}

.legal-list {
  list-style: none;
  margin: 1rem 0;
}

.legal-list li {
  font-size: 15.5px;
  color: var(--text-muted);
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.legal-list li:last-child { border-bottom: none; }

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

@media (max-width: 768px) {
  .legal-grid { grid-template-columns: 1fr; }
}
