/* ============================================================
   (n)ordinary studios — light, type-driven agency style
   Inspired by the minimalist portfolio aesthetic of
   dieschnittstelle.at, adapted to the nordinary brand.
   ============================================================ */

/* Headline font — Integral CF Black (Italic). Proprietary: drop the licensed
   .woff2 files into /fonts. Falls back to Space Grotesk until then. */
/* Headline font — Integral CF Heavy Oblique (full glyph set, incl. umlauts & symbols) */
@font-face {
  font-family: 'Integral CF';
  src: url('fonts/Integral CF Heavy Oblique.woff2') format('woff2'),
       url('fonts/Integral CF Heavy Oblique.ttf') format('truetype');
  font-weight: 400 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Integral CF';
  src: url('fonts/Integral CF Heavy Oblique.woff2') format('woff2'),
       url('fonts/Integral CF Heavy Oblique.ttf') format('truetype');
  font-weight: 400 900; font-style: normal; font-display: swap;
}

:root {
  /* Type: headlines in Integral CF Black Italic, everything else in SF Pro Display */
  --font-display: 'Integral CF', 'Space Grotesk', sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
  --paper:   #0C0A09;
  --cream:   #161311;
  --ink:     #F5F5F7;
  --ink-2:   #A1A1A6;
  --ink-3:   #86868B;
  --accent:  #FF4F2B;
  --accent-d:#FF4F2B;
  --line:    rgba(255, 255, 255, 0.12);
  --line-2:  rgba(255, 255, 255, 0.06);
  --maxw:    1280px;
  --r:       18px;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --panel:   #161311;
  --panel-fg:#F5F5F7;
  --nav-bg:  rgba(12, 10, 9, 0.72);
  --hover-tint: rgba(255, 255, 255, 0.08);
  --glow:    rgba(255, 79, 43, 0.32);
  --band:    rgba(255, 255, 255, 0.045);
  color-scheme: dark;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-text);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color .5s var(--ease), color .5s var(--ease);
}

/* Brand glow — fixed atmospheric gradient across the whole site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(78% 78% at 0% 0%, var(--glow), transparent 60%);
  transition: background .5s var(--ease);
}

/* Smooth theme + surface transitions (Apple-style) */
.intro, .stats, .cta, .marquee, .svc-block, .footer, .testimonial, .legal-note, .legal-page,
.mobile-menu, .work-tags span, .service-tags span, .svc-meta span {
  transition: background-color .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}

h1, h2, h3, h4, .display { font-family: var(--font-text); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; }
/* Headlines: Integral CF Black Italic */
h1, h2, .display { font-family: var(--font-display); font-weight: 900; font-style: italic; }
/* Legal pages keep umlauts → use the text font (Integral CF demo has no ä/ö/ü/ß) */
.legal-page h1, .legal-page h2 { font-family: var(--font-text); font-weight: 700; font-style: normal; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.hl { color: var(--accent); }

::selection { background: var(--accent); color: #fff; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--accent); z-index: 200; transition: width .1s linear;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-text); font-weight: 500; font-size: 1rem;
  padding: 1rem 1.6rem; border-radius: 100px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn span { transition: transform .35s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.08rem; }
.btn-block { width: 100%; justify-content: center; margin-top: auto; }

/* ---------- Nav ---------- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all .4s var(--ease);
}
#nav.scrolled {
  padding: 12px 0;
  background: var(--nav-bg);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-family: var(--font-text); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.03em; display: inline-flex; align-items: center; gap: .12em; }
.brand img { height: 84px; width: auto; display: block; transition: height .4s var(--ease), filter .3s var(--ease); }
.brand:hover img { filter: drop-shadow(0 0 18px rgba(255, 79, 43, 0.75)); }
#nav.scrolled .brand img { height: 62px; }
.brand-mark { color: var(--accent); }
.brand-rest { color: var(--ink); }
.brand-studio { font-size: .62em; font-weight: 500; color: var(--ink-3); letter-spacing: .04em; margin-left: .25em; }

.nav-links { display: flex; gap: 8px; }
.nav-link {
  font-family: var(--font-text); font-weight: 500; font-size: .98rem;
  padding: .5rem .9rem; border-radius: 100px; color: var(--ink-2);
  transition: all .25s var(--ease);
}
.nav-link:hover { color: var(--ink); background: var(--hover-tint); }

/* Nav dropdown (Leistungen) */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: .3em; }
.nav-caret { font-size: .68em; line-height: 1; position: relative; top: 1px; transition: transform .25s var(--ease); }
.nav-dropdown:hover .nav-caret, .nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 10px; min-width: 252px;
  display: flex; flex-direction: column; gap: 2px; padding: 8px;
  border-radius: 16px; background: var(--nav-bg);
  -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--line); box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
  z-index: 120;
}
.nav-dropdown-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.nav-dropdown-menu a {
  font-family: var(--font-text); font-weight: 500; font-size: .95rem; color: var(--ink-2);
  padding: .55rem .8rem; border-radius: 10px; white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--ink); background: var(--hover-tint); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  font-family: var(--font-text); font-weight: 600; font-size: .95rem;
  padding: .65rem 1.25rem; border-radius: 100px; background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; gap: .4em; transition: all .3s var(--ease);
}
.nav-cta span { transition: transform .3s var(--ease); }
.nav-cta:hover { background: #e6431f; box-shadow: 0 6px 22px -6px rgba(255,79,43,.65); }
.nav-cta:hover span { transform: translateX(4px); }

/* ---------- Burger / mobile menu ---------- */
.burger { display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: all .3s var(--ease); }
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 25px; }
.burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--paper);
  transform: translateY(-100%); transition: transform .5s var(--ease);
  display: flex; align-items: center; padding: 100px 32px 32px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.mobile-link { font-family: var(--font-text); font-weight: 600; font-size: 2.4rem; letter-spacing: -0.02em; padding: .35rem 0; border-bottom: 1px solid var(--line-2); }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }
.mobile-menu-meta { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; color: var(--ink-2); font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero { padding: 180px 0 80px; position: relative; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.1; z-index: 0; pointer-events: none; }
.hero > .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: center; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-phone { width: 100%; max-width: 520px; height: auto; aspect-ratio: 896 / 1200; filter: drop-shadow(0 24px 44px rgba(14,14,12,0.14)); }
@keyframes phone-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero-eyebrow { font-family: var(--font-text); font-weight: 500; font-size: .92rem; letter-spacing: .02em; color: var(--ink-2); }
.hero-avail { display: inline-flex; align-items: center; gap: .55em; font-size: .9rem; font-weight: 500; color: var(--ink-2); padding: .45rem .9rem; border: 1px solid var(--line); border-radius: 100px; }
.hero-avail .dot { width: 8px; height: 8px; border-radius: 50%; background: #1FB364; box-shadow: 0 0 0 0 rgba(31,179,100,.5); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(31,179,100,.5);} 70%{box-shadow:0 0 0 8px rgba(31,179,100,0);} 100%{box-shadow:0 0 0 0 rgba(31,179,100,0);} }

.hero-title { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 40px; }
.hero-title .line { display: block; overflow: hidden; padding-left: 0.22em; margin-left: -0.22em; }
.hero-title .line > span { display: block; }
@media (min-width: 1001px) { .hero-title .line > span { white-space: nowrap; } }
.hero-title em { font-style: italic; color: var(--ink-3); font-weight: 400; }

.hero-bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.5; color: var(--ink-2); max-width: 46ch; }
.hero-lead strong { color: var(--ink); font-weight: 600; }
.inline-logo { display: inline-block; height: 1.45em; width: auto; vertical-align: -0.32em; margin: 0 .12em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }

.hero-scroll { position: absolute; right: 32px; bottom: 40px; font-family: var(--font-text); font-size: .85rem; color: var(--ink-3); letter-spacing: .05em; }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--panel); border-bottom: 1px solid var(--panel); padding: 18px 0; overflow: hidden; white-space: nowrap; background: var(--panel); color: var(--panel-fg); }
.marquee-track { display: inline-flex; align-items: center; gap: 28px; }
/* Endlos-Animationen erst nach dem Laden starten (stabiler LCP, kein flaky NO_LCP) */
body.anim-on .marquee-track { animation: scroll-x 80s linear infinite; }
body.anim-on .hero-phone, body.anim-on .svc-float { animation: phone-float 6s ease-in-out infinite; }
body.anim-on .hero-avail .dot { animation: pulse 2.4s infinite; }
.marquee-track span { font-family: var(--font-text); font-weight: 500; font-size: 1.5rem; letter-spacing: -0.01em; }
.marquee-track .sep { color: var(--accent); font-size: 1rem; display: inline-flex; align-items: center; }
.marquee-track .sep img { display: inline-block !important; height: 1.6em; width: auto; max-width: none; vertical-align: middle; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Projekt: Kanal-Vorschau ---------- */
.channel-wrap { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.channel-card { width: 100%; max-width: 460px; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.channel-img { width: 100%; max-width: 460px; height: auto; border-radius: 20px; border: 1px solid var(--line); display: block; }
.channel-head { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.channel-avatar { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #FF8A6B); color: #fff; display: grid; place-items: center; font-family: var(--font-text); font-weight: 700; font-size: .95rem; }
.channel-meta { display: flex; flex-direction: column; gap: 2px; }
.channel-meta strong { font-family: var(--font-text); font-size: 1rem; }
.channel-meta span { color: var(--ink-3); font-size: .85rem; }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.channel-grid span { aspect-ratio: 1; display: block; background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); }
/* Website-Vorschau (Browser-Mockup) */
.site-card { width: 100%; max-width: 640px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.site-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.03); }
.site-dot { width: 11px; height: 11px; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.18); }
.site-url { margin-left: 10px; flex: 1; font-family: var(--font-text); font-size: .82rem; color: var(--ink-3); background: rgba(255,255,255,.05); border-radius: 100px; padding: 5px 16px; text-align: center; }
.site-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.site-hero { height: 130px; border-radius: 10px; background: linear-gradient(135deg, rgba(255,79,43,.20), rgba(255,79,43,.04)); }
.site-line { height: 12px; border-radius: 6px; background: rgba(255,255,255,.07); }
.site-line.short { width: 58%; }
.site-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 6px; }
.site-blocks span { aspect-ratio: 4 / 3; border-radius: 8px; background: rgba(255,255,255,.05); }

/* ---------- Trust / Kundenlogos ---------- */
.trust { padding: 64px 0; }
.trust-label { text-align: center; font-family: var(--font-text); font-weight: 500; font-size: 1.05rem; color: var(--ink-2); margin-bottom: 40px; }
.trust-marquee { max-width: 960px; margin: 0 auto; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.trust-track { display: inline-flex; align-items: center; white-space: nowrap; }
body.anim-on .trust-track { animation: scroll-x 38s linear infinite; }
.trust-logo { display: inline-flex; align-items: center; margin-right: 64px; flex: 0 0 auto; opacity: .55; transition: opacity .3s var(--ease); }
.trust-logo:hover { opacity: 1; }
.trust-logo img { height: 34px; width: auto; flex: 0 0 auto; object-fit: contain; filter: brightness(0) invert(1); }
.trust-logo.is-color { opacity: .85; }
.trust-logo.is-color img { filter: none; }

/* ---------- Sections ---------- */
.section { padding: 150px 0; }
.section-index { font-family: var(--font-text); font-weight: 500; font-size: .9rem; letter-spacing: .04em; color: var(--accent); display: inline-block; margin-bottom: 20px; }
.section-index.light { color: var(--accent); }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-title { font-size: clamp(1.4rem, 2.6vw, 2.1rem); margin-bottom: 18px; }
.section-sub { font-size: 1.2rem; color: var(--ink-2); max-width: 52ch; }
.leistungen .section-head, .leistungen .section-sub { max-width: none; }

/* ---------- Funnel / Warum Social Media ---------- */
.funnel-head { text-align: left; max-width: none; margin: 0 0 56px; }
.funnel-head .section-title { margin-bottom: 14px; font-size: clamp(1.4rem, 2.6vw, 2.1rem); }
.funnel-head .section-sub { max-width: none; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-text); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(255,79,43,.4); border-radius: 100px; padding: .5rem 1.1rem; margin-bottom: 26px; }
.section-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.funnel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.funnel-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); padding: 40px 32px 46px; text-align: center; transition: transform .4s var(--ease), border-color .4s var(--ease); }
.funnel-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 60%; background: radial-gradient(80% 100% at 50% 100%, rgba(255,79,43,.16), transparent 70%); pointer-events: none; }
.funnel-card > * { position: relative; z-index: 1; }
.funnel-card:hover { transform: translateY(-6px); animation: funnelGlow 1.6s ease-in-out infinite; }
@keyframes funnelGlow {
  0%, 100% { border-color: rgba(255,79,43,.35); box-shadow: 0 0 16px -6px rgba(255,79,43,.35); }
  50% { border-color: rgba(255,79,43,.95); box-shadow: 0 0 30px 0 rgba(255,79,43,.6); }
}
.funnel-step { display: block; font-family: var(--font-text); font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.funnel-num { display: block; font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 3.2rem; line-height: 1; color: rgba(251,250,247,.10); margin-bottom: 14px; }
.funnel-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.funnel-card p { color: var(--ink-2); font-size: 1rem; line-height: 1.6; }
@media (max-width: 900px) { .funnel-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.faq-intro .section-title { margin-bottom: 18px; }
.faq-intro .section-title .muted { color: var(--ink-3); }
.faq-intro .section-sub { color: var(--ink-2); font-size: 1.1rem; max-width: 42ch; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--panel); overflow: hidden; transition: border-color .3s var(--ease); }
.faq-item.open { border-color: rgba(255,79,43,.5); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-text); font-weight: 600; font-size: 1.08rem; color: var(--ink); transition: color .3s var(--ease); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-icon { position: relative; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); transition: background .3s var(--ease), border-color .3s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--ink-2); transform: translate(-50%, -50%); transition: transform .3s var(--ease), background .3s var(--ease); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 24px 24px; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 36px; } }
.leistungen .section-sub { font-size: clamp(0.92rem, 1.45vw, 1.15rem); }
@media (min-width: 1001px) { .leistungen .section-sub { white-space: nowrap; } }

/* ---------- Intro ---------- */
.intro { position: relative; overflow: hidden; border-radius: 36px; margin: 64px 16px 0; padding: 110px 0; }
.intro-grid { position: relative; z-index: 1; }
.intro-grid { display: grid; grid-template-columns: 220px 1fr; gap: 48px; }
.big-statement { font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.14; letter-spacing: -0.02em; margin-bottom: 22px; max-width: 24ch; }
.big-statement-sub { font-size: clamp(1.05rem, 1.7vw, 1.4rem); line-height: 1.5; color: var(--ink-2); max-width: none; margin-bottom: 56px; }
.intro-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; border-top: 1px solid var(--line); padding-top: 44px; }
.intro-point h3 { font-size: 1.2rem; margin-bottom: 12px; }
.intro-point p { color: var(--ink-2); font-size: 1rem; }
.intro-centered { position: relative; z-index: 1; text-align: center; }
.intro-centered .big-statement { max-width: 24ch; margin-left: auto; margin-right: auto; }
.intro-centered .big-statement-sub { max-width: 62ch; margin-left: auto; margin-right: auto; }

/* ---------- Projekte / work grid ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work-card.proj-hidden { display: none; }
.more-projects { text-align: center; margin-top: 44px; }
.proj-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.proj-filter { font-family: var(--font-text); font-weight: 600; font-size: .92rem; padding: .55rem 1.15rem; border-radius: 100px; border: 1px solid var(--line); background: transparent; color: var(--ink-2); cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.proj-filter:hover { border-color: var(--ink-3); color: var(--ink); }
.proj-filter.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.proj-select-wrap { display: none; }
.proj-select { width: 100%; font-family: var(--font-text); font-weight: 600; font-size: 1rem; color: var(--ink); background-color: var(--panel); border: 1px solid var(--line); border-radius: 100px; padding: .9rem 2.8rem .9rem 1.3rem; cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff4f2b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.2rem center; background-size: 16px; }
@media (max-width: 600px) {
  .proj-filters { display: none; }
  .proj-select-wrap { display: block; margin-bottom: 32px; }
}

/* Projects slider */
.work-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; }
.work-head-text { max-width: 640px; }
.projekte .work-head-text { max-width: none; }
.projekte .section-title { font-size: clamp(1.4rem, 2.6vw, 2.1rem); }
@media (min-width: 1001px) { .projekte .section-title { white-space: nowrap; } }
.slider-controls { display: flex; gap: 10px; flex: 0 0 auto; }
.slider-btn { width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--line); background: transparent; color: var(--ink); font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease); }
.slider-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.slider-btn:disabled { opacity: .25; cursor: default; }
.slider-btn:disabled:hover { background: transparent; color: var(--ink); border-color: var(--line); }
.work-slider { position: relative; margin: 0 -4px; }
.work-track { display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 8px 4px 28px; cursor: grab; }
.work-track::-webkit-scrollbar { display: none; }
.work-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.work-track.dragging .work-card { pointer-events: none; }
.work-track img { -webkit-user-drag: none; user-select: none; }
.work-track .work-card { flex: 0 0 auto; width: calc((100% - 56px) / 3); scroll-snap-align: start; }
.work-card { display: block; transition: transform .4s var(--ease); }
.work-thumb {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
}
.work-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 80% 10%, rgba(255,255,255,.28), transparent 55%);
}
.work-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s var(--ease); }
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-initials { font-family: var(--font-text); font-weight: 700; font-size: 3.4rem; color: rgba(255,255,255,.92); letter-spacing: -0.02em; position: relative; z-index: 1; transition: transform .5s var(--ease); }
.work-card:hover .work-initials { transform: scale(1.08); }
.work-card:hover { transform: translateY(-6px); }
.work-meta { padding: 18px 4px 0; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.work-meta h3 { font-size: 1.35rem; }
.work-tags { display: flex; gap: 6px; flex-wrap: nowrap; overflow: hidden; width: 100%; }
.work-tags span { flex: 0 0 auto; font-size: .78rem; font-family: var(--font-text); font-weight: 500; color: var(--ink-2); border: 1px solid var(--line); padding: .25rem .65rem; border-radius: 100px; }
.work-tags .tag-more { cursor: default; color: var(--ink-3); }

/* "Nach oben"-Button */
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--accent); color: #fff; font-size: 1.3rem; line-height: 1; cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .25s var(--ease); box-shadow: 0 10px 26px -10px rgba(255,79,43,.7); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: #e6431f; transform: translateY(-2px); }
@media (max-width: 600px) { .to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; } }
.work-note { margin-top: 36px; font-size: .9rem; color: var(--ink-3); text-align: center; }

/* ---------- Leistungen list ---------- */
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
  padding: 38px 8px; border-top: 1px solid var(--line); transition: all .35s var(--ease);
}
.service-row:hover { background: var(--cream); border-radius: 12px; border-color: transparent; box-shadow: 0 0 46px -12px rgba(255,79,43,.45); }
.service-row:hover + .service-row { border-top-color: transparent; }
.service-row:hover .service-name { color: var(--accent); text-shadow: 0 0 26px rgba(255,79,43,.55); }
.service-no { font-family: var(--font-text); font-weight: 500; color: var(--ink-3); font-size: 1.05rem; }
.service-name { font-size: clamp(1.4rem, 2.4vw, 2.1rem); }
.service-go { display: inline-block; color: var(--accent); opacity: 0; transform: translate(-6px, 6px); transition: all .35s var(--ease); font-size: .8em; }
.service-row:hover .service-go { opacity: 1; transform: none; }
.service-desc { color: var(--ink-2); font-size: 1.02rem; }
.service-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.service-tags span { font-size: .78rem; font-family: var(--font-text); font-weight: 500; color: var(--ink-2); border: 1px solid var(--line); padding: .3rem .7rem; border-radius: 100px; }

/* ---------- Stats ---------- */
.stats { background: var(--panel); color: var(--panel-fg); border-radius: 36px; margin: 0 16px; padding: 90px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stats-grid-3 { grid-template-columns: repeat(3, 1fr); }
.case-banner { aspect-ratio: 21 / 9; border-radius: 28px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--c1), var(--c2)); margin-top: 8px; }
.case-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 80% 10%, rgba(255,255,255,.28), transparent 55%); }
.case-banner .case-initials { font-family: var(--font-text); font-weight: 700; font-size: clamp(4rem, 12vw, 9rem); color: rgba(255,255,255,.92); letter-spacing: -0.03em; position: relative; z-index: 1; }
.case-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
@media (max-width: 600px) { .case-banner { aspect-ratio: 4 / 3; } }
.stat { text-align: center; }
.stat-num { font-family: var(--font-text); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.03em; line-height: 1; }
.stat .hl { color: var(--accent); }
.stat-label { margin-top: 14px; color: rgba(251,250,247,.6); font-size: .98rem; max-width: 22ch; margin-inline: auto; }

/* ---------- Studio ---------- */
.studio-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; }
.studio-left .section-title { margin-top: 8px; }
.studio-lead { font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.4; margin-bottom: 48px; color: var(--ink); }
.studio-values { display: grid; gap: 20px; }
.studio-value { display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: start; padding-top: 20px; border-top: 1px solid var(--line); }
.value-tag { font-family: var(--font-text); font-weight: 600; font-size: 1.05rem; }
.studio-value p { color: var(--ink-2); }

/* ---------- Preise ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column; gap: 22px; padding: 38px 32px;
  border: 1px solid var(--line); border-radius: 24px; background: var(--paper);
  position: relative; transition: all .4s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(14,14,12,.25); }
.plan-featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.plan-featured .plan-head p { color: rgba(251,250,247,.6); }
.plan-featured .plan-features li { color: rgba(251,250,247,.85); border-color: rgba(251,250,247,.14); }
.plan-featured .plan-features li::before { color: var(--accent); }
.plan-badge { position: absolute; top: 24px; right: 24px; background: var(--accent); color: #fff; font-family: var(--font-text); font-weight: 600; font-size: .78rem; padding: .3rem .8rem; border-radius: 100px; }
.plan-head h3 { font-size: 1.6rem; margin-bottom: 8px; }
.plan-head p { color: var(--ink-2); font-size: .98rem; }
.plan-price { display: flex; align-items: baseline; gap: .4em; }
.plan-price .amount { font-family: var(--font-text); font-weight: 700; font-size: 2.6rem; letter-spacing: -0.03em; }
.plan-custom .plan-price .amount, .plan-price .amount.small { font-size: 1.8rem; }
.plan-price .per { color: var(--ink-3); font-size: 1rem; }
.plan-featured .plan-price .per { color: rgba(251,250,247,.6); }
.plan-features { list-style: none; display: grid; gap: 12px; }
.plan-features li { font-size: .98rem; color: var(--ink-2); padding-bottom: 12px; border-bottom: 1px solid var(--line-2); position: relative; padding-left: 26px; }
.plan-features li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 600; }

/* ---------- Testimonial ---------- */
.testimonial { padding: 130px 0; }
.t-slider { margin-top: 44px; }
.work-track .tcard { flex: 0 0 auto; width: calc((100% - 56px) / 3); scroll-snap-align: start; }
.tcard { display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); transition: border-color .35s var(--ease), transform .35s var(--ease); }
.tcard:hover { border-color: rgba(255,79,43,.4); transform: translateY(-4px); }
.tcard blockquote { font-family: var(--font-text); font-size: 1.04rem; line-height: 1.6; color: var(--ink); margin: 0 0 26px; }
.tcard-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard-avatar { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--accent), #FF8A6B); color: #fff; display: grid; place-items: center; font-family: var(--font-text); font-weight: 700; font-size: .92rem; }
.tcard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard-meta { display: flex; flex-direction: column; gap: 2px; }
.tcard-meta strong { font-family: var(--font-text); font-size: .98rem; }
.tcard-meta span { color: var(--ink-3); font-size: .85rem; }
@media (max-width: 900px) { .work-track .tcard { width: calc((100% - 28px) / 2); } }
@media (max-width: 600px) { .work-track .tcard { width: 84%; } }

/* ---------- CTA ---------- */
.cta { background: var(--panel); color: var(--panel-fg); border-radius: 36px; margin: 0 16px 16px; padding: 110px 0; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(75% 110% at 8% 0%, rgba(255, 79, 43, 0.30), transparent 60%); pointer-events: none; }
.cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.cta-title { font-size: clamp(2rem, 4.4vw, 3.5rem); margin: 8px 0 22px; }
.cta-sub { color: rgba(251,250,247,.62); font-size: 1.2rem; max-width: 44ch; margin-bottom: 36px; }
.cta-contacts { display: grid; gap: 2px; margin-bottom: 30px; }
.cta-contact { display: flex; flex-direction: column; gap: 4px; padding: 16px 0; border-top: 1px solid rgba(251,250,247,.14); transition: all .3s var(--ease); }
.cta-contacts .cta-contact:first-child { border-top: none; padding-top: 0; }
.cta-or { font-family: var(--font-text); font-size: .95rem; color: rgba(251,250,247,.55); }
.cta-or a { color: var(--accent); font-weight: 600; }
.cta-or a:hover { text-decoration: underline; }

/* Kontaktformular (Web3Forms) */
.cta-form { display: flex; flex-direction: column; gap: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-family: var(--font-text); font-size: .85rem; font-weight: 600; letter-spacing: .02em; color: rgba(251,250,247,.7); }
.form-label em { font-style: normal; font-weight: 400; color: rgba(251,250,247,.4); }
.cta-form input, .cta-form textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
  padding: 14px 16px; transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(251,250,247,.35); }
.cta-form input:focus, .cta-form textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(255,79,43,.18);
}
.cta-form textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; margin-top: 4px; }
.form-submit[disabled] { opacity: .6; cursor: progress; }
.form-status { font-family: var(--font-text); font-size: .92rem; line-height: 1.45; min-height: 1.2em; margin: 0; }
.form-status.ok { color: #5BD08A; }
.form-status.err { color: #FF6B5A; }
a.cta-contact:hover { padding-left: 12px; }
a.cta-contact:hover .cta-contact-value { color: var(--accent); }
.cta-contact-label { font-size: .85rem; color: rgba(251,250,247,.5); font-family: var(--font-text); letter-spacing: .04em; }
.cta-contact-value { font-family: var(--font-text); font-weight: 600; font-size: 1.4rem; transition: color .3s var(--ease); }

/* ---------- Footer ---------- */
.footer { padding: 80px 0 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.footer-logo img { height: 64px; width: auto; }
.footer-tagline { text-align: right; font-family: var(--font-text); font-weight: 500; font-size: 1.3rem; line-height: 1.2; letter-spacing: -0.01em; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 48px 0; }
.footer-col h4 { font-family: var(--font-text); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--ink-2); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 32px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: .92rem; flex-wrap: wrap; }
@media (max-width: 1000px) { .footer-credit-contact { display: none; } }
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social a { display: inline-flex; line-height: 0; transition: transform .25s var(--ease); }
.footer-social a img { height: 22px; width: 22px; display: block; transition: filter .25s var(--ease); }
.footer-social a:hover { transform: translateY(-2px); }
.footer-social a:hover img { filter: drop-shadow(0 0 9px rgba(255,79,43,.85)); }

/* ---------- Legal pages ---------- */
.legal-page { padding: 180px 0 100px; }
.legal-page .container { max-width: 820px; }
.breadcrumb { font-family: var(--font-text); font-size: .9rem; color: var(--ink-3); margin-bottom: 32px; display: flex; gap: 10px; align-items: center; }
.breadcrumb a { color: var(--accent); }
.breadcrumb .sep { color: var(--line); }
.legal-page h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 12px; }
.legal-page .updated { color: var(--ink-3); margin-bottom: 32px; }
.legal-note { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin-bottom: 48px; font-size: .95rem; color: var(--ink-2); }
.legal-page h2 { font-size: 1.5rem; margin: 48px 0 14px; }
.legal-page h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.legal-page p { color: var(--ink-2); margin-bottom: 14px; }
.legal-page ul { color: var(--ink-2); margin: 0 0 18px 1.2em; display: grid; gap: 8px; }
.legal-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-page address { font-style: normal; color: var(--ink-2); line-height: 1.7; margin-bottom: 18px; }
.legal-page address strong { color: var(--ink); }
.placeholder { background: rgba(255,79,43,.16); color: var(--accent-d); padding: .05em .4em; border-radius: 4px; font-weight: 500; }

/* ---------- Service detail pages ---------- */
.svc-hero { padding: 190px 0 70px; }
.svc-hero .breadcrumb { margin-bottom: 28px; }
.svc-eyebrow { font-family: var(--font-text); font-weight: 500; font-size: .95rem; letter-spacing: .03em; color: var(--accent); display: inline-block; margin-bottom: 22px; }
.svc-hero h1 { font-size: clamp(2.2rem, 6vw, 4.4rem); letter-spacing: -0.04em; margin-bottom: 28px; max-width: 18ch; }
.svc-hero .svc-lead { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.45; color: var(--ink-2); max-width: 70ch; margin-bottom: 32px; }
.svc-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.svc-meta span { font-family: var(--font-text); font-weight: 500; font-size: .85rem; color: var(--ink-2); border: 1px solid var(--line); padding: .4rem .9rem; border-radius: 100px; }
.svc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.svc-block { padding: 90px 0; border-top: 1px solid var(--line); }
.svc-block.alt { background: var(--band); border-radius: 36px; margin: 32px 16px; border-top: none; }
.svc-block.dark { background: var(--panel); color: var(--panel-fg); border-radius: 36px; margin: 32px 16px; border-top: none; }
.svc-block.dark h2 { color: var(--panel-fg); }
.svc-block.dark .svc-check li { color: rgba(251,250,247,.82); }
.svc-block-head { max-width: 640px; margin-bottom: 48px; }
.svc-block-head.svc-wide { max-width: none; }
.svc-intro-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.svc-intro-grid .svc-block-head { margin-bottom: 0; }
.svc-visual { display: flex; justify-content: flex-end; align-items: center; }
.svc-float { width: 100%; max-width: 360px; height: auto; filter: drop-shadow(0 24px 44px rgba(0,0,0,0.35)); }
@media (max-width: 1000px) { .svc-intro-grid { grid-template-columns: 1fr; } .svc-visual { display: none; } }
.svc-block-head .section-index { margin-bottom: 16px; }
.svc-block-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
@media (min-width: 1001px) { .svc-block-head h2 { white-space: nowrap; } }
@media (min-width: 1001px) { .svc-intro-grid .svc-block-head h2 { white-space: normal; } }
.svc-block-head p { color: var(--ink-2); font-size: 1.12rem; }

/* deliverables */
.deliverables { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.deliverables.deliverables-2, .deliverables.deliverables-4 { grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; }
.deliverable { padding: 30px 28px; border: 1px solid var(--line); border-radius: 20px; transition: all .35s var(--ease); background: var(--paper); }
.deliverable:hover { transform: translateY(-5px); animation: funnelGlow 1.6s ease-in-out infinite; }
.deliverable .d-icon { font-family: var(--font-text); font-weight: 700; font-size: 1.2rem; color: var(--accent); margin-bottom: 16px; }
.deliverable h3 { font-size: 1.25rem; margin-bottom: 10px; }
.deliverable p { color: var(--ink-2); font-size: .98rem; }

/* process */
.process-steps { display: grid; gap: 0; }
.process-step { display: grid; grid-template-columns: 90px 1fr; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.process-step:first-child { border-top: 1px solid var(--line); }
.process-step .p-num { font-family: var(--font-text); font-weight: 700; font-size: 2.2rem; color: var(--accent); line-height: 1; }
.process-step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.process-step p { color: var(--ink-2); max-width: 60ch; }

/* checklist (für-wen / inkl.) */
.svc-check { list-style: none; display: grid; gap: 14px; max-width: 640px; }
.svc-check li { position: relative; padding-left: 34px; color: var(--ink-2); font-size: 1.08rem; }
.svc-check li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-family: var(--font-text); }

/* related services */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-grid .related-card:nth-child(n+4) { display: none; }
.related-card { display: flex; flex-direction: column; gap: 10px; padding: 28px 26px; border: 1px solid var(--line); border-radius: 20px; transition: all .35s var(--ease); }
.related-card:hover { background: var(--ink); color: var(--paper); transform: translateY(-5px); }
.related-card .r-no { font-family: var(--font-text); font-weight: 500; color: var(--ink-3); font-size: .9rem; }
.related-card:hover .r-no { color: rgba(251,250,247,.6); }
.related-card h3 { font-size: 1.3rem; }
.related-card .r-go { margin-top: auto; font-family: var(--font-text); font-weight: 600; font-size: .95rem; color: var(--accent); }
.related-card:hover .r-go { color: var(--paper); }

@media (max-width: 1000px) {
  .deliverables { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .deliverables { grid-template-columns: 1fr; }
  .deliverables.deliverables-2, .deliverables.deliverables-4 { grid-template-columns: 1fr; }
  .svc-block.alt { margin: 0 8px; border-radius: 24px; }
  .process-step { grid-template-columns: 60px 1fr; gap: 18px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.hero-title .line .reveal, .hero-title .line > span { }
.hero-title .line.reveal > span { transform: translateY(110%); transition: transform .9s var(--ease); }
.hero-title .line.reveal.in > span { transform: translateY(0); }
.hero-title .line.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-title .line.reveal > span { transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero-visual { display: none; }
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .hero-actions { justify-content: flex-start; }
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .intro-points { grid-template-columns: 1fr; gap: 28px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-track .work-card { width: calc((100% - 28px) / 2); }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .stats-grid { grid-template-columns: 1fr; gap: 44px; }
  .studio-grid { grid-template-columns: 1fr; gap: 36px; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 96px 0; }
  .hero { padding: 150px 0 60px; }
  .hero-scroll { display: none; }
  .intro, .stats, .cta { margin: 0 8px; border-radius: 24px; }
  .cta { margin-bottom: 8px; }
  .work-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 44px; }
  .work-track .work-card { width: 84%; }
  .work-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer-tagline { text-align: left; }
  .footer-top { justify-content: flex-start; }
  .marquee-track span { font-size: 1.2rem; }
  .mobile-link { font-size: 1.9rem; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  padding: 14px 16px; background: var(--panel); color: var(--panel-fg);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 18px;
  box-shadow: 0 22px 60px -24px rgba(0,0,0,0.7);
  transform: translateY(160%); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.cookie-banner.show { transform: none; opacity: 1; }
.cookie-banner-img { width: 54px; height: 54px; flex: 0 0 auto; border-radius: 12px; object-fit: cover; }
.cookie-banner-text { flex: 1 1 auto; min-width: 0; }
.cookie-banner-text strong { font-family: var(--font-text); font-size: .98rem; display: block; }
.cookie-banner-text p { font-size: .85rem; color: rgba(245,245,247,0.7); margin-top: 2px; }
.cookie-banner-links { margin-top: 6px !important; font-size: .8rem; }
.cookie-banner-links a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-links a:hover { color: var(--panel-fg); }
.cookie-banner-links span { color: rgba(245,245,247,0.4); }
.cookie-banner-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.cookie-banner-actions .btn { padding: .6rem 1.05rem; font-size: .9rem; }
@media (max-width: 640px) {
  .cookie-banner { flex-wrap: wrap; gap: 12px; }
  .cookie-banner-text { flex: 1 1 60%; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}

/* Liquid-glass look for all rounded panel sections */
.intro, .stats, .cta, .svc-block.alt, .svc-block.dark {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 30px 70px -42px rgba(0,0,0,0.5);
}

/* ============================================================
   First-Visitor Enhancements — Hero-Spotlight, Micro-Interactions,
   Scroll-Stagger/Parallax, Custom Cursor. Progressive & guarded.
   ============================================================ */

/* Staffel-Verzögerung für Reveals (Default 0, per --d gesetzt) */
.reveal { transition-delay: var(--d, 0s); }
.hero-title .line.reveal > span { transition-delay: var(--d, 0s); }

/* Hero: Akzent-Spotlight, der dem Cursor folgt */
.hero-spotlight {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(580px 580px at var(--mx, 26%) var(--my, 30%), rgba(255,79,43,.11), transparent 72%);
  opacity: 0; transition: opacity .8s var(--ease); mix-blend-mode: screen;
}
.hero.spot-on .hero-spotlight { opacity: 1; }

/* Micro-Interaction: dezenter Glanz-Sweep + weicher Lift auf Work-Cards */
.work-thumb::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.10) 50%, transparent 60%);
  transform: translateX(-130%); transition: transform 1.1s var(--ease);
}
.work-card:hover .work-thumb::before { transform: translateX(130%); }
.work-thumb { transition: box-shadow .45s var(--ease); }
.work-card:hover .work-thumb { box-shadow: 0 0 0 1px rgba(255,79,43,.30), 0 30px 60px -30px rgba(0,0,0,.6); }

/* Micro-Interaction: Akzent-Wipe (links→rechts) auf primären Buttons */
.btn-primary {
  background: linear-gradient(90deg, var(--accent) 0 50%, var(--ink) 50% 100%);
  background-size: 220% 100%; background-position: 100% 0;
  transition: background-position .5s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .25s var(--ease);
}
.btn-primary:hover { background-position: 0 0; color: #fff; }

/* Custom Cursor (nur Desktop, feiner Zeiger) */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; opacity: 0; transition: opacity .3s var(--ease); will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--accent); }
.cursor-ring {
  width: 30px; height: 30px; margin: -15px 0 0 -15px; border: 1px solid rgba(255,79,43,.45);
  transition: opacity .3s var(--ease), width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button, body.has-cursor .work-card,
body.has-cursor .service-row, body.has-cursor .faq-q { cursor: none; }
body.has-cursor input, body.has-cursor textarea, body.has-cursor select { cursor: auto; }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor.cursor-hidden .cursor-dot, body.has-cursor.cursor-hidden .cursor-ring { opacity: 0; }
body.has-cursor.cursor-hover .cursor-ring {
  width: 46px; height: 46px; margin: -23px 0 0 -23px;
  background: rgba(255,79,43,.06); border-color: rgba(255,79,43,.7);
}
@media (hover: none), (pointer: coarse) {
  body.has-cursor { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* Parallax: Case-Bilder leicht zoomen (nur ohne reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .case-banner .parallax-img { transform: scale(1.14); will-change: transform; }
}

/* Reduced-motion: alle neuen Bewegungen aus */
@media (prefers-reduced-motion: reduce) {
  .hero-spotlight, .cursor-dot, .cursor-ring { display: none; }
  .work-thumb::before { display: none; }
  .work-card:hover .work-thumb { transition: none; }
}

/* ---------- Showreel ---------- */
.showreel .section-head { margin: 0 auto 56px; text-align: center; }
.showreel .section-sub { margin: 0 auto; }
.showreel-frame {
  display: block; position: relative; width: 100%; max-width: 1040px; margin: 0 auto;
  aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,79,43,.12), transparent 55%), var(--cream);
  cursor: pointer; transition: transform .5s var(--ease), border-color .4s var(--ease), box-shadow .5s var(--ease);
}
.showreel-frame:hover { transform: translateY(-4px); border-color: rgba(255,79,43,.4); box-shadow: 0 40px 90px -50px rgba(0,0,0,.8); }
.showreel-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.showreel-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: #fff; box-shadow: 0 18px 50px -14px rgba(255,79,43,.7);
  transition: transform .4s var(--ease), background .3s var(--ease);
}
.showreel-frame:hover .showreel-play { transform: translate(-50%, -50%) scale(1.08); }
.showreel-play svg { width: 30px; height: 30px; margin-left: 5px; }
.showreel-note {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2;
  font-family: var(--font-text); font-size: .82rem; letter-spacing: .04em; color: var(--ink-3);
  background: rgba(12,10,9,.6); border: 1px solid var(--line); border-radius: 100px; padding: .35rem .9rem;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
body.anim-on .showreel-play { animation: pulse-ring 2.6s ease-in-out infinite; }
@keyframes pulse-ring { 0%,100% { box-shadow: 0 18px 50px -14px rgba(255,79,43,.55); } 50% { box-shadow: 0 18px 60px -10px rgba(255,79,43,.9); } }
@media (max-width: 600px) { .showreel-play { width: 68px; height: 68px; } .showreel-play svg { width: 24px; height: 24px; } }
@media (prefers-reduced-motion: reduce) { body.anim-on .showreel-play { animation: none; } }

/* ---------- Ergebnis-Kennzahl auf Projektkarten ---------- */
.work-metric { font-family: var(--font-text); font-size: .92rem; color: var(--ink-2); margin: -4px 0 0; }
.work-metric strong { color: var(--accent); font-weight: 700; }

/* ---------- Leistungs-FAQ (zentriert) ---------- */
.svc-faq { max-width: 820px; margin-left: auto; margin-right: auto; }
