/* ============================================================
   NAUY-Digital · Dark-Theme · Multi-Page Stylesheet
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  /* Hauptfarben */
  --c-black:     #0a0a0a;
  --c-bg:        #0d0d0e;
  --c-surface:   #141416;
  --c-surface-2: #1a1a1d;
  --c-line:      rgba(255,255,255,0.08);
  --c-line-2:    rgba(255,255,255,0.14);
  --c-text:      #fcfcfa;
  --c-text-mid:  rgba(252,252,250,0.82);
  --c-text-dim:  rgba(252,252,250,0.62);

  /* Markenfarben */
  --c-green: #337468;
  --c-teal:  #4b9ea9;
  --c-navy:  #093857;
  --c-blue:  #1d5168;

  --grad-1: linear-gradient(120deg, #4b9ea9 0%, #337468 50%, #1d5168 100%);
  --grad-2: linear-gradient(180deg, rgba(75,158,169,0.18), transparent 70%);

  --shadow-md:   0 20px 60px rgba(0,0,0,0.55);
  --shadow-glow: 0 10px 40px rgba(75,158,169,0.25);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease2: cubic-bezier(0.16, 1, 0.3, 1);

  --max:  1240px;
  --pad:  clamp(1.2rem, 4vw, 2.5rem);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ============== RESET ============== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--c-bg);
}
body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--c-teal); color: var(--c-black); }

/* ============== TYPOGRAFIE ============== */
h1, h2, h3, h4 {
  color: var(--c-text);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 6.6vw, 5.6rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.85rem); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--c-text-mid); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1.1rem;
}
.grad-text {
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.dim { color: var(--c-text-dim); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section { position: relative; }
.section-head {
  max-width: 720px;
  margin: 0 auto 3.2rem;
  text-align: center;
}
.section-head p { color: var(--c-text-dim); margin-top: 0.8rem; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease),
              border-color .35s var(--ease), box-shadow .35s var(--ease),
              color .35s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--c-text);
  color: var(--c-black);
  box-shadow: 0 10px 35px rgba(255,255,255,0.08);
}
.btn-primary:hover {
  background: var(--c-teal);
  color: var(--c-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--c-text);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }
.btn-lg { padding: 1.2rem 2.4rem; font-size: 1.05rem; }

/* ============== NAVIGATION ============== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.5rem 0;
  background: rgba(13,13,14,0.55);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.nav.scrolled {
  padding: 0.3rem 0;
  background: rgba(10,10,10,0.85);
  border-bottom-color: var(--c-line);
}
.nav.scrolled .nav-logo img { height: 120px; transform: translateY(-50%); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center;
  position: relative;
  z-index: 10;
  height: 40px;
  width: 280px;
}
.nav-logo img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 180px;
  width: auto;
  max-width: none;
  filter: brightness(1.05);
  transition: height 0.35s var(--ease), transform 0.35s var(--ease);
}
.nav-logo em   { color: var(--c-teal); font-style: normal; }
.nav-links     { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text-mid);
  position: relative;
  padding: 0.4rem 0;
  transition: color .25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-text); }
.nav-links a::after {
  content: "";
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--c-teal);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-text);
  color: var(--c-black) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-links a.nav-cta:hover { background: var(--c-teal) !important; transform: translateY(-1px); }
.nav-links a.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 34px; height: 34px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 5px;
  width: 24px; height: 2px;
  background: var(--c-text);
  transition: all .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { top: 16px; transform: rotate(-45deg); }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 14vh, 10rem) var(--pad) clamp(4rem, 10vh, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.06);
  filter: contrast(1.05) saturate(1.1);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(75,158,169,0.18), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(9,56,87,0.55), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, var(--c-bg) 95%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.35;
}
.hero-content {
  max-width: 940px;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.hero h1 { margin-bottom: 1.6rem; }
.hero-lead {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  color: var(--c-text-mid);
  max-width: 760px;
  line-height: 1.55;
}
.hero-cta { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  color: var(--c-text-dim);
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, var(--c-text-dim), transparent);
  animation: scrollPulse 2.6s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(0.6); opacity: 0.4; }
  50%     { transform: scaleY(1);   opacity: 1; }
}

/* ============== INTRO BAND ============== */
.intro {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: 1px solid var(--c-line);
}
.intro-line {
  font-size: clamp(1.55rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  max-width: 1080px;
}
.intro-line .dim { color: var(--c-text-dim); }

/* ============== STICKY-SCROLL SECTION ============== */
.sticky-section {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 9rem);
}
.sticky-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: flex-start;
}
.sticky-text {
  position: sticky;
  top: 8rem;
  align-self: start;
}
.sticky-text h2 { margin-bottom: 1.4rem; }
.sticky-text p  { max-width: 380px; margin-bottom: 2.4rem; color: var(--c-text-dim); }

.counter-row {
  display: flex; flex-direction: column; gap: 1rem;
  border-top: 1px solid var(--c-line);
  padding-top: 1.6rem;
}
.counter-row > div {
  display: flex; align-items: baseline; gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--c-line);
}
.counter-row strong {
  font-size: 1.4rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--c-teal);
  min-width: 2.5rem;
}
.counter-row span { color: var(--c-text-dim); font-size: 0.95rem; }

.sticky-stack { display: flex; flex-direction: column; gap: clamp(3rem, 8vw, 7rem); }
.sticky-card  { display: flex; flex-direction: column; gap: 1.6rem; }
.sticky-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
}
.sticky-media img {
  width: 100%; height: 120%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
  will-change: transform;
}
.sticky-card:hover .sticky-media img { transform: scale(1.04) translateY(-2%); }

.sticky-meta span {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 0.6rem;
}
.sticky-meta h3 { margin-bottom: 0.6rem; }
.sticky-meta p  { max-width: 580px; color: var(--c-text-dim); }

/* ============== SERVICES GRID ============== */
.services-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(75,158,169,0.4);
  background: var(--c-surface-2);
}
.service-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--c-surface-2);
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.service-card:hover .service-media img {
  transform: scale(1.08);
}
.service-meta h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.service-meta p {
  color: var(--c-text-dim);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-meta .num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-teal);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.text-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-teal);
  transition: color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.text-link:hover {
  color: var(--c-text);
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem; }
}

/* ============== GROßES BILDBAND ============== */
.bigshot {
  position: relative;
  height: clamp(360px, 70vh, 720px);
  margin: clamp(2rem, 4vw, 4rem) 0;
  overflow: hidden;
}
.bigshot img {
  position: absolute; inset: 0;
  width: 100%; height: 120%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
  will-change: transform;
}
.bigshot-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}
.bigshot-overlay h2 { max-width: 700px; margin: 1rem 0; }
.bigshot-overlay p  { max-width: 540px; }

/* ============== STORY / SPLIT ============== */
.story { padding: clamp(5rem, 9vw, 9rem) 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story-text h2 { margin-bottom: 1.4rem; }
.story-text p  { font-size: 1.1rem; margin-bottom: 1rem; max-width: 520px; }

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.4rem;
  border-top: 1px solid var(--c-line);
  padding-top: 1.6rem;
}
.story-stats > div  { display: flex; flex-direction: column; gap: 0.3rem; }
.story-stats strong { font-size: 1.8rem; color: var(--c-teal); font-weight: 700; letter-spacing: -0.02em; }
.story-stats span   { color: var(--c-text-dim); font-size: 0.85rem; }

.story-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.story-media img        { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.story-media:hover img  { transform: scale(1.05); }
.story-media figcaption {
  position: absolute; left: 1.4rem; bottom: 1.4rem; right: 1.4rem;
  font-size: 0.85rem; color: var(--c-text); font-weight: 500;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  width: max-content;
  max-width: calc(100% - 2.8rem);
}

/* ============== MINI-CARDS (z. B. News, Vorteile) ============== */
.feature-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.mini-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(75,158,169,0.4);
  background: var(--c-surface-2);
}
.mini-card .num {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--c-teal);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.mini-card h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.mini-card p  { color: var(--c-text-dim); font-size: 0.95rem; }

/* ============== NEWS-LISTE ============== */
.news-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.news-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 2px solid var(--c-teal);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.news-item:hover { transform: translateX(4px); border-color: var(--c-teal); }
.news-item time {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-teal); font-weight: 600;
}
.news-item h4 { margin: 0.6rem 0 0.4rem; font-size: 1.08rem; font-weight: 600; }
.news-item p  { color: var(--c-text-dim); font-size: 0.92rem; }

/* ============== GALERIE / MOSAIK ============== */
.gallery { padding: clamp(5rem, 9vw, 9rem) 0; }
.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.m-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--c-surface);
  display: block;
  isolation: isolate;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.m-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) brightness(0.85);
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  will-change: transform;
}
.m-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.m-item:hover img { transform: scale(1.06); filter: saturate(1.1) brightness(1); }
.m-tag {
  position: absolute; left: 1.2rem; bottom: 1.2rem; right: 1.2rem;
  z-index: 2;
  color: var(--c-text);
}
.m-tag span {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-teal); display: block; margin-bottom: 0.4rem;
}
.m-tag h4 { font-size: 1.1rem; font-weight: 600; }
.m-item::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.92) 100%);
}
.m-a { grid-column: span 4; grid-row: span 2; }
.m-b { grid-column: span 2; grid-row: span 1; }
.m-c { grid-column: span 2; grid-row: span 1; }
.m-d { grid-column: span 3; grid-row: span 2; }
.m-e { grid-column: span 3; grid-row: span 1; }
.m-f { grid-column: span 3; grid-row: span 1; }

/* ============== TECH (Hosting Listing) ============== */
.tech {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background:
    radial-gradient(1000px 400px at 80% 0%, rgba(75,158,169,0.10), transparent 70%),
    var(--c-surface);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.tech-grid h2 { margin: 1rem 0 1.4rem; }
.tech-grid p  { max-width: 480px; }

.tech-list { display: flex; flex-direction: column; gap: 1.4rem; }
.tech-list li {
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.tech-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(75,158,169,0.4);
  background: #1d1d21;
}
.tech-list strong { font-size: 1.05rem; color: var(--c-text); }
.tech-list span   { color: var(--c-text-dim); font-size: 0.95rem; }
.tech-list .badges {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-top: 0.6rem;
}
.tech-list .badges em {
  font-style: normal;
  background: rgba(75,158,169,0.15);
  border: 1px solid rgba(75,158,169,0.25);
  color: var(--c-teal);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
}
.live-dot {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.4rem;
  font-style: normal;
  font-size: 0.85rem; font-weight: 500;
  color: #5ddc8d;
}
.live-dot::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #5ddc8d;
  box-shadow: 0 0 0 4px rgba(93,220,141,0.18);
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(93,220,141,0.18); }
  50%     { box-shadow: 0 0 0 9px rgba(93,220,141,0.04); }
}

/* ============== TIMELINE (Über mich) ============== */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 1rem; }
.timeline::before {
  content: ""; position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--c-teal), transparent);
}
.timeline-item { position: relative; padding: 0 0 2.4rem 2.6rem; }
.timeline-item::before {
  content: ""; position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-teal);
  box-shadow: 0 0 0 4px rgba(75,158,169,0.18);
}
.timeline-item time {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-teal); font-weight: 600;
}
.timeline-item h4 { margin: 0.4rem 0 0.4rem; font-size: 1.15rem; font-weight: 600; }
.timeline-item p  { color: var(--c-text-dim); font-size: 0.95rem; }

/* ============== KONTAKT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info p  { color: var(--c-text-dim); margin-bottom: 1.4rem; }
.contact-info dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.7rem 1.4rem; margin-top: 1.4rem; }
.contact-info dt { font-weight: 600; color: var(--c-text); }
.contact-info dd a { color: var(--c-teal); }

.contact-form {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}
.contact-form label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--c-text-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin: 1rem 0 0.4rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--c-line-2);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--c-surface-2);
  color: var(--c-text);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--c-text-dim); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-teal);
  background: #1d1d21;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { margin-top: 1.4rem; width: 100%; justify-content: center; }

/* ============== CTA ============== */
.cta {
  padding: clamp(6rem, 12vw, 10rem) 0;
  text-align: center;
  background: radial-gradient(700px 400px at 50% 30%, rgba(75,158,169,0.18), transparent 70%);
}
.cta-inner { max-width: 820px; margin: 0 auto; }
.cta h2 { margin: 1rem 0 1.2rem; font-size: clamp(2.2rem, 5vw, 4rem); }
.cta p  { color: var(--c-text-dim); max-width: 540px; margin: 0 auto 2rem; }

/* ============== FOOTER ============== */
.footer {
  background: var(--c-black);
  border-top: 1px solid var(--c-line);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 36px; margin-bottom: 1rem; }
.footer-brand p   { color: var(--c-text-dim); max-width: 320px; font-size: 0.92rem; }
.footer h4        { color: var(--c-text); margin-bottom: 1rem; font-size: 0.95rem; letter-spacing: 0.04em; }
.footer ul li     { margin-bottom: 0.5rem; }
.footer ul a      { color: var(--c-text-dim); font-size: 0.92rem; transition: color .25s var(--ease); }
.footer ul a:hover{ color: var(--c-teal); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--pad) 0;
  border-top: 1px solid var(--c-line);
  display: flex; justify-content: space-between;
  font-size: 0.82rem;
  color: var(--c-text-dim);
  flex-wrap: wrap; gap: 1rem;
}

/* ============== ANIMATIONEN ============== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.10s; }
.reveal.delay-2 { transition-delay: 0.20s; }
.reveal.delay-3 { transition-delay: 0.30s; }
.reveal.delay-4 { transition-delay: 0.40s; }

/* Hero-Sequenz: startet nach der Brand-Intro-Animation */
.reveal.hero-seq-1 { transition-delay: 0.6s; }
.reveal.hero-seq-2 { transition-delay: 0.8s; }
.reveal.hero-seq-3 { transition-delay: 1.0s; }
.reveal.hero-seq-4 { transition-delay: 1.2s; }

/* ---- Hero Brand Intro ---- */
.hero-brand-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4.5rem;
  will-change: transform, opacity;
}

.hero-logo-mark {
  height: 40vh;
  width: auto;
  max-height: 380px;
  object-fit: contain;
  animation: heroLogoIn 1s var(--ease2) 0.1s both;
  will-change: transform;
  filter: drop-shadow(0 0 60px rgba(75,158,169,0.45));
}

@media (max-width: 600px) {
  .hero-logo-mark { height: 32vh; max-height: 220px; }
}

@keyframes heroLogoIn {
  0%   { opacity: 0; transform: scale(0.6) translateY(14px); filter: drop-shadow(0 0 0px rgba(75,158,169,0)); }
  65%  { opacity: 1; transform: scale(1.07) translateY(-3px); filter: drop-shadow(0 0 44px rgba(75,158,169,0.55)); }
  100% { opacity: 1; transform: scale(1) translateY(0);       filter: drop-shadow(0 0 28px rgba(75,158,169,0.35)); }
}

.hero-tagline {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.35;
  letter-spacing: -0.025em;
  animation: heroTagIn 0.85s var(--ease2) 0.62s both;
}

@keyframes heroTagIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--c-teal), transparent);
  animation: heroLineIn 0.7s var(--ease2) 1.15s both;
}

@keyframes heroLineIn {
  from { width: 0; opacity: 0; }
  to   { width: clamp(120px, 18vw, 220px); opacity: 1; }
}

[data-parallax] { will-change: transform; transition: transform .15s linear; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .sticky-wrap { grid-template-columns: 1fr; }
  .sticky-text { position: relative; top: auto; }
  .story-grid, .tech-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .m-a { grid-column: span 4; grid-row: span 2; }
  .m-b, .m-c { grid-column: span 2; }
  .m-d { grid-column: span 4; grid-row: span 2; }
  .m-e, .m-f { grid-column: span 2; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; inset: 70px 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: rgba(10,10,10,0.96);
    padding: 1.5rem var(--pad);
    border-bottom: 1px solid var(--c-line);
    transform: translateY(-110%);
    transition: transform .4s var(--ease);
    gap: 1rem;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .story-stats { grid-template-columns: 1fr 1fr; }

  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .m-a, .m-b, .m-c, .m-d, .m-e, .m-f { grid-column: span 2; grid-row: span 1; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bigshot-overlay { background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.2) 100%); }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.cookie-content {
  max-width: var(--container-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--text-dim);
}
.cookie-content a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
  }
  .cookie-content p {
    text-align: left;
  }
}
