/* dauerschicht.com — One-Page-Site
   Umsetzung des Claude-Design-Handoffs (design_handoff_dauerschicht_onepager).
   Fonts self-hosted (DSGVO). Tokens siehe :root. */

/* Fonts (variable, latin subset) */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('fonts/bricolage-grotesque-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0A0A0B;
  --surface-calm: #131316;
  --well: #121214;
  --hairline: rgba(255,255,255,0.08);
  --hairline-hover: rgba(255,255,255,0.18);
  --headline: #FFFFFF;
  --body: #C9C9D1;
  --muted: #9A9AA6;
  --grad: linear-gradient(90deg, #EC4899 0%, #8B5CF6 100%);
  --card-grad: linear-gradient(180deg, #17171A 0%, #1C1C1F 100%);
  --pastel-text: #1A1420;
  --pastel-muted: #5A4E63;
  --pastel-border: rgba(26,20,32,0.10);
  --pastel-link: #7C3AED;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --gutter: clamp(20px, 5vw, 40px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  font-optical-sizing: auto;
  color: var(--body);
  overflow-x: hidden;
}
::selection { background: rgba(139,92,246,0.4); color: #FFFFFF; }
img { max-width: 100%; }

.wrap { max-width: 1100px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* Nav */
.nav { padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 40px; width: 40px; mix-blend-mode: screen; }
.nav-brand span {
  font-family: var(--display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em; color: var(--headline);
}
.nav-link {
  font-size: 15px; font-weight: 600; color: var(--body); text-decoration: none;
  padding: 10px 20px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px;
  transition: border-color 220ms var(--ease), color 220ms var(--ease);
}
.nav-link:hover { border-color: rgba(255,255,255,0.35); color: #FFFFFF; }

/* Hero */
.hero {
  position: relative; padding-top: 110px; padding-bottom: 130px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-glow {
  position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 1100px; max-width: 100vw; height: 700px; pointer-events: none;
  background:
    radial-gradient(560px 380px at 42% 30%, rgba(236,72,153,0.13), transparent 65%),
    radial-gradient(620px 420px at 60% 38%, rgba(139,92,246,0.15), transparent 65%);
}
.hero > :not(.hero-glow) { position: relative; }
.hero-logo { height: 130px; width: 130px; mix-blend-mode: screen; margin-bottom: 8px; }
.hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(56px, 9vw, 104px); letter-spacing: -0.035em; line-height: 1.02;
  color: var(--headline);
}
.hero .lead {
  margin-top: 26px; font-size: clamp(19px, 2.2vw, 23px); line-height: 1.6;
  color: var(--body); max-width: 42ch;
}
.hero .btn-primary { margin-top: 44px; }

/* Primary CTA */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 19px 40px; border-radius: 999px; background: var(--grad);
  color: #FFFFFF; font-weight: 700; font-size: 19px; line-height: 1; text-decoration: none;
  box-shadow: 0 10px 32px rgba(236,72,153,0.30), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 140ms var(--ease), box-shadow 220ms var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(236,72,153,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Section header */
.section-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 44px; }
.eyebrow {
  font-weight: 800; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  align-self: flex-start;
}
.eyebrow-grad {
  background-image: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 4.4vw, 46px); letter-spacing: -0.025em; line-height: 1.1;
  color: var(--headline);
}

/* Produkt-Kacheln */
.grid-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px) { .grid-products { grid-template-columns: 1fr; } }
.tile {
  container-type: inline-size;
  position: relative; display: flex; flex-direction: column; gap: 14px; padding: 34px;
  background: var(--card-grad); border: 1px solid var(--hairline); border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.28);
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.tile:hover {
  transform: translateY(-4px); border-color: var(--hairline-hover);
  box-shadow: 0 2px 4px rgba(0,0,0,0.45), 0 18px 42px rgba(0,0,0,0.38);
}
.tile-index {
  position: absolute; top: 30px; right: 34px;
  font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--muted);
}
.tile-buzz {
  align-self: flex-start;
  font-family: var(--display); font-weight: 800; font-size: 33px;
  letter-spacing: 0.01em; text-transform: uppercase; line-height: 1.1; color: var(--headline);
  background-image: var(--grad); background-repeat: no-repeat;
  background-size: 100% 4px; background-position: 0 100%; padding-bottom: 9px;
}
.tile-buzz.long { font-size: clamp(17px, 6.2cqw, 30px); max-width: calc(100% - 40px); }
.tile-name { font-weight: 700; font-size: 22px; color: var(--headline); line-height: 1.15; }
.tile-text { font-size: 17px; line-height: 1.6; color: var(--body); }
.tile-price-row { display: flex; margin-top: 2px; gap: 10px; flex-wrap: wrap; }
.badge-grad {
  display: inline-flex; align-items: center; font-weight: 700; font-size: 17px; line-height: 1;
  padding: 11px 18px; border-radius: 999px; background: var(--grad); color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(236,72,153,0.22);
}
.badge-outline {
  display: inline-flex; align-items: center; font-weight: 700; font-size: 17px; line-height: 1;
  padding: 11px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); color: #FFFFFF;
}
.tile-well {
  display: flex; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 16 / 10; border-radius: 14px; margin-top: 8px; overflow: hidden;
  background: radial-gradient(70% 90% at 50% 110%, rgba(139,92,246,0.10), transparent 70%), var(--well);
  border: 1px solid var(--hairline);
}
.tile-well img { height: 72px; width: 72px; mix-blend-mode: screen; opacity: 0.35; }

/* Service-Streifen */
.service {
  margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 28px;
  padding: 38px 34px; background: var(--surface-calm);
  border: 1px solid var(--hairline); border-radius: 20px;
}
.service-info { display: flex; flex-direction: column; gap: 10px; flex: 1 1 340px; }
.service-info .eyebrow { color: var(--muted); }
.service-name { font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--headline); line-height: 1.15; }
.service-text { font-size: 17px; line-height: 1.6; color: var(--body); max-width: 58ch; }
.service-price { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.service-price .note { font-size: 15px; color: var(--muted); }

/* Vertrauen (heller Abschnitt) */
.trust {
  margin-top: 110px; background: linear-gradient(135deg, #F3DCEC 0%, #E9DDF6 100%);
  padding-top: 96px; padding-bottom: 104px;
}
.trust .eyebrow { color: var(--pastel-muted); }
.trust .section-head h2 { color: var(--pastel-text); }
.grid-refs { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.ref-card {
  display: flex; flex-direction: column; gap: 14px; padding: 20px;
  background: #FFFFFF; border: 1px solid var(--pastel-border); border-radius: 20px;
  box-shadow: 0 1px 2px rgba(26,20,32,0.06), 0 12px 30px rgba(26,20,32,0.10);
}
.ref-well {
  display: flex; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 16 / 10; border-radius: 14px;
  background: linear-gradient(180deg, #FAF3F8 0%, #F1EAF8 100%);
  border: 1px solid var(--pastel-border);
  font-size: 15px; color: var(--pastel-muted);
}
.ref-body { display: flex; flex-direction: column; gap: 6px; padding: 0 6px 6px; }
.ref-title { font-weight: 700; font-size: 19px; color: var(--pastel-text); line-height: 1.15; }
.ref-text { font-size: 17px; line-height: 1.6; color: var(--pastel-text); }
.ref-link { font-weight: 600; font-size: 17px; color: var(--pastel-link); text-decoration: none; margin-top: 4px; }
.ref-link:hover { text-decoration: underline; }

/* Kontakt */
.contact { padding-top: 110px; padding-bottom: 90px; }
.contact-card {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 20px; padding: 80px 34px;
  background:
    radial-gradient(640px 320px at 50% 115%, rgba(139,92,246,0.14), transparent 70%),
    var(--card-grad);
  border: 1px solid var(--hairline); border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.28);
  overflow: hidden;
}
.contact-card h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 3.8vw, 40px); letter-spacing: -0.025em; line-height: 1.12;
  color: var(--headline); max-width: 24ch;
}
.contact-card p { font-size: 19px; line-height: 1.6; color: var(--body); max-width: 52ch; }
.contact-card .btn-primary { margin-top: 10px; }

/* Footer */
.footer {
  padding-bottom: 44px; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 26px; width: 26px; mix-blend-mode: screen; }
.footer-brand span, .footer a { font-size: 15px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer a { text-decoration: none; transition: color 220ms var(--ease); }
.footer a:hover { color: #FFFFFF; }
