:root {
  --bg: #07101e;
  --bg-alt: #0c1629;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --text: #f8f9fc;
  --muted: #c8cfdd;
  --line: rgba(255, 255, 255, 0.11);
  --primary: #8bf0c9;
  --accent: #8fa4ff;
  --success: #a5efc2;
  --danger: #ffb0b0;
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.24);
  --shadow-xl: 0 34px 110px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1240px;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
/* Lokale Inter-Einbindung – DSGVO-konform
   Passe den Pfad ./fonts/ an, falls die Dateien woanders liegen. */

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter_18pt-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Bestehende Font-Deklarationen in deiner CSS damit ersetzen */
body {
  font-family: 'Inter', Arial, sans-serif;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(143, 164, 255, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(139, 240, 201, 0.08), transparent 20%),
    linear-gradient(180deg, #07101e 0%, #0b1424 48%, #07101e 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.8rem 1rem;
  background: #fff;
  color: #000;
  border-radius: 12px;
  z-index: 999;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 16, 30, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo,
.footer-logo {
  width: auto;
  height: 44px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(1.95rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.18;
}

.lead,
.section-intro p,
.service-copy p,
.impact-grid p,
.story-copy p,
.faq-item p,
.contact-copy p,
.hero-side-card p,
.contact-facts p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  max-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: clip;
  padding: 0.75rem 0;
  margin-bottom: 2rem;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url('master.avif');
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 16, 30, 0.18) 0%, rgba(7, 16, 30, 0.58) 38%, rgba(7, 16, 30, 0.86) 100%),
    radial-gradient(circle at 18% 18%, rgba(143, 164, 255, 0.26), transparent 22%),
    radial-gradient(circle at 80% 14%, rgba(139, 240, 201, 0.18), transparent 18%);
}

.hero-shell {
  position: relative;
  z-index: 2;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 16, 30, 0.36), rgba(7, 16, 30, 0.68)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 40%);
  backdrop-filter: blur(18px);
  border-radius: 38px;
  box-shadow: var(--shadow-xl);
  padding: clamp(0.9rem, 1.6vw, 1.2rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  gap: 1.1rem;
  align-items: start;
}

.hero-copy {
  padding: 0.35rem;
}

.lead {
  max-width: 62ch;
}

.lead-secondary {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0;
}

.hero-actions-side {
  margin-top: 0.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.95rem 1.35rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff, #e7fff3);
  color: #07101e;
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.12);
}

.btn-secondary,
.btn-outline {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-sm {
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 14px;
}

.btn-full {
  width: 100%;
}

.hero-points,
.impact-grid,
.services-grid,
.story-grid,
.gallery-grid,
.contact-grid,
.footer-grid,
.faq-layout,
.strip-grid {
  display: grid;
  gap: 1rem;
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-points-side {
  grid-template-columns: 1fr;
}

.hero-points > div,
.hero-side-card,
.image-card,
.mosaic-card,
.service-card,
.faq-item,
.contact-panel,
.impact-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.hero-points > div {
  padding: 0.9rem 1rem;
  border-radius: 18px;
}

.hero-points strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-side {
  display: grid;
  gap: 0.85rem;
  align-self: start;
}

.hero-side-card {
  padding: 1rem 1.05rem;
  border-radius: 24px;
  height: auto;
}

.side-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: #c6ffe8;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.hero-side-card h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  margin-bottom: 0.55rem;
}


section {
  padding: 5.5rem 0;
}

.top-strip {
  padding-top: 0;
}

.strip-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.image-card,
.mosaic-card,
.gallery-card,
.service-card,
.story-images img,
.contact-visuals img {
  overflow: hidden;
  border-radius: 28px;
}

.image-card img,
.gallery-card img,
.service-card img,
.mosaic-card img,
.story-images img,
.contact-visuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card img {
  min-height: 240px;
}

.section-intro {
  max-width: 860px;
  margin-bottom: 2rem;
}

.section-intro.narrow {
  max-width: 760px;
}

.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-grid article {
  border-radius: 24px;
  padding: 1.4rem;
}




.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card img {
  min-height: 280px;
  max-height: 280px;
}

.service-copy {
  padding: 1.3rem 1.3rem 1.5rem;
}

.story-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    radial-gradient(circle at 90% 18%, rgba(143, 164, 255, 0.08), transparent 26%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.benefit-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.benefit-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-images img:first-child {
  grid-column: 1 / -1;
  min-height: 320px;
}

.story-images img:nth-child(2),
.story-images img:nth-child(3) {
  min-height: 220px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.gallery-card img {
  min-height: 280px;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.4rem;
  border-radius: 24px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: start;
}

.contact-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-visuals img {
  min-height: 220px;
  box-shadow: var(--shadow-lg);
}

.contact-facts a,
.consent-check a {
  color: #d8fff0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-panel {
  border-radius: 30px;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}

.form-status {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  font-weight: 700;
}

.form-status.is-success {
  background: rgba(165, 239, 194, 0.14);
  border: 1px solid rgba(165, 239, 194, 0.34);
  color: #e7fff1;
}

.form-status.is-error {
  background: rgba(255, 176, 176, 0.12);
  border: 1px solid rgba(255, 176, 176, 0.34);
  color: #ffe6e6;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label,
.consent-check span {
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5, 10, 20, 0.6);
  color: var(--text);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(139, 240, 201, 0.7);
  background: rgba(5, 10, 20, 0.76);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.consent-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.consent-check input {
  margin-top: 0.2rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-nav a {
  color: var(--muted);
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero {
    max-height: none;
    min-height: auto;
  }

  .hero-grid,
  .impact-grid,
  .mosaic-grid,
  .services-grid,
  .story-grid,
  .faq-layout,
  .contact-grid,
  .strip-grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .field-grid,
  .contact-visuals {
    grid-template-columns: 1fr;
  }

  .hero-side-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.6rem);
    min-width: 240px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    background: rgba(7, 16, 30, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    padding-top: 1rem;
    margin-bottom: 1rem;
  }

  .hero-panel {
    border-radius: 28px;
  }

  .hero-side-gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .brand-logo,
  .footer-logo {
    height: 38px;
  }

  section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-side-gallery {
    grid-template-columns: 1fr;
  }

  .story-images,
  .contact-visuals {
    grid-template-columns: 1fr;
  }

  .gallery-card img,
  .image-card img,
  .service-card img,
  .mosaic-card img {
    min-height: 220px;
  }
}


.hero-copy .lead {
  font-size: 1rem;
  line-height: 1.6;
}

.hero-copy h1 {
  margin-bottom: 0.9rem;
}

.hero-copy .lead:not(:last-child) {
  margin-bottom: 0.9rem;
}

.hero-side .btn {
  width: 100%;
}

@media (max-width: 1180px) {
  .hero {
    max-height: none;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions-side,
  .hero-points-side {
    width: 100%;
  }

  .hero-points-side {
    grid-template-columns: 1fr;
  }
}


.image-card,
.gallery-card,
.service-card,
.hero-side-card,
.hero-points > div,
.faq-item,
.contact-panel {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.image-card:hover,
.gallery-card:hover,
.service-card:hover,
.hero-side-card:hover,
.hero-points > div:hover,
.faq-item:hover,
.contact-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.30);
  border-color: rgba(255,255,255,0.2);
}

.image-card img,
.gallery-card img,
.service-card img,
.story-images img,
.contact-visuals img {
  transition: transform 0.5s ease, filter 0.35s ease;
}

.image-card:hover img,
.gallery-card:hover img,
.service-card:hover img,
.story-images img:hover,
.contact-visuals img:hover {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.02);
}

.hero-media {
  transition: transform 0.8s ease;
}

.hero:hover .hero-media {
  transform: scale(1.06);
}


@media (max-width: 1180px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
