/* ==========================================
   dnls-design.de — Main Stylesheet
   ========================================== */

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

/* ---- Variables ---- */
:root {
  --black: #0a0a0a;
  --white: #f5f5f0;
  --lemon: #d4fc0a;
  --orange: #ff6b2b;
  --grey: #1a1a1a;
  --grey-light: #2a2a2a;
  --text-muted: #888;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* ---- Self-hosted Fonts (DSGVO-konform) ---- */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/syne-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/syne-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/space-mono-regular-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/space-mono-regular-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/space-mono-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/space-mono-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/space-mono-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/space-mono-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Base ---- */
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--lemon) var(--black);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; cursor: none; }

/* ---- Noise Overlay ---- */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ---- Custom Cursor ---- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--lemon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.15s;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--lemon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  opacity: 0;
  transition: width 0.3s, height 0.3s, opacity 0.15s;
  will-change: transform;
}

/* ---- Page Transition ---- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--lemon);
  z-index: 2000;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}


/* ==========================================
   Navigation
   ========================================== */

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), transparent);
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 140px;
}

.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* Hamburger */
.hamburger {
  width: 35px;
  height: 24px;
  position: relative;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  transition: all 0.4s var(--ease-bounce);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

.hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* Fullscreen Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.nav-menu {
  text-align: center;
  list-style: none;
}

.nav-menu li {
  overflow: hidden;
  margin: 10px 0;
}

.nav-menu a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--white);
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.6s var(--ease-out-expo), color 0.3s;
  letter-spacing: -2px;
}

.nav-overlay.active .nav-menu a {
  transform: translateY(0);
}

.nav-menu li:nth-child(1) a { transition-delay: 0.1s; }
.nav-menu li:nth-child(2) a { transition-delay: 0.15s; }
.nav-menu li:nth-child(3) a { transition-delay: 0.2s; }
.nav-menu li:nth-child(4) a { transition-delay: 0.25s; }
.nav-menu li:nth-child(5) a { transition-delay: 0.3s; }

.nav-menu a:hover { color: var(--lemon); }

.nav-menu a .num {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--orange);
  vertical-align: super;
  margin-right: 8px;
}


/* ==========================================
   Shared Components
   ========================================== */

/* Section Label */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--orange);
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: var(--lemon);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.cta-btn:hover {
  background: var(--orange);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 107, 43, 0.3);
}

.cta-btn .arrow { transition: transform 0.3s; }
.cta-btn:hover .arrow { transform: translateX(5px); }

/* CTA Section */
.cta-section {
  padding: 120px 60px;
  text-align: center;
  position: relative;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 30px;
}

.cta-section h2 .accent { color: var(--lemon); }

.cta-section .cta-subtitle {
  color: var(--text-muted);
  font-family: var(--font-body);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Photo Placeholder */
.photo-placeholder {
  aspect-ratio: 4/5;
  background: var(--grey);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder::after {
  content: 'FOTO';
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 5px;
  color: var(--grey-light);
}

/* Form */
.form-group {
  margin-bottom: 30px;
  position: relative;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--grey-light);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--lemon);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* DSGVO Consent Checkbox */
.form-group-checkbox {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-group-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--lemon);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-group-checkbox label {
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.form-group-checkbox label a {
  color: var(--lemon);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Honeypot (Anti-Spam, unsichtbar) */
.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Form Status Message */
.form-status {
  margin-top: 20px;
  font-size: 0.85rem;
  line-height: 1.6;
  min-height: 1.4em;
}

.form-status.success {
  color: var(--lemon);
}

.form-status.error {
  color: var(--orange);
}

/* SR-Only (visually hidden) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   Hero (Startseite)
   ========================================== */

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 24px 140px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1400px;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 5.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 36px;
  will-change: transform, opacity;
}

.hero-heading .line {
  display: block;
}

.hero-heading .accent { color: var(--lemon); display: inline-block; }

.kinetic {
  display: inline-block;
  animation: danielPulse 3.6s 2s ease-in-out infinite;
}

@keyframes danielPulse {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  20%      { transform: translateY(-6px) rotate(-1.6deg) scale(1.04); }
  60%      { transform: translateY(3px) rotate(1.6deg) scale(0.98); }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  color: var(--lemon);
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: subtitleIn 1.2s var(--ease-out-expo) forwards;
  will-change: opacity, transform;
}

@keyframes subtitleIn {
  to { opacity: 1; transform: translateY(0); }
}

/* BACKGROUND MARQUEE — riesiger Schriftzug der durchscrollt */
.hero-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  white-space: nowrap;
  opacity: 0;
  animation: bgFadeIn 2s 0.4s ease-out forwards;
}

@keyframes bgFadeIn { to { opacity: 1; } }

.bg-marquee-track {
  display: flex;
  animation: heroMarquee 55s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(7rem, 18vw, 22rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.08);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.bg-marquee-track > span {
  display: inline-block;
  flex-shrink: 0;
}

@keyframes heroMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* AMBIENT SPLASHES — Burst beim Laden, statische Glow-Wolken (kein filter:blur, GPU-billig) */
.splash-ambient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(600px, 70vw, 1000px);
  height: clamp(600px, 70vw, 1000px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at center, var(--c, var(--lemon)) 0%, transparent 65%);
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: splashBurst 2.6s 0.15s ease-out forwards;
}

@keyframes splashBurst {
  0%   { opacity: 0; }
  30%  { opacity: 0.55; }
  100% { opacity: 0.32; }
}

.splash-ambient:nth-child(1) { transform: translate(calc(-50% - 240px), calc(-50% - 160px)); }
.splash-ambient:nth-child(2) { transform: translate(calc(-50% + 280px), calc(-50% - 120px)); }
.splash-ambient:nth-child(3) { transform: translate(calc(-50% - 180px), calc(-50% + 200px)); }
.splash-ambient:nth-child(4) { transform: translate(calc(-50% + 220px), calc(-50% + 180px)); }


.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 2s forwards;
}

.scroll-indicator span {
  font-size: 0.8rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lemon);
  font-weight: 700;
}

.scroll-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, var(--lemon), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

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


/* ==========================================
   Marquee
   ========================================== */

.marquee-section {
  padding: 30px 0;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
  padding: 0 40px;
  color: var(--text-muted);
}

.marquee-track span.highlight { color: var(--lemon); }
.marquee-track span.highlight-orange { color: var(--orange); }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ==========================================
   About Intro (Startseite)
   ========================================== */

.about-intro {
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.about-intro h2 .accent,
.about-intro .about-text .accent { color: var(--lemon); }
.about-intro h2 .hand { color: var(--orange); }

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
}


/* ==========================================
   Services Grid (Startseite)
   ========================================== */

.services-section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.service-card-link {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.service-card-link .service-card {
  flex: 1;
}

.service-card {
  background: var(--grey);
  padding: 50px 35px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s var(--ease-out-expo);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lemon), var(--orange));
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-5px); }
.service-card:hover * { color: var(--black) !important; }

.service-card .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--grey-light);
  position: relative;
  z-index: 1;
  transition: color 0.5s;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 20px 0 15px;
  position: relative;
  z-index: 1;
  transition: color 0.5s;
}

.service-card p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: color 0.5s;
}


/* ==========================================
   Contact Form Section (Startseite)
   ========================================== */

.contact-form-section {
  padding: 80px 60px;
  max-width: 700px;
  margin: 0 auto;
}


/* ==========================================
   Counter Section (Startseite)
   ========================================== */

.counter-section {
  padding: 100px 60px;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-value {
  display: flex;
  align-items: baseline;
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--lemon);
  line-height: 1;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--orange);
}

.counter-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 15px;
}


/* ==========================================
   About Page
   ========================================== */

.about-hero {
  height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  padding-top: 200px;
  position: relative;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 0.9;
}

.about-hero h1 .stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-bio {
  padding: 100px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.about-bio p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.about-bio p .hl { color: var(--lemon); }


/* ==========================================
   What I Do Page
   ========================================== */

.whatido-hero {
  height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  padding-top: 200px;
}

.whatido-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.95;
}

.whatido-hero h1 span { color: var(--orange); }

.services-detailed {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--grey-light);
  align-items: start;
}

.service-detail-item .svc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  position: sticky;
  top: 100px;
}

.service-detail-item .svc-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.service-detail-item .svc-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 5px 5px 0 0;
}


/* ==========================================
   Creative Work Page
   ========================================== */

.work-hero {
  height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  padding-top: 200px;
}

.work-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -3px;
}

.work-hero h1 .lemon { color: var(--lemon); }

.projects-grid {
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.project-thumb {
  aspect-ratio: 16/10;
  background: var(--grey);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.6s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card:hover .project-thumb { transform: scale(1.03); }

.project-thumb .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent 60%);
  z-index: 1;
}

.project-info {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
  align-items: end;
}

.project-info h3 {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.project-info .project-type {
  grid-column: 1;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.5;
}

.project-info .project-year {
  grid-column: 2;
  font-family: var(--font-display);
  color: var(--lemon);
  font-size: 1.1rem;
  align-self: end;
  white-space: nowrap;
}


/* ==========================================
   Contact Page
   ========================================== */

.contact-hero {
  height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  padding-top: 200px;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -3px;
}

.contact-hero h1 .hand {
  font-family: var(--font-display);
  color: var(--orange);
}

.contact-content {
  padding: 60px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-info a {
  color: var(--lemon);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.contact-info a:hover { color: var(--orange); }


/* ==========================================
   Footer
   ========================================== */

footer {
  border-top: 1px solid var(--grey-light);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer .footer-cta {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

footer .footer-cta a {
  color: var(--lemon);
  transition: color 0.3s;
  display: inline-block;
}

footer .footer-cta a:hover { color: var(--orange); }

.social-links {
  display: flex;
  gap: 25px;
}

.social-links a {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.social-links a:hover { color: var(--white); }

footer .copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.footer-legal {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-legal a {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--white); }


/* ==========================================
   Scroll Reveal Animations
   ========================================== */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ==========================================
   Easter Egg Game
   ========================================== */

.game-trigger {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  font-size: 0.6rem;
  color: var(--text-muted);
  transition: all 0.3s;
}

.game-trigger:hover {
  border-color: var(--lemon);
  color: var(--lemon);
  transform: rotate(180deg);
}

.game-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.game-overlay.active { display: flex; }
.game-overlay canvas { border: 1px solid var(--grey-light); }

.game-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: none;
  transition: color 0.3s;
}

.game-close:hover { color: var(--lemon); }

.game-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--lemon);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.game-score {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 15px;
}


/* ==========================================
   Cookie Consent Banner
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  background: var(--grey);
  border-top: 1px solid var(--grey-light);
  border-radius: 16px 16px 0 0;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 700px;
}

.cookie-banner p a {
  color: var(--lemon);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner p a:hover { color: var(--orange); }

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s;
}

.cookie-btn-accept,
.cookie-btn-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn-accept:hover,
.cookie-btn-decline:hover {
  background: var(--white);
  color: var(--black);
}


/* ==========================================
   Legal Pages (Impressum, Datenschutz)
   ========================================== */

.legal-hero {
  height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  padding-top: 200px;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.95;
}

.legal-content {
  padding: 80px 60px;
  max-width: 900px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 50px 0 15px;
  color: var(--white);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 30px 0 10px;
  color: var(--white);
}

.legal-content p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 15px;
}

.legal-content ul li {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--lemon);
}

.legal-content a {
  color: var(--lemon);
  transition: color 0.3s;
}

.legal-content a:hover { color: var(--orange); }


/* ==========================================
   404 Error Page
   ========================================== */

.error-hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 200px 60px 60px;
  text-align: center;
}

.error-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 15rem);
  font-weight: 800;
  color: var(--lemon);
  line-height: 1;
  letter-spacing: -5px;
}

.error-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 30px 0 40px;
  line-height: 1.6;
}


/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 768px) {
  .nav-bar { padding: 12px 20px; }
  .nav-logo { height: 64px; margin-right: auto; }

  .hero { padding: 0 20px 100px; }
  .hero-heading { font-size: clamp(1.8rem, 9vw, 3rem); margin-bottom: 28px; }
  .splash-ambient { display: none; }
  .bg-marquee-track {
    font-size: clamp(2.2rem, 13vw, 4.5rem);
    animation-duration: 18s;
    letter-spacing: -0.02em;
  }
  .marquee-track { animation-duration: 28s; }
  .marquee-track span { padding: 0 12px; font-size: 0.85rem; }

  .about-hero h1,
  .whatido-hero h1,
  .work-hero h1,
  .contact-hero h1,
  .legal-hero h1 {
    font-size: clamp(2.5rem, 12vw, 5rem);
    word-break: break-word;
    hyphens: auto;
    letter-spacing: -2px;
  }
  .about-intro h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
    word-break: break-word;
  }

  .about-intro,
  .services-section,
  .about-hero,
  .whatido-hero,
  .work-hero,
  .contact-hero,
  .about-bio,
  .services-detailed,
  .contact-form-section,
  .cta-section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .projects-grid { grid-template-columns: 1fr; padding: 30px 25px; }
  .contact-content { grid-template-columns: 1fr; padding: 30px 25px; gap: 40px; }
  .service-detail-item { grid-template-columns: 1fr; gap: 20px; }
  .about-photo-grid { grid-template-columns: 1fr; padding: 4px 25px; }
  footer { padding: 30px 25px; }
  .counter-section { padding: 60px 25px; }
  .counter-grid { grid-template-columns: 1fr; gap: 50px; }
  .error-hero { padding: 120px 25px 40px; }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  .legal-content,
  .legal-hero {
    padding-left: 25px;
    padding-right: 25px;
  }

  *, *::before, *::after { cursor: auto; }

  .cursor-dot,
  .cursor-ring { display: none; }
}


/* ==========================================
   Reduced Motion
   ========================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bg-marquee-track,
  .marquee-track,
  .splash-ambient,
  .kinetic {
    animation: none !important;
  }
}
