:root {
  --bg: #070707;
  --bg-soft: #121010;
  --panel: rgba(16, 14, 14, 0.9);
  --panel-strong: rgba(23, 20, 20, 0.97);
  --text: #f3eee7;
  --muted: #d0c3b4;
  --line: rgba(255, 246, 233, 0.14);
  --red: #a11414;
  --red-strong: #d12b2b;
  --red-deep: #7c0d0d;
  --cream: #efe3d2;
  --cream-strong: #f6efe7;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(209, 43, 43, 0.14), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(239, 227, 210, 0.08), transparent 20%),
    linear-gradient(180deg, #0c0909 0%, #060606 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.35;
}

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

.page-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(8,8,8,0.92), rgba(8,8,8,0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(239, 227, 210, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand strong,
.hero h1,
.section-heading h2,
.card-highlight h2,
.contact-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.brand em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--cream);
  border-bottom-color: var(--red-strong);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 3rem 0 4rem;
}

.eyebrow,
.section-kicker,
.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--red-strong);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.95;
  margin: 0.5rem 0 1rem;
  text-transform: uppercase;
  color: var(--cream-strong);
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.lead,
.section-heading p,
.card p,
.contact-band p,
.timeline-item p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #d73333 0%, #8f1010 100%);
  color: #fff7f7;
  box-shadow: 0 12px 30px rgba(161, 20, 20, 0.38);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(239, 227, 210, 0.25);
  background: rgba(255, 255, 255, 0.035);
}

.hero-facts {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-facts li,
.card,
.contact-box,
.timeline-item {
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.hero-facts li:nth-child(2) {
  border-color: rgba(209, 43, 43, 0.4);
}

.hero-facts li {
  padding: 1rem;
}

.hero-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.hero-facts strong {
  font-size: 1.02rem;
}

.hero-badge {
  display: grid;
  place-items: center;
}

.badge-frame {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  padding: 1.1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.05), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, rgba(209,43,43,0.42), rgba(124,13,13,0.16));
  border: 2px solid rgba(239, 227, 210, 0.18);
  box-shadow:
    0 0 0 10px rgba(255,255,255,0.02),
    0 0 0 22px rgba(209,43,43,0.06),
    0 34px 90px rgba(0,0,0,0.48);
}

.badge-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
}

.badge-caption {
  margin-top: 1rem;
  text-align: center;
}

.badge-caption span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--red-strong);
  margin-bottom: 0.35rem;
}

.badge-caption strong {
  color: var(--cream-strong);
  font-size: 1.15rem;
}

.section {
  padding: 4rem 0;
}

.intro-grid,
.contact-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.card {
  padding: 1.6rem;
}

.card-highlight {
  position: relative;
  overflow: hidden;
}

.card-highlight::after {
  content: "";
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,29,29,0.3), transparent 70%);
}

.card-highlight h2,
.section-heading h2,
.contact-band h2 {
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.stat-stack {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.stat-stack strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.2rem;
}

.story-grid,
.feature-grid {
  display: grid;
  gap: 2rem;
}

.story-heading {
  max-width: 820px;
}

.story-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.story-card,
.story-quote {
  min-height: 100%;
}

.story-quote {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.14rem;
  color: var(--cream-strong);
  border-color: rgba(209, 43, 43, 0.32);
}

.story-quote p {
  margin: 0;
  color: var(--cream-strong);
  font-style: italic;
}

.feature-grid {
  display: grid;
  gap: 2rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-cards h3,
.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem;
  align-items: start;
}

.timeline-marker {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, #d73333 0%, #8f1010 100%);
  color: white;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(161, 20, 20, 0.28);
}

.contact-box {
  padding: 1.5rem;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
}

.contact-list p {
  margin: 0;
}

.contact-list span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red-strong);
  margin-bottom: 0.32rem;
}

.contact-list strong {
  color: var(--cream-strong);
  font-size: 1.02rem;
  line-height: 1.55;
}

.contact-box a,
.legal-card a,
.site-footer a {
  color: var(--cream-strong);
}

.contact-box a:hover,
.legal-card a:hover,
.site-footer a:hover {
  color: #ffffff;
}

.contact-note {
  margin-top: 1.25rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.datenschutz-section,
.impressum-section {
  padding-top: 1rem;
}

.legal-card {
  max-width: 820px;
}

.legal-card p {
  margin: 0 0 1rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  color: #a99d90;
  text-align: center;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

@media (max-width: 920px) {
  .hero,
  .intro-grid,
  .contact-band,
  .feature-cards,
  .story-cards {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .button {
    width: 100%;
  }
}
