/* ========================================================
   REGENSBURGER DIGITAL - Stylesheet
   Helles Theme mit dunklen Akzent-Bändern (Hero, CTA, Footer),
   große Typografie, Glow-Akzente, Scroll-Motion.
   Space Grotesk + Inter, lokal gehostet als Variable Fonts.
   ======================================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-v20-latin-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('fonts/space-grotesk-v22-latin-variable.woff2') format('woff2');
}

:root {
  --ink: #16261d;
  --ink-2: #1c2f24;
  --ink-3: #22392c;
  --line-dark: rgba(243, 240, 231, 0.12);

  --bg: #fbfaf5;
  --bg-soft: #f3f0e7;
  --bg-soft-2: #ece6d6;
  --line: rgba(22, 38, 29, 0.1);
  --line-strong: rgba(22, 38, 29, 0.16);

  --text: #16261d;
  --text-dim: #56705c;
  --text-faint: #9c948a;
  --cream: #f3f0e7;
  --cream-muted: #c9c2b2;

  --accent: #b9902e;
  --accent-light: #d4ac53;
  --accent-dark: #93701f;

  --font-heading: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Courier New', ui-monospace, Consolas, monospace;

  --shadow-sm: 0 2px 10px rgba(22, 38, 29, 0.07);
  --shadow-md: 0 14px 34px rgba(22, 38, 29, 0.12);
  --shadow-lg: 0 24px 60px rgba(22, 38, 29, 0.2);
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dim);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--text);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.accent {
  background: linear-gradient(120deg, var(--accent-light), var(--accent) 55%, var(--accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Scroll-Fortschrittsbalken ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 200;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.1px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease-cinematic), box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn svg { transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-dark) 100%);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(147, 112, 31, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(147, 112, 31, 0.45);
}

.btn-secondary {
  background-color: rgba(243, 240, 231, 0.06);
  color: var(--cream);
  border: 1.5px solid rgba(243, 240, 231, 0.28);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-3px);
}

.btn-light {
  background-color: var(--cream);
  color: var(--ink);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ---- Scroll-Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.8s var(--ease-cinematic), transform 0.8s var(--ease-cinematic);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ========================================================
   HEADER / NAVIGATION
   ======================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(22, 38, 29, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--cream);
}

.logo-sub {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}

.logo-bar {
  display: inline-block;
  width: 13px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--accent);
  flex-shrink: 0;
}

.logo-mono {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cream-muted);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.7rem;
  align-items: center;
}

.main-nav a {
  display: inline-block;
  color: rgba(243, 240, 231, 0.85);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  padding: 0.3rem 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent-light);
  border-bottom-color: var(--accent-light);
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-dark) 100%);
  color: var(--ink);
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border-bottom: none;
  font-weight: 600;
}

.main-nav .nav-cta:hover {
  color: var(--ink);
  filter: brightness(1.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--cream);
  border-radius: 2px;
}

/* ========================================================
   HERO (dunkles Akzent-Band)
   ======================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 1.5rem 4.5rem;
}

/* Foto-Ebene: geblurrt, ganz hinten */
.hero::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-image: url('images/hero/schreibtisch.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: blur(16px);
  transform: scale(1.1);
  z-index: 0;
}

/* Farb-Ebene: liegt über dem Foto, sorgt für die Markenfarbe */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 15% -10%, rgba(147, 112, 31, 0.45), transparent 45%),
    radial-gradient(circle at 92% 10%, rgba(185, 144, 46, 0.36), transparent 42%),
    linear-gradient(160deg, rgba(22, 38, 29, 0.88) 0%, rgba(28, 47, 36, 0.85) 55%, rgba(34, 57, 44, 0.82) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 2;
  animation: drift 22s ease-in-out infinite alternate;
}

.hero-glow-1 {
  width: 480px;
  height: 480px;
  top: -14%;
  left: -8%;
  background: rgba(147, 112, 31, 0.3);
}

.hero-glow-2 {
  width: 420px;
  height: 420px;
  bottom: -18%;
  right: -6%;
  background: rgba(185, 144, 46, 0.26);
  animation-delay: -8s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -30px) scale(1.12); }
}

.hero-grid {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-light);
  box-shadow: 0 0 0 4px rgba(212, 172, 83, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212, 172, 83, 0.22); }
  50% { box-shadow: 0 0 0 8px rgba(212, 172, 83, 0.08); }
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--cream);
  margin-bottom: 1.3rem;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 2.2rem;
  font-size: 1.1rem;
  color: rgba(243, 240, 231, 0.78);
}

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

/* ---- Hero-Visual: Browser-Mockup ---- */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.browser-window {
  background-color: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(1.2deg);
  transition: transform 0.3s ease;
  will-change: transform;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background-color: #e7ebf2;
}

.browser-dot { width: 9px; height: 9px; border-radius: 50%; background-color: #c7cedb; }

.browser-url {
  margin-left: 0.6rem;
  background-color: #f5f7fb;
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  font-size: 0.72rem;
  color: var(--text-faint);
  font-family: var(--font-body);
}

.browser-body { padding: 1.3rem; }

.mock-nav { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.3rem; }
.mock-logo { width: 20px; height: 20px; border-radius: 6px; background: linear-gradient(135deg, var(--accent-light), var(--accent-dark)); }
.mock-link { width: 34px; height: 6px; border-radius: 3px; background-color: #e2e7f0; }
.mock-btn { margin-left: auto; width: 50px; height: 16px; border-radius: 999px; background-color: var(--ink); }

.mock-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center; margin-bottom: 1.3rem; }
.mock-line { display: block; height: 10px; border-radius: 4px; background-color: #dfe4ee; margin-bottom: 0.55rem; }
.mock-line.lg { height: 13px; }
.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }

.mock-cta { display: block; width: 70px; height: 20px; border-radius: 999px; background: linear-gradient(135deg, var(--accent-light), var(--accent-dark)); margin-top: 0.7rem; }

.mock-hero-art {
  height: 90px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(147, 112, 31, 0.35), transparent 60%),
    linear-gradient(135deg, #eef1f7, #dfe4ee);
}

.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.mock-card { height: 44px; border-radius: 8px; background-color: #eef1f7; border: 1px solid #e2e7f0; }

.floating-badge {
  position: absolute;
  background-color: var(--cream);
  color: var(--ink);
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-badge svg { flex-shrink: 0; color: var(--accent-dark); }
.badge-1 { top: -1.2rem; right: 1.5rem; }
.badge-2 { bottom: -1.2rem; left: -1rem; }

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(243, 240, 231, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.scroll-cue svg { animation: bob 1.8s ease-in-out infinite; }

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ========================================================
   MARQUEE (dunkles Band, direkte Fortsetzung des Hero)
   ======================================================== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.5rem 0;
  background-color: var(--ink-2);
  border-bottom: 1px solid var(--line-dark);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 26s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(243, 240, 231, 0.45);
}

.marquee-item span { color: var(--accent-light); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================================
   LEISTUNGEN
   ======================================================== */
.services-section { padding: 6.5rem 0; }

.section-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.section-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background-color: var(--accent-dark);
}

.section-heading p { color: var(--text-dim); font-size: 1.08rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background-color: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.3rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-cinematic), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-dark) 130%);
  border: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  align-items: center;
  box-shadow: 0 20px 50px rgba(147, 112, 31, 0.28);
}

.service-card.featured h3,
.service-card.featured p { color: var(--cream); }
.service-card.featured p { color: rgba(243, 240, 231, 0.85); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(147, 112, 31, 0.35);
}

.service-card.featured:hover {
  box-shadow: 0 26px 60px rgba(147, 112, 31, 0.38);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(147, 112, 31, 0.14), rgba(147, 112, 31, 0.12));
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}

.service-card.featured .service-icon {
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.16);
  color: var(--cream);
}

.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { color: var(--text-dim); font-size: 0.95rem; }

/* ========================================================
   ABLAUF / PROZESS
   ======================================================== */
.process-section {
  background-color: var(--bg-soft);
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 21px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(147, 112, 31, 0.45) 0, rgba(147, 112, 31, 0.45) 6px, transparent 6px, transparent 12px);
}

.process-step { position: relative; padding: 1.8rem 1.4rem 0; }

.process-step-ghost {
  position: absolute;
  top: -1.6rem;
  right: 0.4rem;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(22, 38, 29, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-soft);
}

.process-step h3 { position: relative; z-index: 1; font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { position: relative; z-index: 1; color: var(--text-dim); font-size: 0.92rem; }

/* ========================================================
   REFERENZEN
   ======================================================== */
.references-section { padding: 6.5rem 0; }

.references-note {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
  background-color: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-dark);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.reference-card {
  background-color: var(--bg);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-cinematic), box-shadow 0.35s ease, border-color 0.35s ease;
}

.reference-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(147, 112, 31, 0.35);
}

.reference-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.8rem;
  background-color: #e7ebf2;
}

.reference-browser-bar span { width: 8px; height: 8px; border-radius: 50%; background-color: #c7cedb; }

.reference-media { overflow: hidden; }

.reference-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s var(--ease-cinematic);
}

.reference-card:hover img { transform: scale(1.05); }

.reference-card-body { padding: 1.7rem 1.7rem 1.9rem; }

.reference-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background-color: rgba(147, 112, 31, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.reference-card h3 { margin-bottom: 0.5rem; }
.reference-card p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 1.2rem; }

.reference-link {
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ========================================================
   ÜBER MICH
   ======================================================== */
.about-section { padding: 6.5rem 0; overflow: hidden; background-color: var(--bg-soft); }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  background:
    radial-gradient(circle at 25% 20%, rgba(212, 172, 83, 0.5), transparent 55%),
    linear-gradient(150deg, var(--ink) 0%, var(--accent-dark) 170%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(243, 240, 231, 0.2);
  border-radius: 16px;
}

.about-monogram {
  font-family: var(--font-heading);
  font-size: 6.5rem;
  font-weight: 700;
  color: rgba(243, 240, 231, 0.95);
  letter-spacing: -0.03em;
}

.about-sticker {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--cream);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.about-content .section-eyebrow { justify-content: flex-start; }
.about-content h2 { text-align: left; margin-bottom: 1.2rem; }
.about-content p { margin-bottom: 1rem; color: var(--text-dim); }

.about-usps { list-style: none; margin-top: 1.5rem; display: grid; gap: 0.9rem; }
.about-usps li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--text); font-size: 0.95rem; }
.about-usps li svg { flex-shrink: 0; color: var(--accent-dark); margin-top: 0.15rem; }

/* ========================================================
   CTA-BAND (dunkles Akzent-Band)
   ======================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
}

.cta-band-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(212, 172, 83, 0.24), transparent 70%);
  pointer-events: none;
}

.cta-band h2 { position: relative; color: var(--cream); max-width: 620px; margin: 0 auto 1rem; }
.cta-band p { position: relative; color: rgba(243, 240, 231, 0.72); max-width: 520px; margin: 0 auto 2rem; font-size: 1.08rem; }
.cta-band .btn { position: relative; }

/* ========================================================
   KONTAKT
   ======================================================== */
.contact-section { padding: 6.5rem 0; background-color: var(--bg-soft-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 0.8rem; }
.contact-info p { color: var(--text-dim); margin-bottom: 1.5rem; font-size: 0.95rem; }

.contact-details { list-style: none; }
.contact-details li { margin-bottom: 1rem; font-size: 1rem; display: flex; gap: 0.7rem; align-items: center; color: var(--text); }
.contact-details li svg { color: var(--accent-dark); flex-shrink: 0; }

.form-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  padding: 2.3rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.form-card label { font-weight: 600; font-size: 0.88rem; margin-top: 1rem; margin-bottom: 0.35rem; color: var(--text); }

.form-card input,
.form-card select,
.form-card textarea {
  font-family: var(--font-body);
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background-color: var(--bg-soft);
  font-size: 0.95rem;
  width: 100%;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--bg);
  box-shadow: 0 0 0 3px rgba(147, 112, 31, 0.14);
}

.form-card button { margin-top: 1.7rem; align-self: flex-start; }

.form-feedback { margin-top: 1rem; font-weight: 600; min-height: 1.2rem; font-size: 0.9rem; }
.form-feedback.success { color: #0f9d67; }
.form-feedback.error { color: #d64545; }

/* ========================================================
   FOOTER (dunkles Akzent-Band)
   ======================================================== */
.site-footer {
  background-color: var(--ink);
  color: rgba(243, 240, 231, 0.6);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.legal-links a { color: var(--accent-light); margin: 0 0.4rem; }

/* ========================================================
   IMPRESSUM / DATENSCHUTZ
   ======================================================== */
.legal-page { max-width: 750px; padding: 4.5rem 1.5rem 5rem; }
.legal-page h1 { font-size: clamp(2.2rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.legal-page h2 { font-family: var(--font-heading); font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.5rem; color: var(--accent-dark); }
.legal-page p { margin-bottom: 0.5rem; color: var(--text-dim); }
.legal-back { margin-top: 2.5rem; }

/* ========================================================
   SCROLL-TO-TOP
   ======================================================== */
.scroll-top {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 90;
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ========================================================
   RESPONSIVE / MOBILE
   ======================================================== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { max-width: 340px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-template-columns: auto 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .process-steps::before { display: none; }
  .references-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--ink);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open { max-height: 400px; }

  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 1.5rem 1rem; }
  .main-nav li { padding: 0.6rem 0; border-bottom: 1px solid var(--line-dark); }
  .main-nav .nav-cta { display: inline-block; margin-top: 0.6rem; text-align: center; }

  .hero h1 { font-size: 2.2rem; }
  .scroll-cue { display: none; }
  .floating-badge { font-size: 0.75rem; padding: 0.5rem 0.8rem; }

  .service-card.featured { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step-ghost { display: none; }
}
