/* =====================================================================
   josthille — Talking Head Video Editor
   Oben: Folioblox-Look (Orange, Bild 1) · Scroll: Reload-Look (Rot/Weiß, Bild 2)
   ===================================================================== */

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

:root {
  --orange:   #ff5c00;
  --orange-2: #ff7d2e;
  --maroon:   #7c1a1a;   /* Text/Headlines auf Hell */
  --maroon-2: #a83232;
  --ink:      #160c08;   /* warmes Fast-Schwarz (Text auf Hell) */

  --bg:      #0d0806;    /* dunkler warmer Grund */
  --bg-2:    #17110c;
  --panel:   #16100b;
  --cream:   #f2eee7;    /* helle Sektion */
  --cream-2: #ffffff;
  --twotone: #cabdb2;    /* graues Wort in zweifarbiger Headline */

  --text:    #f4efe8;    /* Text auf Dunkel */
  --muted-d: #b6a99f;
  --muted-l: #6d635b;
  --faint:   #8a7d73;

  --line-d:  rgba(255,255,255,0.10);
  --line-ds: rgba(255,255,255,0.06);
  --line-l:  rgba(22,12,8,0.12);
  --line-o:  rgba(255,92,0,0.4);

  --font:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Space Grotesk', var(--font);
  --head:    'Anton', 'Space Grotesk', sans-serif;
  --logo:    'Poppins', var(--display);

  --maxw: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page { display: none; }
.page.active { display: block; }

em, .em { font-style: normal; color: var(--orange); }

/* =====================  NAV  ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.2rem; height: 68px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(13,8,6,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line-d);
}
.nav-logo {
  font-family: var(--logo); font-size: 21px; font-weight: 700;
  color: #fff; cursor: pointer; letter-spacing: -0.015em; text-transform: lowercase;
}
.nav-center { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  background: transparent; border: none; color: rgba(255,255,255,0.82);
  font-family: var(--font); font-size: 14px; font-weight: 400;
  cursor: pointer; transition: color 0.16s;
}
.nav-link:hover { color: #fff; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: #fff; color: var(--ink); border: none;
  padding: 0.35rem 0.4rem 0.35rem 1.15rem; border-radius: 100px;
  font-family: var(--font); font-size: 13px; font-weight: 600; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.nav-cta .arrow {
  width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}

/* =====================  BUTTONS  ===================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--orange); color: #fff; border: none;
  padding: 0.9rem 1.8rem; border-radius: 100px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: var(--font); transition: all 0.2s;
}
.btn-primary:hover { background: var(--orange-2); box-shadow: 0 10px 30px rgba(255,92,0,0.35); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: transparent; color: var(--ink); border: 1.5px solid var(--ink);
  padding: 0.85rem 1.9rem; border-radius: 100px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: var(--font); transition: all 0.2s;
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline .arrow-o { color: var(--orange); }

/* =====================  HERO (Folioblox / Orange)  ===================== */
.hero { padding: 84px 1.2rem 1.2rem; background: var(--bg); }

.hero-card {
  position: relative; width: 100%; margin: 0 auto; overflow: hidden;
  border-radius: 34px;
  padding: clamp(1.8rem, 3.4vw, 4rem);
  min-height: clamp(560px, 46vw, 860px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem;
  background:
    radial-gradient(120% 95% at 68% 4%, #ff9d52 0%, #ff5f10 26%, #d42c00 46%, #6d1400 68%, #240703 88%, #120503 100%);
}

/* Vollflächiges Portrait-Foto */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;
}
/* Scrim für Lesbarkeit (Ränder/unten dunkler, Mitte bleibt hell) */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,5,3,0.34) 0%, transparent 24%, transparent 62%, rgba(40,8,4,0.40) 100%),
    linear-gradient(0deg, rgba(14,4,3,0.55) 0%, transparent 30%);
}
.hero-card > .hero-top, .hero-card > .hero-services { position: relative; z-index: 2; }

.hero-top { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex: 1; }
.hero-copy { max-width: 55%; }
.hero-eyebrow { display: block; font-size: clamp(1rem, 1.6vw, 1.35rem); color: #fff; font-weight: 400; margin-bottom: 0.5rem; }
.hero-title {
  font-family: 'Poppins', var(--display); font-weight: 700; color: #fff;
  font-size: clamp(3rem, 8.5vw, 7rem); line-height: 0.98; letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(20,4,2,0.35);
}
.hero-aside { max-width: 290px; text-align: left; }
.hero-tagline { font-size: clamp(1.15rem, 1.8vw, 1.55rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 0.7rem; text-shadow: 0 2px 24px rgba(20,4,2,0.4); }
.hero-desc { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; text-shadow: 0 1px 18px rgba(20,4,2,0.5); }

/* 3 Hashtags — mittig gruppiert */
.hero-services {
  display: flex; justify-content: center; gap: clamp(3rem, 11vw, 9rem);
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.22);
}
.hsv { display: flex; flex-direction: column; gap: 0.4rem; text-align: center; }
.hsv-num { font-size: 13px; font-weight: 700; color: var(--orange-2); }
.hsv-name { font-size: 15px; color: #fff; font-weight: 500; }

/* Trusted / Tool-Leiste (dunkle Karte) */
.trusted {
  width: 100%; margin: 1rem auto 0;
  background: var(--panel); border-radius: 26px;
  padding: 1.7rem clamp(1.8rem, 4vw, 3.4rem);
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.trusted-label { font-size: 12px; color: var(--muted-d); line-height: 1.35; font-weight: 500; }
.trusted-logos { display: flex; align-items: center; gap: 2.4rem; flex-wrap: wrap; flex: 1; justify-content: space-around; }
.tlogo { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 17px; font-weight: 700; color: #fff; }
.tl-ic {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 13px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
}
.tl-ic.pr { background: linear-gradient(160deg, #2a1a5a, #4b2fa0); color: #d3c2ff; }
.tl-ic.ae { background: linear-gradient(160deg, #241a48, #3a2f80); color: #c6b6ff; }
.tl-img { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; flex-shrink: 0; display: block; }

/* =====================  HELLE SEKTIONEN (Reload)  ===================== */
.section.light, .cta-section.light {
  background: var(--cream); color: var(--ink);
}
.section {
  position: relative; max-width: 100%;
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 5rem);
}
.section > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.asterisk { color: var(--orange); font-size: 2rem; line-height: 1; display: inline-block; }
.asterisk.center { display: block; text-align: center; margin-bottom: 0.9rem; }

.ed-head { display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 1.5rem; margin-bottom: 1.1rem; }
.ed-head.center { display: block; text-align: center; }
/* Portfolio: Überschrift steht direkt über den Karten -> mehr Luft */
#portfolio .ed-head { margin-bottom: 2.8rem; }
.ed-title {
  font-family: var(--head); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.2rem, 5.2vw, 4.6rem); line-height: 0.98; letter-spacing: 0.005em;
  color: var(--maroon);
}
.ed-title.center { text-align: center; }
.ed-title .t2 { color: var(--twotone); }
.ed-side {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-l);
  text-align: right; line-height: 1.5; text-decoration: underline; text-underline-offset: 3px;
}
.ed-lead {
  max-width: 560px; font-size: 15px; color: var(--muted-l); line-height: 1.75; margin-bottom: 2.8rem;
}
.ed-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Portfolio-Karten */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 860px; margin-left: auto; margin-right: auto; }
.pf-card {
  border-radius: 20px; overflow: hidden; background: #e6e0d7; cursor: pointer;
  transition: transform 0.28s, box-shadow 0.28s;
}
.pf-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px rgba(40,10,5,0.18); }
.pf-media {
  aspect-ratio: 4/5; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, #cfc7bc 0%, #b7ada0 50%, #8f857a 100%);
}
.pf-play {
  width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,0.85); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 18px; padding-left: 3px;
  transition: transform 0.2s;
}
.pf-card:hover .pf-play { transform: scale(1.08); background: var(--orange); color: #fff; }
.pf-cap { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.2rem; font-weight: 600; color: var(--ink); font-size: 15px; }
.pf-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; background: var(--orange); padding: 0.2rem 0.6rem; border-radius: 100px; }

/* Leistungen */
.section.tight { padding-top: clamp(1.5rem, 3vw, 2rem); }
.service-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
  max-width: 1120px; margin: 0 auto; align-items: stretch;
}
.svc-card {
  position: relative;
  background: #fff; color: var(--ink);
  border: 1px solid rgba(22,12,8,0.08);
  border-radius: 24px; padding: 2.2rem 1.9rem 2rem;
  box-shadow: 0 10px 30px rgba(40,10,5,0.06);
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(40,10,5,0.14); border-color: rgba(255,92,0,0.35); }
.svc-icon-tile {
  width: 62px; height: 62px; border-radius: 18px;
  background: linear-gradient(150deg, #ff8a3d 0%, #ff5c00 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 1.5rem;
  box-shadow: 0 10px 22px rgba(255,92,0,0.32);
}
.svc-icon-tile svg { width: 30px; height: 30px; }
.svc-num { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--orange); margin-bottom: 0.7rem; }
.svc-card h3 { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.svc-card p { font-size: 14px; color: var(--muted-l); line-height: 1.7; }

/* CTA (hell) — folgt direkt auf Leistungen (gleiche Fläche), daher oben knapper */
.cta-section { padding: clamp(2.5rem, 4vw, 3.5rem) 1.5rem clamp(4.5rem, 7vw, 7rem); text-align: center; }
.cta-section .ed-title { margin-bottom: 1rem; }
.cta-section .ed-lead { margin-bottom: 2rem; }
.cta-section .btn-outline { margin-top: 0; }

/* =====================  FOOTER  ===================== */
footer {
  background: var(--bg); border-top: 1px solid var(--line-ds);
  padding: 1.8rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-logo { font-family: var(--logo); font-size: 17px; font-weight: 700; color: var(--muted-d); text-transform: lowercase; letter-spacing: -0.015em; }
.footer-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-link { background: transparent; border: none; cursor: pointer; font-size: 13px; color: var(--muted-d); transition: color 0.16s; }
.footer-link:hover { color: var(--orange); }
.footer-copy { font-size: 12px; color: var(--faint); }

/* =====================  ANFRAGE  ===================== */
.anfrage-wrapper { min-height: 100vh; display: grid; grid-template-columns: 1fr 1.15fr; }
.anfrage-left {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  padding: 7rem 3.5rem 4rem; display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(130% 100% at 20% 15%, #ff7d2e 0%, #d42c00 38%, #3a0a02 72%, #160c08 100%);
}
.al-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 2rem;
}
.al-tag::before { content: ''; width: 26px; height: 2px; background: #fff; }
.al-title { font-family: var(--display); font-size: clamp(1.9rem, 2.9vw, 2.9rem); font-weight: 700; letter-spacing: -0.02em; color: #fff; line-height: 1.06; margin-bottom: 1.25rem; }
.al-title em { color: #ffdcc4; }
.al-sub { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 2.6rem; max-width: 320px; }
.al-features { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.6rem; }
.al-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 13px; color: rgba(255,255,255,0.9); }
.al-check { width: 21px; height: 21px; border-radius: 50%; background: #fff; color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.al-status { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 11px; color: rgba(255,255,255,0.75); letter-spacing: 0.06em; text-transform: uppercase; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.8); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.anfrage-right { background: var(--bg-2); padding: 7rem 3.5rem 5rem; overflow-y: auto; }
.back-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; border: none; color: var(--muted-d); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; padding: 0; margin-bottom: 3rem; transition: color 0.2s; }
.back-btn:hover { color: var(--orange); }
.form-section { margin-bottom: 2.5rem; }
.form-section-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--line-ds); font-weight: 600; }
.form-section-label span { color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.form-group { margin-bottom: 0.75rem; }
.form-group:last-child { margin-bottom: 0; }
label.field-label { display: block; font-size: 10.5px; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; font-weight: 600; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--line-ds); color: var(--text);
  padding: 0.8rem 1rem; font-size: 14px; font-family: var(--font); border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
input:focus, textarea:focus { border-color: var(--line-o); box-shadow: 0 0 0 3px rgba(255,92,0,0.1); }
input::placeholder, textarea::placeholder { color: #5f544c; }
input[type="date"] { color-scheme: dark; }
textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.radio-group { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.radio-option { position: relative; }
.radio-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-option label { display: inline-flex; align-items: center; padding: 0.5rem 0.95rem; background: rgba(255,255,255,0.03); border: 1px solid var(--line-ds); border-radius: 100px; font-size: 13px; color: var(--muted-d); cursor: pointer; transition: all 0.15s; margin: 0; user-select: none; }
.radio-option input[type="radio"]:checked + label { background: rgba(255,92,0,0.14); border-color: var(--line-o); color: var(--orange-2); }
.radio-option label:hover { border-color: var(--line-d); color: var(--text); }
.submit-btn { width: 100%; background: var(--orange); color: #fff; border: none; padding: 1rem 2rem; font-size: 14px; font-weight: 600; cursor: pointer; border-radius: 100px; font-family: var(--font); margin-top: 0.75rem; transition: all 0.2s; }
.submit-btn:hover { background: var(--orange-2); box-shadow: 0 10px 28px rgba(255,92,0,0.35); }
.success-state { display: none; text-align: center; padding: 5rem 1rem; }
.success-icon { width: 66px; height: 66px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 27px; color: #fff; box-shadow: 0 0 34px rgba(255,92,0,0.4); }
.success-state h2 { font-family: var(--display); font-size: 1.7rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.success-state p { font-size: 14px; color: var(--muted-d); margin-bottom: 2.5rem; line-height: 1.7; }

/* =====================  DASHBOARD + PASSWORT  ===================== */
.pw-screen { display: none; min-height: 100vh; align-items: center; justify-content: center; flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem; background: var(--bg); }
.pw-screen.show { display: flex; }
.pw-box { background: var(--panel); border: 1px solid var(--line-d); border-radius: 20px; padding: 2.5rem; width: 100%; max-width: 370px; text-align: left; }
.pw-title { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.pw-sub { font-size: 13px; color: var(--muted-d); margin-bottom: 1.75rem; }
.pw-input { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--line-ds); color: var(--text); padding: 0.8rem 1rem; font-size: 14px; font-family: var(--font); border-radius: 12px; outline: none; margin-bottom: 0.75rem; transition: border-color 0.2s, box-shadow 0.2s; }
.pw-input:focus { border-color: var(--line-o); box-shadow: 0 0 0 3px rgba(255,92,0,0.1); }
.pw-btn { width: 100%; background: var(--orange); color: #fff; border: none; padding: 0.9rem; font-size: 14px; font-weight: 600; cursor: pointer; border-radius: 100px; font-family: var(--font); transition: all 0.2s; }
.pw-btn:hover { background: var(--orange-2); }
.pw-error { font-size: 11px; color: #ff6a6a; margin-top: 0.5rem; display: none; }
.dashboard-page { min-height: 100vh; padding: 8rem 2.5rem 5rem; max-width: 1040px; margin: 0 auto; display: none; background: var(--bg); }
.dashboard-page.show { display: block; }
.dash-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line-ds); gap: 1rem; }
.dash-title { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.dash-sub { font-size: 12px; color: var(--faint); letter-spacing: 0.04em; }
.dash-actions { display: flex; gap: 0.5rem; align-items: center; }
.dash-clear, .dash-logout { background: transparent; border: 1px solid var(--line-ds); color: var(--muted-d); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.5rem 1rem; border-radius: 100px; cursor: pointer; transition: all 0.2s; }
.dash-clear:hover { border-color: rgba(255,90,90,0.5); color: #ff6a6a; }
.dash-logout:hover { border-color: var(--line-o); color: var(--orange); }
.inq-card { background: var(--panel); border: 1px solid var(--line-ds); border-radius: 16px; padding: 1.5rem 1.85rem; margin-bottom: 0.85rem; transition: border-color 0.2s, box-shadow 0.2s; }
.inq-card:hover { border-color: var(--line-o); box-shadow: 0 8px 26px rgba(0,0,0,0.35); }
.inq-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 1rem; }
.inq-name { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.inq-contact { font-size: 12px; color: var(--muted-d); }
.inq-date { font-size: 11px; color: var(--faint); text-align: right; white-space: nowrap; }
.inq-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.75rem; }
.tag { font-size: 11px; padding: 0.25rem 0.7rem; border-radius: 100px; background: rgba(255,92,0,0.12); color: var(--orange-2); border: 1px solid rgba(255,92,0,0.22); }
.inq-msg { font-size: 13px; color: var(--muted-d); line-height: 1.7; padding-top: 0.85rem; border-top: 1px solid var(--line-ds); }
.empty-dash { text-align: center; padding: 5rem 0; color: var(--faint); font-size: 14px; line-height: 1.7; }
.empty-dash .big { font-family: var(--head); font-size: 2.6rem; margin-bottom: 0.75rem; color: #3a2c22; }

/* =====================  DATENSCHUTZ  ===================== */
.legal { max-width: 780px; margin: 0 auto; padding: 8rem 1.5rem 5rem; background: var(--bg); }
.section-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 1rem; }
.section-tag::before { content: '//'; color: var(--faint); }
.legal-title { font-family: var(--display); font-size: clamp(2rem, 4.2vw, 2.9rem); font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin: 0.4rem 0 1.2rem; line-height: 1.08; }
.legal-lead { font-size: 15px; color: var(--muted-d); line-height: 1.8; margin-bottom: 1.5rem; max-width: 640px; }
.legal h2 { font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--text); margin: 2.4rem 0 0.6rem; }
.legal p { font-size: 14px; color: var(--muted-d); line-height: 1.85; margin-bottom: 0.6rem; }
.legal em { color: var(--orange); }
.legal a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.legal-box { border: 1px solid var(--line-ds); border-left: 2px solid var(--orange); border-radius: 12px; padding: 1rem 1.2rem; background: var(--panel); color: var(--text); font-size: 14px; line-height: 1.7; }
.legal-note { margin-top: 2.2rem; padding: 1rem 1.2rem; border: 1px solid var(--line-ds); border-radius: 12px; background: rgba(255,92,0,0.05); font-size: 13px; color: var(--muted-d); }
.legal-updated { font-size: 12px; color: var(--faint); margin-top: 1.2rem; }

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 940px) {
  .hero-card { min-height: clamp(520px, 82vh, 640px); }
  .hero-top { flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 1.2rem; }
  .hero-copy { max-width: 100%; }
  .hero-aside { max-width: 100%; }
  .hero-scrim { background: linear-gradient(0deg, rgba(14,4,3,0.7) 0%, rgba(14,4,3,0.15) 45%, transparent 75%); }
  .hero-services { gap: clamp(1.5rem, 8vw, 3rem); }
  .trusted { flex-direction: column; align-items: flex-start; }
  .trusted-logos { justify-content: flex-start; gap: 1.6rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
}
@media (max-width: 760px) {
  nav { padding: 0 1.1rem; }
  .nav-center { display: none; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-services { flex-wrap: wrap; gap: 1.4rem 2.4rem; }
  .service-cards { grid-template-columns: 1fr; max-width: 380px; }
  .anfrage-wrapper { grid-template-columns: 1fr; }
  .anfrage-left { position: static; height: auto; padding: 6rem 1.5rem 3rem; }
  .anfrage-right { padding: 3rem 1.5rem 5rem; }
  .form-row { grid-template-columns: 1fr; }
  .dashboard-page { padding: 7rem 1.25rem 4rem; }
  footer { padding: 1.5rem 1.25rem; flex-direction: column; text-align: center; }
  .dash-header { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .badge-dot { animation: none !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
