/* ============================================
   FONTS — self-hosted (latin subset, woff2)
   ============================================ */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/manrope-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/manrope-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/manrope-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/manrope-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/manrope-v20-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-500italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-600italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-700italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-800italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-900italic.woff2') format('woff2');
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FFFFFF;
  --bg-alt: #f4f6f9;
  --ink: #253551;
  --ink-soft: #34466b;
  --muted: #495B69;
  --line: #e3e7ed;
  --accent: #27AED7;
  --accent-deep: #1d8aac;
  --accent-soft: #c5e8f4;
  --cream: #FFFFFF;
  --dark: #253551;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  background: none; border: none; cursor: pointer;
  font-family: inherit; color: inherit;
}

::selection { background: var(--accent); color: var(--cream); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  font-weight: 300;
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

/* Auf Subpages (Impressum/Datenschutz) ist die Nav immer "scrolled" */
.nav.is-static {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  z-index: 110;
}

.nav-logo img { height: 38px; width: auto; }

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-text small {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a:not(.nav-cta) {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}

.nav-links a:not(.nav-cta):hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.nav-cta svg { transition: transform 0.3s var(--ease); }
.nav-cta:hover svg { transform: translate(2px, -2px); }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.6s;
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s linear 0s;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.mobile-menu.open .mobile-menu__overlay { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #253551 0%, #000000 100%);
  color: var(--cream);
  transform: translateX(100%);
  transition: transform 0.65s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.4);
}

.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__bg-text {
  position: absolute;
  bottom: 60px;
  right: -30px;
  font-family: var(--font-display);
  font-size: clamp(180px, 60vw, 280px);
  font-weight: 200;
  font-style: italic;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  letter-spacing: -0.06em;
  white-space: nowrap;
  font-variation-settings: "opsz" 144;
  user-select: none;
}

.mobile-menu__line {
  position: absolute;
  left: 28px; top: 0;
  width: 1px; height: 0;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
  transition: height 0.9s var(--ease-out) 0.3s;
  pointer-events: none;
}

.mobile-menu.open .mobile-menu__line { height: 100%; }

.mobile-menu__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.5s var(--ease-out) 0.2s, transform 0.5s var(--ease-out) 0.2s;
}

.mobile-menu.open .mobile-menu__header {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.mobile-menu__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s var(--ease);
}

.mobile-menu__close:hover,
.mobile-menu__close:active {
  border-color: var(--accent);
  background: rgba(39, 174, 215, 0.12);
  transform: rotate(90deg);
}

.mobile-menu__close span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
}

.mobile-menu__close span:first-child { transform: rotate(45deg); }
.mobile-menu__close span:last-child { transform: rotate(-45deg); }

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
  position: relative;
  z-index: 2;
}

.mobile-menu__link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 24px 16px 56px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 44px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 72;
  position: relative;
  transition: padding 0.4s var(--ease), color 0.3s var(--ease);
  opacity: 0;
  transform: translateX(40px);
}

.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    padding 0.4s var(--ease),
    color 0.3s var(--ease);
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.32s, 0.32s, 0s, 0s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.42s, 0.42s, 0s, 0s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.52s, 0.52s, 0s, 0s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.62s, 0.62s, 0s, 0s; }

.mobile-menu__link::before {
  content: '';
  position: absolute;
  left: 26px; top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.4s var(--ease);
}

.mobile-menu__link:hover::before,
.mobile-menu__link:active::before {
  transform: translate(-50%, -50%) scale(1);
}

.mobile-menu__link:hover,
.mobile-menu__link:active {
  color: var(--accent-soft);
  padding-left: 76px;
}

.mobile-menu__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  flex-shrink: 0;
  align-self: center;
  margin-top: -4px;
}

.mobile-menu__label { flex: 1; }

.mobile-menu__arrow {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.3);
  align-self: center;
  margin-top: -2px;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.mobile-menu__link:hover .mobile-menu__arrow,
.mobile-menu__link:active .mobile-menu__arrow {
  color: var(--accent);
  transform: translate(4px, -4px);
}

.mobile-menu__footer {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out) 0.7s, transform 0.6s var(--ease-out) 0.7s;
}

.mobile-menu.open .mobile-menu__footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__footer .eyebrow {
  color: var(--accent-soft);
  margin-bottom: 4px;
}

.mobile-menu__footer .eyebrow::before { background: var(--accent-soft); }

.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu__contact a {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 36;
  transition: color 0.3s var(--ease);
}

.mobile-menu__contact a:hover { color: var(--accent); }

.mobile-menu__address {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

@media (min-width: 881px) {
  .mobile-menu { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__panel,
  .mobile-menu__overlay,
  .mobile-menu__line,
  .mobile-menu__header,
  .mobile-menu__link,
  .mobile-menu__footer {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 53, 81, 0.25) 0%, rgba(37, 53, 81, 0.6) 70%, rgba(0, 0, 0, 0.88) 100%);
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  color: var(--cream);
}

.hero-eyebrow {
  color: var(--accent-soft);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow::before { background: var(--accent-soft); }

.hero-title {
  font-size: clamp(48px, 9vw, 144px);
  font-weight: 300;
  font-style: normal;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
  margin-bottom: 28px;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s var(--ease-out) forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.3s; }
.hero-title span:nth-child(2) { animation-delay: 0.5s; font-style: italic; font-weight: 300; color: var(--accent-soft); }
.hero-title span:nth-child(3) { animation-delay: 0.7s; }

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-top: 60px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}

.hero-sub {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--accent);
  color: var(--cream);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.hero-cta:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-meta {
  position: absolute;
  bottom: 80px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}

.hero-meta strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  left: var(--gutter);
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}

.scroll-indicator .line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  animation: scrollLine 2s var(--ease-out) infinite;
}

@media (max-width: 720px) {
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-meta { display: none; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn { to { opacity: 1; } }

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ============================================
   PILLARS
   ============================================ */
.pillars {
  padding: 140px 0 120px;
  background: var(--bg);
  position: relative;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.section-head-left { max-width: 720px; }

.section-head h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-top: 16px;
  font-variation-settings: "opsz" 72;
}

.section-head h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.section-head-right {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 360px;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar {
  padding: 56px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.5s var(--ease);
}

.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--bg-alt); }

.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  display: block;
}

.pillar h3 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.02em;
}

.pillar p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.pillar p strong { font-weight: 600; color: var(--ink); }

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  transition: gap 0.3s var(--ease);
}

.pillar-link:hover { gap: 16px; }

@media (max-width: 880px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'ZILIC BAU';
  position: absolute;
  top: 60px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 200;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  font-variation-settings: "opsz" 144;
  white-space: nowrap;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  transition: transform 1.2s var(--ease-out);
}

.about-image:hover img { transform: scale(1.05); }

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.about-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 2;
}

.about-image-tag::before { content: '◆ '; color: var(--accent); }

.about-content .eyebrow { color: var(--accent-soft); }
.about-content .eyebrow::before { background: var(--accent-soft); }

.about-content h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  margin: 16px 0 32px;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 72;
}

.about-content h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
  font-weight: 300;
}

.about-quote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 36px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
  font-variation-settings: "opsz" 36;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { aspect-ratio: 4/3; }
}

/* ============================================
   INFO BLOCK
   ============================================ */
.info {
  padding: 120px 0;
  background: var(--bg-alt);
}

.info-head { text-align: center; margin-bottom: 80px; }
.info-head .eyebrow { margin-bottom: 16px; }

.info-head h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}

.info-head h2 em { font-style: italic; color: var(--accent); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--line);
}

.info-card {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.info-card:last-child { border-right: none; }

.info-card h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.info-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
}

.info-card ul { list-style: none; margin-top: 4px; }

.info-card ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.info-card ul li a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.info-card ul li a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.info-card-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.info-card-heading svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-card { border-right: none; border-bottom: 1px solid var(--line); }
  .info-card:last-child { border-bottom: none; }
}

@media (max-width: 720px) {
  .info-card-heading {
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: 0.18em;
    gap: 8px;
  }
  .info-card-heading svg { width: 16px; height: 16px; }
}

/* ============================================
   SERVICES – mit Expand-Funktionalität
   ============================================ */
.services {
  padding: 140px 0;
  background: var(--bg);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: start;
}

.service-card {
  position: relative;
  padding: 48px 36px;
  background: var(--bg-alt);
  border-radius: 2px;
  overflow: hidden;
  transition:
    background 0.5s var(--ease),
    color 0.5s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
  border: none;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
  transition: background 0.4s var(--ease), height 0.4s var(--ease);
}

.service-card:not(.is-open):hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 53, 81, 0.15);
}

.service-card:not(.is-open):hover::before { background: var(--accent); }
.service-card:not(.is-open):hover .service-num { color: var(--accent-soft); }
.service-card:not(.is-open):hover h3,
.service-card:not(.is-open):hover .service-summary { color: var(--cream); }

.service-card:not(.is-open):hover .service-arrow {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--cream);
}

.service-card.large { grid-column: span 6; min-height: 420px; }
.service-card.medium { grid-column: span 6; min-height: 380px; }
.service-card.small { grid-column: span 4; min-height: 320px; }

.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  transition: color 0.4s var(--ease);
}

.service-card h3 {
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 300;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.02em;
  transition: color 0.4s var(--ease);
}

.service-card.large h3 { font-size: clamp(40px, 4.5vw, 56px); }

.service-summary {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: auto;
  transition: color 0.4s var(--ease);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.service-hint {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.service-card:hover .service-hint,
.service-card.is-open .service-hint { opacity: 1; }
.service-card.is-open .service-hint { color: var(--accent-soft); }
.service-card:not(.is-open):hover .service-hint { color: rgba(255, 255, 255, 0.6); }

.service-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: all 0.45s var(--ease);
}

.service-arrow svg { transition: transform 0.45s var(--ease); }

/* OPEN STATE */
.service-card.is-open {
  background: var(--dark);
  color: var(--cream);
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(37, 53, 81, 0.2);
}

.service-card.is-open::before {
  background: var(--accent);
  height: 3px;
}

.service-card.is-open .service-num { color: var(--accent-soft); }
.service-card.is-open h3,
.service-card.is-open .service-summary { color: var(--cream); }

.service-card.is-open .service-arrow {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--cream);
}

.service-card .service-arrow svg {
  transform: rotate(135deg);
}

.service-card.is-open .service-arrow svg {
  transform: rotate(-45deg);
}

/* EXPAND CONTENT */
.service-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease-out), margin-top 0.6s var(--ease-out);
  margin-top: 0;
}

.service-detail-inner {
  overflow: hidden;
  min-height: 0;
}

.service-card.is-open .service-detail {
  grid-template-rows: 1fr;
  margin-top: 32px;
}

.service-detail-content {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out) 0.2s, transform 0.5s var(--ease-out) 0.2s;
}

.service-card.is-open .service-detail-content {
  opacity: 1;
  transform: translateY(0);
}

.service-detail h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 20px;
}

.service-detail ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-bottom: 36px;
}

.service-detail ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.service-detail ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}

.service-detail blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--cream);
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 20px;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 36;
}

.service-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
}

.service-detail-cta:hover {
  background: var(--cream);
  color: var(--dark);
  transform: translateY(-2px);
}

.service-detail-cta svg { transition: transform 0.3s var(--ease); }
.service-detail-cta:hover svg { transform: translate(3px, -3px); }

@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.large,
  .service-card.medium,
  .service-card.small {
    grid-column: span 1;
    min-height: 280px;
  }
  .service-detail ul { grid-template-columns: 1fr; gap: 10px; }
  .service-detail blockquote { font-size: 17px; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 140px 0;
  background: var(--dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: 'KONTAKT';
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-family: var(--font-display);
  font-size: clamp(140px, 26vw, 380px);
  font-weight: 200;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  line-height: 0.8;
  font-variation-settings: "opsz" 144;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact-info .eyebrow { color: var(--accent-soft); margin-bottom: 24px; }
.contact-info .eyebrow::before { background: var(--accent-soft); }

.contact-info h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
  line-height: 0.95;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 460px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.3s var(--ease);
}

.contact-channel:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.contact-channel:hover { border-top-color: var(--accent); }

.contact-channel-label {
  flex-shrink: 0;
  width: 80px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-top: 6px;
}

.contact-channel-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  font-variation-settings: "opsz" 36;
}

.contact-channel-value a { transition: color 0.3s var(--ease); }
.contact-channel-value a:hover { color: var(--accent); }

.contact-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(39, 174, 215, 0.4);
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.contact-maps-link:hover { gap: 14px; border-bottom-color: var(--accent); }
.contact-maps-link svg { flex-shrink: 0; }

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px;
  border-radius: 2px;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.6s var(--ease);
}

.contact-form.is-highlighted {
  box-shadow: 0 0 0 2px var(--accent), 0 20px 60px rgba(39, 174, 215, 0.2);
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact-form > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field { position: relative; margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  transition: border-color 0.3s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c5e8f4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-field select option { background: var(--dark); color: var(--cream); }

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }

.form-field input[type="file"] {
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.form-field input[type="file"]::file-selector-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--accent-soft);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  margin-right: 14px;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-field input[type="file"]::file-selector-button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(39, 174, 215, 0.06);
}

.form-hint {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0 28px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.form-checkbox input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-checkbox a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  padding: 18px 24px;
  background: var(--accent);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.form-submit:hover {
  background: var(--cream);
  color: var(--dark);
  transform: translateY(-2px);
}

.form-status {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
  color: var(--accent-soft);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.form-status.visible { opacity: 1; }
.form-status.success { color: #8fd19e; }
.form-status.error { color: #ff8b7a; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .contact-form { padding: 32px 24px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #000000;
  color: var(--cream);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand img { height: 56px; margin-bottom: 24px; width: auto; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 24px;
  transition: color 0.3s var(--ease);
}

.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom a { margin: 0 12px; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

/* ============================================
   LEGAL PAGES (Impressum / Datenschutz)
   – wird auf den Sub-Seiten verwendet
   ============================================ */
.legal {
  padding: 160px 0 120px;
  background: var(--bg);
  min-height: 80vh;
}

.legal-head {
  margin-bottom: 64px;
  max-width: 800px;
}

.legal-head .eyebrow { margin-bottom: 16px; }

.legal-head h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 20px;
}

.legal-head h1 em { font-style: italic; color: var(--accent); }

.legal-head p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
}

.legal-content {
  max-width: 800px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.legal-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 56px 0 16px;
  color: var(--ink);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 36px 0 12px;
}

.legal-content p { margin-bottom: 16px; }

.legal-content ul {
  margin: 0 0 16px 20px;
  padding-left: 4px;
}

.legal-content ul li { margin-bottom: 8px; }

.legal-content a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  transition: border-color 0.3s var(--ease);
}

.legal-content a:hover { border-bottom-color: var(--accent); }

.legal-content strong { color: var(--ink); font-weight: 600; }

/* ============================================
   MOBILE POLISH
   ============================================ */
@media (max-width: 720px) {
  .pillars, .services { padding: 80px 0 72px; }
  .about, .info, .contact { padding: 80px 0; }
  .legal { padding: 120px 0 80px; }

  .section-head { margin-bottom: 48px; gap: 32px; }
  .section-head-right {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 20px 0 0;
    padding-left: 0;
  }
  .info-head { margin-bottom: 48px; }

  .pillar { padding: 40px 24px; }
  .pillar h3 { font-size: 36px; margin-bottom: 18px; }
  .pillar-num { margin-bottom: 20px; }

  .info-card { padding: 36px 24px; }
  .info-card h4 { font-size: 22px; }

  .service-card { padding: 36px 24px !important; min-height: 240px !important; }
  .service-card h3 { font-size: 32px !important; margin-bottom: 16px; }
  .service-num { margin-bottom: 20px; }
  .service-arrow { width: 38px; height: 38px; }

  .hero { padding: 120px 0 64px; min-height: 92vh; }
  .hero-eyebrow { margin-bottom: 24px; }
  .hero-title { margin-bottom: 20px; font-size: clamp(44px, 14vw, 80px); }
  .hero-bottom { margin-top: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-cta { padding: 14px 24px; font-size: 12px; }

  .scroll-indicator { display: none; }

  .footer { padding: 64px 0 32px; }
  .footer-grid { margin-bottom: 40px; }

  .contact-channel { flex-direction: column; gap: 6px; }
  .contact-channel-label { margin-top: 0; }
  .contact-channel-value { font-size: 19px; }

  .about::before, .contact::before { opacity: 0.6; }
}

@media (max-width: 380px) {
  .nav-logo .logo-text small { display: none; }
  .nav-logo img { height: 32px; }
  .nav-logo { font-size: 18px; }
  .hero-title { font-size: clamp(40px, 13vw, 64px); }
  .pillar h3, .service-card h3 { font-size: 30px !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ============================================
   FORM HONEYPOT (Spam-Schutz)
   – für Menschen unsichtbar, Bots füllen es aus
   ============================================ */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Skip-to-content link — visible only when focused via keyboard */
.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Programmatic focus target after skip-link click — no visible ring */
main:focus { outline: none; }

/* Global keyboard-focus indicator. :focus-visible only fires for keyboard nav,
   so mouse clicks stay clean. */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Form fields override outline:none on :focus — restore it for keyboard nav */
.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Service cards: focus state is a subtle elevation + accent edge */
.service-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* prefers-reduced-motion — strip parallax, smooth scroll, and reveal transitions */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger, .reveal > *, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-bg img { transform: none !important; }
}

/* ============================================
   NOTICE MODAL — Domain-Umzug
   ============================================ */
.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.notice-modal.open {
  display: flex;
  animation: noticeFade 220ms var(--ease-out);
}

.notice-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 53, 81, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.notice-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: 40px clamp(24px, 5vw, 44px) 32px;
  box-shadow: 0 30px 80px -20px rgba(37, 53, 81, 0.35);
  animation: noticeRise 320ms var(--ease-out);
}

.notice-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-modal__close span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: background 0.2s var(--ease);
}
.notice-modal__close span:first-child { transform: rotate(45deg); }
.notice-modal__close span:last-child  { transform: rotate(-45deg); }
.notice-modal__close:hover span { background: var(--accent); }

.notice-modal__eyebrow {
  color: var(--accent);
  margin-bottom: 14px;
}
.notice-modal__eyebrow::before { background: var(--accent); }

.notice-modal__dialog h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}

.notice-modal__dialog p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.notice-modal__dialog p strong {
  color: var(--ink);
  font-weight: 600;
}

.notice-modal__channels {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.notice-modal__channel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--bg);
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.notice-modal__channel:hover {
  background: var(--bg-alt);
}
.notice-modal__channel:hover .notice-modal__channel-value {
  color: var(--accent);
}
.notice-modal__channel-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.notice-modal__channel-value {
  font-weight: 500;
  color: var(--ink);
  font-size: 15px;
  transition: color 0.2s var(--ease);
}

.notice-modal__ok {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.notice-modal__ok:hover { background: var(--accent); }

@keyframes noticeFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes noticeRise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .notice-modal { padding: 16px; }
  .notice-modal__dialog { padding: 36px 22px 26px; }
}