﻿:root {
  --bg: #0d0f12;
  --bg-2: #15191e;
  --panel: #171b20;
  --panel-2: #1d2228;
  --text: #f3efe8;
  --muted: #b8b0a4;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c91f2e;
  --accent-dark: #8f1220;
  --content-width: 1240px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0b0d10 0%, #101317 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  width: 100%;
}

.top-banner {
  background: var(--accent-dark);
  color: #fff8f5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-banner-inner,
.header-inner,
.hero-inner,
.trust-band,
.section-inner,
.footer-inner,
.footer-bottom-inner {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
}

.top-banner-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.banner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.banner-cta {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 15, 18, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 190px;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.main-nav a:hover,
.main-nav .is-active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav .is-active::after {
  transform: scaleX(1);
}

.hero,
.section,
.site-footer {
  margin-top: 18px;
}

.section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.hero-inner,
.section-inner,
.footer-inner {
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  padding: 42px;
}

.eyebrow,
.section-tag,
.card-label,
.footer-heading {
  display: inline-block;
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1,
.section h2,
.page-hero h1,
.legal-content h1 {
  margin: 14px 0 14px;
  font-family: Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  max-width: 11ch;
}

.section h2,
.page-hero h1,
.legal-content h1 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.legal-content h2 {
  margin: 18px 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 1.9vw, 1.65rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.lead,
.section-note,
.feature-card p,
.gallery-card span,
.hero-card p,
.service-list,
.contact-card p,
.footer-mini-copy,
.legal-content p,
.legal-content li,
.form-note,
.cookie-banner p,
.process-card p,
.metric-card span {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.hero-copy .lead {
  max-width: 58ch;
}

.hero-actions,
.optin-actions,
.cookie-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 22px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff8f5;
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.hero-visual {
  min-height: 520px;
}

.hero-video-shell {
  display: block;
}

.hero-video-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-video.is-ready,
.hero-stage .hero-video.is-ready {
  opacity: 1;
}

.hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.18), rgba(8, 10, 12, 0.62));
}

.hero-video-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 1;
  max-width: 360px;
}

.hero-video-overlay p {
  margin: 12px 0 0;
  color: #fffaf6;
  line-height: 1.65;
  font-size: 0.94rem;
}

.hero-card,
.feature-card,
.gallery-card,
.service-panel,
.metric-card,
.process-card,
.contact-card,
.editorial-panel,
.form-shell,
.trust-band p {
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--line);
}

.hero-card,
.editorial-panel,
.gallery-card {
  position: relative;
  overflow: hidden;
}

.hero-card,
.editorial-panel {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
}

.hero-card-large,
.hero-card-small {
  min-height: 520px;
}

.image-card,
.gallery-card,
.image-banner {
  position: relative;
}

.image-card::before,
.gallery-card::before,
.image-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.image-card::after,
.gallery-card::after,
.image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.12), rgba(8, 10, 12, 0.76));
}

.image-card > *,
.gallery-card > *,
.page-hero-copy {
  position: relative;
  z-index: 1;
}

.image-card .card-label,
.image-card p,
.gallery-card span {
  color: #fffaf6;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-band p {
  margin: 0;
  padding: 16px 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.section-inner,
.footer-inner {
  padding: 34px;
}

.intro-grid-layout,
.editorial-grid,
.contact-layout {
  display: grid;
  gap: 24px;
}

.intro-grid-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.editorial-grid,
.contact-layout {
  grid-template-columns: 1fr 1fr;
}

.feature-list,
.card-grid,
.service-stack,
.contact-intro-stack,
.page-links-grid,
.metric-strip,
.process-band,
.editorial-points,
.form-grid {
  display: grid;
  gap: 16px;
}

.feature-list,
.process-band {
  grid-template-columns: repeat(3, 1fr);
}

.metric-strip {
  grid-template-columns: repeat(4, 1fr);
}

.two-col,
.two-col-form,
.contact-grid,
.briefing-grid {
  grid-template-columns: repeat(2, 1fr);
}

.single-col,
.service-stack {
  grid-template-columns: 1fr;
}

.page-links-grid {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card,
.service-panel,
.metric-card,
.process-card,
.contact-card,
.mini-card {
  padding: 22px;
}

.feature-card h3,
.process-card h3,
.service-panel h2,
.metric-card strong {
  margin: 0 0 10px;
}

.service-panel h2 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.08;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  grid-template-rows: 250px 250px;
  gap: 16px;
}

.gallery-card {
  padding: 22px;
  display: flex;
  align-items: end;
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card-wide {
  grid-column: span 2;
}

.page-hero {
  min-height: 460px;
  margin-top: 0;
}

.page-hero h1 {
  max-width: 15ch;
}

.page-hero.image-banner::after {
  background: linear-gradient(90deg, rgba(8, 10, 12, 0.78) 0%, rgba(8, 10, 12, 0.58) 42%, rgba(8, 10, 12, 0.36) 100%);
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - 40px));
  min-height: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 68px 0 70px;
  background: none;
  border: none;
  box-shadow: none;
}

.page-hero-copy {
  max-width: 620px;
}

.page-hero .section-tag,
.page-hero h1 {
  color: #fffaf6;
}

.page-hero .lead {
  max-width: 60ch;
  font-size: 1rem;
  color: rgba(255, 248, 244, 0.88);
}

.editorial-panel {
  min-height: 420px;
}

.metric-card strong,
.process-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: Georgia, serif;
}

.metric-card strong {
  font-size: 1.8rem;
}

.process-card strong {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(201, 31, 46, 0.1);
  font-size: 0.96rem;
}

.form-shell {
  padding: 26px;
}

.form-head {
  margin-bottom: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.92rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font: inherit;
  outline: none;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.optin-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, rgba(201, 31, 46, 0.14), var(--panel) 72%);
}

.map-layout {
  align-items: stretch;
}

.map-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-embed {
  display: grid;
  gap: 14px;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
}
.site-footer {
  margin-top: 18px;
}

.footer-compact {
  display: grid;
  gap: 18px;
  padding: 22px 28px;
  background: #11151a;
}

.footer-brand-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  width: 170px;
}

.footer-mini-copy {
  margin: 0;
}

.footer-links-row,
.footer-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links-row a,
.footer-meta-row a,
.footer-meta-row span,
.footer-bottom-inner,
.footer-bottom-inner a {
  color: rgba(255, 248, 244, 0.82);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom-inner {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  left: auto;
  bottom: 24px;
  z-index: 40;
  width: min(420px, calc(100% - 32px));
}

.cookie-banner-inner {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(14, 17, 21, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.cookie-banner strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.2;
}

.cookie-banner p {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.cookie-actions .button {
  width: 100%;
  min-height: 48px;
}

.form-status[data-state="error"] {
  color: #ff9ca3;
}

.form-status[data-state="success"] {
  color: #c8f0d1;
}

.image-office::before,
.image-banner.image-office::before {
  background-image: url("Bilder/optimized/DSC08662.jpg");
}

.image-brand::before {
  background-image: url("Bilder/optimized/DSC08922.jpg");
}

.image-wall::before,
.image-banner.image-wall::before {
  background-image: url("Bilder/optimized/DSC08938.jpg");
}

.image-books::before,
.image-banner.image-books::before {
  background-image: url("Bilder/optimized/DSC08539.jpg");
}

.image-detail::before {
  background-image: url("Bilder/optimized/DSC08578.jpg");
}

.image-map::before,
.image-banner.image-map::before {
  background-image: url("Bilder/optimized/DSC08603.jpg");
}

.hero-home {
  margin-top: 0;
}

.hero-stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #0f1216;
  background-image: linear-gradient(90deg, rgba(8, 10, 12, 0.28) 0%, rgba(8, 10, 12, 0.18) 100%), url("Bilder/optimized/DSC08662.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 12, 0.76) 0%, rgba(8, 10, 12, 0.58) 38%, rgba(8, 10, 12, 0.42) 100%);
}

.hero-home-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - 40px));
  min-height: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 62px 0 64px;
  background: none;
  border: none;
  box-shadow: none;
}

.hero-copy-wide {
  max-width: 600px;
}

.hero-home .eyebrow {
  color: #fffaf6;
}

.hero-home h1 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 3.9vw, 3.45rem);
  line-height: 0.99;
  color: #fffaf6;
}

.hero-home .lead {
  max-width: 56ch;
  font-size: 1rem;
  color: rgba(255, 248, 244, 0.9);
}

.hero-home .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #fffaf6;
}

.hero-home + .trust-band {
  margin-top: 12px;
}
@media (max-width: 1320px) {
  .page-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1080px) {
  .page-hero,
  .page-hero .section-inner {
    min-height: 390px;
  }

  .hero-stage,
  .hero-home-inner {
    min-height: 440px;
  }

  .hero-inner,
  .intro-grid-layout,
  .editorial-grid,
  .contact-layout,
  .hero-visual,
  .optin-shell,
  .footer-brand-row {
    grid-template-columns: 1fr;
  }

  .feature-list,
  .process-band,
  .two-col,
  .two-col-form {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .page-links-grid,
  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-card-tall,
  .gallery-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .hero-card-large,
  .hero-card-small,
  .editorial-panel {
    min-height: 320px;
  }

  .header-inner,
  .top-banner-inner,
  .footer-bottom-inner,
  .cookie-banner-inner,
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .top-banner-inner,
  .header-inner,
  .hero-inner,
  .trust-band,
  .section-inner,
  .footer-inner,
  .footer-bottom-inner {
    width: calc(100% - 16px);
  }

  .banner-links,
  .hero-actions,
  .optin-actions,
  .cookie-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    padding: 22px;
  }

  .top-banner-inner {
    gap: 8px;
    align-items: flex-start;
    font-size: 0.75rem;
  }

  .banner-links {
    gap: 6px;
  }

  .banner-cta {
    font-size: 0.78rem;
  }

  .header-inner {
    min-height: auto;
    gap: 14px;
    padding: 14px 0 12px;
    align-items: flex-start;
  }

  .brand {
    width: 148px;
  }

  .main-nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.88rem;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section-note,
.lead,
  .feature-card p,
  .gallery-card span,
  .hero-card p,
  .service-list,
  .contact-card p,
  .footer-mini-copy,
  .legal-content p,
  .legal-content li,
  .form-note,
  .cookie-banner p,
  .process-card p,
  .metric-card span {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .feature-card,
  .service-panel,
  .metric-card,
  .process-card,
  .contact-card,
  .mini-card,
  .form-shell {
    padding: 18px;
  }
}

@media (max-width: 720px) {
  .hero-stage,
  .hero-home-inner {
    min-height: 400px;
  }

  .hero-home-inner {
    align-items: end;
    padding: 34px 0 28px;
  }

  .hero-home h1 {
    max-width: 10ch;
    font-size: clamp(1.7rem, 8vw, 2.45rem);
  }

.lead,
  .page-hero .lead {
    max-width: none;
    font-size: 0.92rem;
  }

  .hero-actions .button,
  .optin-actions .button,
  .form-actions .button,
  .cookie-actions .button {
    width: 100%;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .trust-band p {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.9rem;
  }

  .metric-strip,
  .page-links-grid,
  .gallery-grid,
  .process-band,
  .two-col,
  .two-col-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: repeat(4, 210px);
  }

  .gallery-card {
    padding: 18px;
  }

  .map-frame {
    min-height: 260px;
  }

  .page-hero,
  .page-hero .section-inner {
    min-height: 280px;
  }

  .page-hero .section-inner {
    width: calc(100% - 16px);
    padding: 24px 0 24px;
    align-items: end;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .service-panel h2,
  .section h2,
  .legal-content h1 {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .footer-compact {
    padding: 18px 20px;
  }

  .footer-links-row,
  .footer-meta-row {
    gap: 8px 14px;
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
  }

  .cookie-banner-inner {
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }
}







.metric-card {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.metric-card span {
  display: block;
  max-width: 21ch;
  line-height: 1.55;
}

.metric-card strong {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1;
}

.accent-card {
  background: linear-gradient(180deg, rgba(201, 31, 46, 0.14), var(--panel) 72%);
  border-color: rgba(201, 31, 46, 0.22);
}

.image-founder::before {
  background-image: url("Bilder/optimized/DSC08717-3.jpg");
}

.image-founder-close::before {
  background-image: url("Bilder/optimized/DSC08743.jpg");
}

.image-team-office::before {
  background-image: url("Bilder/optimized/DSC08979.jpg");
}

.image-space::before {
  background-image: url("Bilder/optimized/DSC08691.jpg");
}



















