/* ============================================================
   Solieber e.U. — v3-Final
   ============================================================ */

:root {
  /* Brand tokens */
  --orange: #DB7122;
  --orange-bright: #F5B432;
  --orange-deep: #A24E15;
  --anthrazit: #15110E;
  --anthrazit-2: #221C17;
  --anthrazit-3: #2E2620;
  --cream: #F7F4EF;
  --cream-soft: #FBF9F4;
  --grey: #7A6F66;
  --white: #FFFFFF;

  /* Defaults — Dark Theme */
  --logo-text: var(--white);
  --logo-stroke: var(--white);
  --logo-sub: #B5AFA8;
  --bg: var(--anthrazit);
  --text: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-soft: rgba(255, 255, 255, 0.5);

  --max-content: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --logo-text: #2A1E15;
  --logo-stroke: #2A1E15;
  --logo-sub: #676563;
  --bg: var(--cream);
  --text: #2A1E15;
  --text-muted: rgba(42, 30, 21, 0.72);
  --text-soft: rgba(42, 30, 21, 0.55);
}

/* ============================================================
   LOGO COMPONENT — Solieber Logo SVG-based
   ============================================================ */
.solieber-logo {
  display: inline-block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 900;
  color: var(--logo-stroke);
}
.solieber-logo__row {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.solieber-logo__wordmark {
  font-size: 108px;
  line-height: 1;
  letter-spacing: -2px;
  white-space: nowrap;
}
.solieber-logo__wordmark .so { color: var(--orange); }
.solieber-logo__wordmark .lieber { color: var(--logo-text); }
.solieber-logo__sun {
  flex: none;
  display: block;
  overflow: visible;
}
.solieber-logo--sm .solieber-logo__sun { width: 30px; height: 30px; }
.solieber-logo--md .solieber-logo__sun { width: 42px; height: 42px; }
.solieber-logo--lg .solieber-logo__sun { width: clamp(58px, 7.6vw, 96px); height: clamp(58px, 7.6vw, 96px); }
@media (max-width: 520px) {
  .solieber-logo--lg .solieber-logo__sun { width: clamp(44px, 11vw, 66px); height: clamp(44px, 11vw, 66px); }
}
.solieber-logo__sub {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.22em;
  letter-spacing: 2px;
  color: var(--logo-sub);
  margin-top: 0.22em;
  text-transform: uppercase;
  line-height: 1.3;
}
.solieber-logo__sub .morgen {
  background: linear-gradient(90deg, var(--logo-sub) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-left: 0.18em;
}

/* Size variants */
.solieber-logo--sm .solieber-logo__wordmark { font-size: 32px; letter-spacing: -0.5px; }
.solieber-logo--md .solieber-logo__wordmark { font-size: 44px; letter-spacing: -1px; }
.solieber-logo--lg .solieber-logo__wordmark { font-size: clamp(60px, 8vw, 108px); }

/* Mobile responsive size for hero logo */
@media (max-width: 520px) {
  .solieber-logo--lg .solieber-logo__wordmark { font-size: clamp(48px, 12vw, 72px); }
}

[data-theme="light"] {
  --logo-text: #2A1E15;
  --bg: var(--cream);
  --text: #2A1E15;
  --text-muted: rgba(42, 30, 21, 0.7);
  --text-soft: rgba(42, 30, 21, 0.5);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 200;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 8px; }

.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 17, 14, 0.7);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}
.nav__brand img,
.nav__brand svg { height: 38px; width: auto; display: block; }
.nav__brand .solieber-logo__wordmark { font-size: 28px; line-height: 1; }
.nav__brand .solieber-logo__sun { width: 28px; height: 28px; }
.nav__right {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.lang-switch a {
  color: #9CA3AF;
  text-decoration: none;
  padding: 7px 11px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}
.lang-switch a:hover {
  color: var(--orange-bright);
  border-color: rgba(219, 113, 34, 0.35);
}
.lang-switch a:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 2px;
}
.lang-switch a.is-active {
  color: #FFFFFF;
  background: var(--orange);
  border-color: var(--orange);
}
.lang-switch a.is-active:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
}
.lang-switch span { color: #5C5853; opacity: 0.5; padding: 0 2px; }
[data-theme="light"] .lang-switch a { color: #6B7280; }
[data-theme="light"] .lang-switch a.is-active { color: #FFFFFF; background: var(--orange); }
.nav__contact {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 500;
  transition: all 200ms var(--easing);
}
.nav__contact:hover,
.nav__contact:focus-visible {
  background: rgba(219, 113, 34, 0.18);
  border-color: rgba(245, 180, 50, 0.5);
  outline: none;
}

@media (max-width: 520px) {
  .nav__brand svg { height: 28px; }
  .nav__contact { font-size: 12.5px; padding: 9px 16px; }
}

/* ============================================================
   HERO — C+D Mix: Aurora Glow + dezente Mesh-Nodes
   ============================================================ */
.hero {
  position: relative;
  min-height: 760px;
  padding: 96px 0 140px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute; inset: 0; z-index: -3;
  background: linear-gradient(180deg, var(--anthrazit) 0%, #100C09 100%);
}

.hero__aurora {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
  filter: blur(80px);
  pointer-events: none;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.aurora-1 {
  top: -25%; right: -10%;
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(245, 180, 50, 0.55), transparent 70%);
  animation: aurora-1 14s ease-in-out infinite;
}
.aurora-2 {
  top: 20%; right: 18%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(219, 113, 34, 0.42), transparent 70%);
  animation: aurora-2 18s ease-in-out infinite;
}
.aurora-3 {
  top: 55%; right: -8%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(245, 180, 50, 0.18), transparent 70%);
  animation: aurora-3 22s ease-in-out infinite;
}
@keyframes aurora-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 40px) scale(1.15); }
}
@keyframes aurora-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -60px) scale(0.9); }
}
@keyframes aurora-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -80px) scale(1.1); }
}

/* Mesh-Nodes from Variant D — subtle */
.hero__nodes { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__node {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 10px var(--orange-bright), 0 0 22px var(--orange);
  opacity: 0.85;
  animation: node-pulse 3s ease-in-out infinite;
}
.hero__node.n1 { top: 16%; right: 26%; }
.hero__node.n2 { top: 28%; right: 8%;  width: 4px; height: 4px; animation-delay: 0.5s; }
.hero__node.n3 { top: 48%; right: 22%; animation-delay: 1.0s; }
.hero__node.n4 { top: 64%; right: 10%; width: 4px; height: 4px; animation-delay: 1.5s; }
.hero__node.n5 { top: 38%; right: 42%; width: 3px; height: 3px; animation-delay: 2.0s; }
.hero__node.n6 { top: 78%; right: 32%; width: 3px; height: 3px; animation-delay: 2.5s; }

@keyframes node-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

.hero__grain {
  position: absolute; inset: 0;
  z-index: -1; opacity: 0.04; pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, white 0, white 1px, transparent 1px, transparent 2px);
}

.hero__inner { position: relative; max-width: 820px; z-index: 2; }

/* Hero Logo-Display — direct SVG, no card, dezenter Glow */
.hero__logo-display {
  display: inline-block;
  margin: 0 0 36px;
  position: relative;
  padding: 12px 20px;
}
.hero__logo-display::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(245, 180, 50, 0.16), transparent 60%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

/* Fade-up stagger */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.fade { opacity: 0; animation: fade-up 900ms var(--easing) forwards; }
.fade-1 { animation-delay: 100ms; }
.fade-2 { animation-delay: 260ms; }
.fade-3 { animation-delay: 420ms; }
.fade-4 { animation-delay: 580ms; }
.fade-5 { animation-delay: 740ms; }
.fade-6 { animation-delay: 900ms; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-bright);
  background: rgba(219, 113, 34, 0.1);
  border: 1px solid rgba(245, 180, 50, 0.35);
  padding: 9px 20px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero__eyebrow-detail { color: rgba(245, 180, 50, 0.7); font-weight: 500; }
@media (max-width: 520px) {
  .hero__eyebrow {
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 0.14em;
    gap: 6px;
  }
  .hero__eyebrow .sep { display: none; }
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 10px var(--orange-bright);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero__title {
  font-size: clamp(44px, 5.5vw + 1rem, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 22px;
  color: var(--white);
}
.hero__title .accent {
  background: linear-gradient(120deg, #FFD478 0%, var(--orange) 50%, var(--orange-bright) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__subline {
  font-size: clamp(18px, 1vw + 0.7rem, 22px);
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px;
  font-weight: 400;
  font-style: italic;
  max-width: 48ch;
}
.hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 36px;
  max-width: 60ch;
}

/* Focus-strip — Schwerpunkte unter Lead, responsive Pill-Gruppe */
.focus-strip {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.focus-strip li {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}
.focus-strip li:first-child {
  color: var(--orange-bright);
  background: rgba(219, 113, 34, 0.12);
  border-color: rgba(245, 180, 50, 0.3);
}
@media (max-width: 520px) {
  .focus-strip {
    gap: 6px 8px;
  }
  .focus-strip li {
    font-size: 11px;
    padding: 6px 11px;
    letter-spacing: 0.06em;
  }
}

.metrics {
  display: flex;
  gap: 32px;
  margin: 0 0 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 560px;
}
.metric { flex: 1; }
.metric__num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--orange-bright), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
}
.metric__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 6px;
}

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange) 0%, #B55A14 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow:
    0 12px 28px -8px rgba(219, 113, 34, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(245, 180, 50, 0.5);
  transition: all 280ms var(--easing);
  position: relative;
}
.cta::after {
  content: '→';
  transition: transform 280ms var(--easing);
}
.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px -10px rgba(219, 113, 34, 0.7);
  outline: none;
}
.cta:hover::after { transform: translateX(6px); }

/* ============================================================
   SECTION GENERAL
   ============================================================ */
.section {
  padding: clamp(80px, 9vw, 130px) 0;
  position: relative;
}
.section--soft {
  background: linear-gradient(180deg, var(--anthrazit) 0%, var(--anthrazit-2) 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-bright);
  background: rgba(219, 113, 34, 0.1);
  border: 1px solid rgba(245, 180, 50, 0.35);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.section-head__eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 10px var(--orange-bright);
}
.section-head__title {
  font-size: clamp(34px, 3.5vw + 1rem, 54px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--white);
}
.section-head__lead {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 60ch;
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms var(--easing), transform 700ms var(--easing);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   PULL-QUOTE
   ============================================================ */
.pull-quote {
  padding: clamp(60px, 7vw, 100px) 0;
  background: var(--anthrazit-2);
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 50% 50%, rgba(219, 113, 34, 0.12), transparent 60%);
  pointer-events: none;
}
.pull-quote__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.pull-quote__mark {
  font-family: 'Inter', serif;
  font-size: clamp(88px, 9vw, 140px);
  font-weight: 900;
  line-height: 0.85;
  color: var(--orange-bright);
  display: block;
  opacity: 0.5;
  margin-bottom: 28px;
  text-align: left;
  padding-left: clamp(0px, 4vw, 56px);
}
@media (max-width: 720px) {
  .pull-quote__mark { text-align: center; padding-left: 0; margin-bottom: 20px; }
}
.pull-quote__inner p {
  font-size: clamp(24px, 2.5vw + 0.6rem, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-style: italic;
  line-height: 1.3;
  margin: 0;
  color: var(--white);
}
.pull-quote__inner p .accent {
  background: linear-gradient(120deg, var(--orange-bright), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: 800;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about__portrait {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 60px -16px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06);
  background: var(--anthrazit-2);
  position: relative;
}
.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__signature {
  display: block;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--orange-bright);
}
@media (max-width: 820px) {
  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .about__portrait {
    max-width: 220px;
    margin: 0 auto;
  }
}
.about__claim {
  font-size: clamp(24px, 2.2vw + 1rem, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 22px;
}
.about__claim .accent {
  background: linear-gradient(120deg, var(--orange-bright), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   SERVICES — 2x2 grid
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .services__grid { grid-template-columns: 1fr; }
}

.service {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 44px 38px;
  transition: all 400ms var(--easing);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 180, 50, 0.6), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.service::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(219, 113, 34, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}
.service:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-color: rgba(245, 180, 50, 0.5);
  box-shadow:
    0 30px 60px -20px rgba(219, 113, 34, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.service:hover::before { opacity: 1; }
.service:hover::after { opacity: 1; }

.service__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.service__icon {
  width: 72px;
  height: 72px;
  flex: none;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(245, 180, 50, 0.25), rgba(219, 113, 34, 0.1));
  border: 1px solid rgba(245, 180, 50, 0.4);
  display: grid;
  place-items: center;
  font-size: 32px;
  color: var(--orange-bright);
  box-shadow:
    0 8px 24px -6px rgba(219, 113, 34, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 400ms var(--easing);
}
.service:hover .service__icon {
  transform: scale(1.08) rotate(-5deg);
  background: linear-gradient(135deg, rgba(245, 180, 50, 0.35), rgba(219, 113, 34, 0.2));
}
.service__num-prefix {
  color: var(--orange-bright);
  margin-right: 0.25em;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.service__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--white);
}
.service__text {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { text-align: center; }
.contact__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 30px;
  font-size: 19px;
}
.contact__row a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
  transition: color 200ms ease;
}
.contact__row a:hover { color: var(--orange-bright); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  /* Footer is always dark-context — override page-theme CSS vars */
  --logo-text: #FFFFFF;
  --logo-stroke: #FFFFFF;
  --logo-sub: #B5AFA8;
  background: var(--anthrazit);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.78);
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: clamp(36px, 4vw, 64px);
  padding-bottom: 48px;
}
.footer__brand-block { display: flex; flex-direction: column; gap: 16px; }
.footer__logo,
.footer__logo svg { height: 44px; width: auto; display: block; }
.footer__strapline {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-bright);
  font-weight: 700;
}
.footer__claim {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 36ch;
  line-height: 1.55;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.footer h3 {
  color: var(--white);
  font-size: 14px;
  margin: 0 0 14px;
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms ease, text-decoration-color 200ms ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}
.footer a:hover {
  color: var(--orange-bright);
  text-decoration-color: var(--orange-bright);
}
.footer address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}
.footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
}
.footer__copy-inner {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 820px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(34, 28, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 180, 50, 0.25);
  border-radius: 16px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  padding: 16px 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 350ms var(--easing), opacity 350ms ease;
}
.cookie-banner.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.cookie-banner__text {
  flex: 1 1 280px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}
.cookie-banner__text a { color: var(--orange-bright); text-decoration: underline; }
.cookie-banner button {
  background: #1A1410;
  color: #FFFFFF;
  border: 1.5px solid var(--orange);
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}
.cookie-banner button:hover { background: var(--orange); border-color: var(--orange); }
.cookie-banner button:focus-visible { outline: 3px solid var(--orange-bright); outline-offset: 2px; }

/* ============================================================
   LEGAL (Sub-Pages)
   ============================================================ */
.legal {
  padding: clamp(48px, 6vw, 88px) 0;
  background: var(--cream);
  color: #2A1E15;
  min-height: 60vh;
}
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 10px 40px -10px rgba(73, 54, 42, 0.08);
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--orange-deep);
  text-decoration: none;
  margin-bottom: 24px;
  border-bottom: 1px dashed var(--orange);
  padding-bottom: 2px;
}
.legal__back:hover { color: var(--orange); }
.legal__inner h1 {
  font-size: clamp(28px, 2vw + 1rem, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: #2A1E15;
}
.legal__inner h2 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
  color: #2A1E15;
  font-weight: 700;
}
.legal__inner p { margin: 0 0 14px; line-height: 1.7; font-size: 0.95rem; color: rgba(42,30,21,0.85); }
.legal__inner ul, .legal__inner ol { padding-left: 1.2em; margin: 0 0 14px; }
.legal__inner li { margin: 4px 0; font-size: 0.95rem; }
.legal__inner address {
  font-style: normal;
  background: var(--cream-soft);
  padding: 14px 18px;
  border-radius: 10px;
  margin: 12px 0 18px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.legal__inner a { color: var(--orange-deep); }
.legal__placeholder {
  background: rgba(219, 113, 34, 0.08);
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 16px 0;
  color: #2A1E15;
  font-size: 0.95rem;
}

[data-theme="light"] .nav {
  background: rgba(247, 244, 239, 0.85);
  border-bottom-color: rgba(73, 54, 42, 0.08);
}
[data-theme="light"] .nav__contact {
  background: var(--white);
  border-color: rgba(73, 54, 42, 0.1);
  color: #2A1E15;
}
[data-theme="light"] .nav__contact:hover {
  background: rgba(219, 113, 34, 0.1);
  border-color: var(--orange);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .aurora-blob { animation: none !important; }
  .hero__node { animation: none !important; opacity: 0.6; }
  .hero__title .accent { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   POLISH-PASS v1.0 (iter3-rev3) — Martin-Feedback batch
   ============================================================ */

/* 9) Hero-CTA glow-boost (stronger pulse + arrow-slide already in base) */
.cta {
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.18), transparent 65%);
  opacity: 0;
  transition: opacity 350ms var(--easing);
  pointer-events: none;
}
.cta:hover::before,
.cta:focus-visible::before { opacity: 1; }
.cta:hover::after,
.cta:focus-visible::after { transform: translateX(9px); }
.cta:hover,
.cta:focus-visible {
  box-shadow:
    0 28px 56px -12px rgba(219, 113, 34, 0.78),
    0 0 32px -4px rgba(245, 180, 50, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* 12) Pull-Quote attribution */
.pull-quote__attribution {
  display: block;
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
.pull-quote__attribution::before {
  content: '— ';
  margin-right: 2px;
}

/* 13) Mobile-Pacing — extra breathing room */
@media (max-width: 820px) {
  .section { padding: clamp(72px, 14vw, 100px) 0; }
  .hero + .section { padding-top: clamp(72px, 16vw, 96px); }
  .service { padding: 32px 28px; }
  .pull-quote__inner { padding: 0 16px; }
}

/* 14) Contact Form */
.contact-form-section {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--anthrazit-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.contact-form-head {
  text-align: center;
  margin-bottom: 36px;
}
.contact-form-head__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 14px;
  display: block;
}
.contact-form-head__title {
  font-size: clamp(28px, 3vw + 0.4rem, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.contact-form-head__lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
}
.contact-form {
  display: grid;
  gap: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
}
.contact-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 620px) {
  .contact-form .row-2 { grid-template-columns: 1fr; }
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  min-height: 48px;
  background: rgba(0, 0, 0, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.45;
  transition: border-color 200ms, background 200ms;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23F5B432'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(0, 0, 0, 0.32);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-form .check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.contact-form .check-row input[type="checkbox"] {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}
.contact-form .check-row a {
  color: var(--orange-bright);
  text-decoration: underline;
}
.contact-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form .submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contact-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  min-height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange) 0%, #B55A14 100%);
  color: var(--white);
  border: 1px solid rgba(245, 180, 50, 0.5);
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(219, 113, 34, 0.55);
  transition: all 280ms var(--easing);
}
.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -10px rgba(219, 113, 34, 0.75);
}
.contact-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.contact-form .tel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 4px;
  transition: color 200ms;
}
.contact-form .tel-cta:hover { color: var(--orange-bright); }

/* Metric-strip — text-only variant for "Unabhängig"/"Independent" without dot */
.metric.metric--text-only {
  display: flex;
  align-items: center;
}
.metric.metric--text-only .metric__label {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--orange-bright);
  text-transform: none;
}
