/* ──────────────────────────────────────────
   NOVRA Beverages — Style System
   Demo-Site, gebaut von AETHER Studio
   ────────────────────────────────────────── */

/* Self-hosted Fonts */
@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: normal; font-weight: 400; font-display: swap; src: url('fonts/fraunces-v38-latin-regular.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: normal; font-weight: 600; font-display: swap; src: url('fonts/fraunces-v38-latin-600.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: 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'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300; font-display: swap; src: url('../../fonts/outfit-v15-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 400; font-display: swap; src: url('../../fonts/outfit-v15-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap; src: url('../../fonts/outfit-v15-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap; src: url('../../fonts/outfit-v15-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 700; font-display: swap; src: url('../../fonts/outfit-v15-latin-700.woff2') format('woff2'); }

:root {
  --color-primary:    #a5caee;
  --color-secondary:  #02355a;
  --color-tertiary:   #000000;
  --color-bg:         #ffffff;
  --color-surface:    #ffffff;
  --color-subtle:     #f8fafc;
  --color-border:     #e5e7eb;
  --color-text:       #000000;
  --color-text-mute:  #4b5563;
  --color-inverted:   #ffffff;
  --color-error:      #d92d20;

  --r-none: 0px;
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  --s-xs:   8px;
  --s-sm:   20px;
  --s-md:   32px;
  --s-lg:   40px;
  --s-xl:   60px;
  --s-xxl:  120px;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Skip-Link für Keyboard-User */
.skip-link {
  position: absolute; top: -60px; left: 16px;
  background: var(--color-secondary); color: #fff;
  padding: 12px 20px; border-radius: var(--r-md);
  z-index: 99999; font-weight: 600; font-size: 14px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; outline: 2px solid var(--color-primary); outline-offset: 2px; }

/* Layout-Container */
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ──────────────────────────────────────────
   NAV (sticky, rounded pill)
   ────────────────────────────────────────── */
.nav-wrapper {
  position: sticky; top: 20px; z-index: 100;
  padding: 0 32px;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--r-full);
  padding: 16px 24px;
  max-width: 1320px; margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--color-secondary);
}
.nav-logo .dot { color: var(--color-primary); }
.nav-links { display: flex; gap: var(--s-md); align-items: center; }
.nav-links a {
  font-weight: 600; font-size: 14px;
  color: var(--color-tertiary);
  padding: 8px 4px;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-secondary); }
.nav-links a.current::after {
  content: ''; position: absolute; left: 4px; right: 4px; bottom: 2px;
  height: 2px; background: var(--color-primary);
}
.nav-mobile-toggle { display: none; }

@media (max-width: 900px) {
  .nav-wrapper { padding: 0 20px; top: 12px; }
  .nav { padding: 12px 18px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--color-secondary); color: #fff; border-radius: var(--r-full); }
}

/* ──────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 16px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: var(--r-full);
  padding: 18px 32px;
  min-height: 56px;
  font-size: 17px;
  font-weight: 700;
}
.btn-primary:hover { background: var(--color-secondary); color: #fff; transform: translateY(-2px); }
.btn-primary.btn-xl { padding: 22px 40px; min-height: 64px; font-size: 18px; }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 4px solid #fff;
  padding: 18px 32px;
  min-height: 56px;
  font-size: 17px;
  font-weight: 700;
}
.btn-secondary:hover { background: #fff; color: var(--color-secondary); }

.btn-secondary-dark {
  background: transparent;
  color: var(--color-secondary);
  border: 3px solid var(--color-secondary);
  padding: 16px 28px;
  min-height: 52px;
  font-weight: 700;
}
.btn-secondary-dark:hover { background: var(--color-secondary); color: #fff; }

.btn-link {
  font-weight: 600; color: var(--color-tertiary);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
}
.btn-link:hover { color: var(--color-secondary); }

/* ──────────────────────────────────────────
   TYPOGRAPHY UTILITIES
   ────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-secondary);
}
.display-xl {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--color-secondary);
}
.display-lg {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--color-secondary);
}
.display-md {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-secondary);
}
.display-italic { font-style: italic; font-weight: 900; }

.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--color-secondary);
  margin-bottom: var(--s-md);
}
.lead {
  font-family: var(--font-body); font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55; color: var(--color-text-mute);
  max-width: 64ch;
}

/* ──────────────────────────────────────────
   SECTIONS
   ────────────────────────────────────────── */
section { padding: var(--s-xxl) 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ──────────────────────────────────────────
   HERO
   ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding: 0;
  margin-top: -80px;
  background: var(--color-secondary);
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,53,90,0.15) 0%, rgba(2,53,90,0.55) 60%, rgba(2,53,90,0.92) 100%);
  z-index: 2;
}
/* Aurora-Layer (subtile animierte Gradient-Mesh) */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(165,202,238,0.35) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(196,181,253,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(2,53,90,0.4) 0%, transparent 60%);
  animation: aurora-shift 22s ease-in-out infinite;
  pointer-events: none; mix-blend-mode: screen;
}
@keyframes aurora-shift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
  50%      { transform: translate(-2%, 1%) scale(1.05); opacity: 1; }
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 32px 120px;
  width: 100%;
  max-width: 1320px; margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 900;
  font-size: clamp(56px, 10vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero h1 .italic { font-style: italic; font-weight: 900; }
.hero-sub {
  color: rgba(255,255,255,0.86);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  max-width: 56ch;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero-content { padding: 0 20px 80px; }
}

/* ──────────────────────────────────────────
   MARQUEE
   ────────────────────────────────────────── */
.marquee {
  background: var(--color-secondary);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 80px; align-items: center;
  animation: marquee 40s linear infinite;
  width: fit-content;
}
.marquee-item {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: rgba(255,255,255,0.7); letter-spacing: 0.02em;
  white-space: nowrap; display: flex; align-items: center; gap: 16px;
}
.marquee-item::after { content: '•'; color: var(--color-primary); margin-left: 80px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ──────────────────────────────────────────
   PRODUKT-LINIEN GRID
   ────────────────────────────────────────── */
.lines-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .lines-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .lines-grid { grid-template-columns: 1fr; } }

.line-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: 32px 28px 36px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4.2;
}
.line-card:hover { transform: translateY(-6px); border-color: var(--color-secondary); }
.line-card-img {
  flex: 1; margin-bottom: 24px;
  background-size: contain; background-position: center; background-repeat: no-repeat;
}
.line-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--color-secondary);
  margin-bottom: 6px;
}
.line-card-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; line-height: 1; letter-spacing: -0.02em;
  color: var(--color-secondary); margin-bottom: 12px;
}
.line-card-desc {
  font-size: 14px; line-height: 1.5; color: var(--color-text-mute);
}

/* ──────────────────────────────────────────
   EDITORIAL (split content + image)
   ────────────────────────────────────────── */
.editorial {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-xl); align-items: center;
}
@media (max-width: 900px) { .editorial { grid-template-columns: 1fr; gap: 40px; } }

.editorial-image {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: var(--r-md);
}
.editorial-content h2 { margin-bottom: 24px; }
.editorial-content p { margin-bottom: 20px; font-size: 17px; line-height: 1.65; color: var(--color-text-mute); }
.editorial-content p strong { color: var(--color-secondary); font-weight: 600; }

/* ──────────────────────────────────────────
   STATS
   ────────────────────────────────────────── */
.stats {
  background-color: var(--color-primary);
  background-image: radial-gradient(circle, rgba(2,53,90,0.10) 1.2px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0;
  padding: var(--s-xxl) 0;
  position: relative;
}
.stats::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.4) 100%);
  pointer-events: none;
}
.stats > .container { position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: end; }
@media (max-width: 800px) { .stats-grid { grid-template-columns: 1fr; gap: 60px; } }

.stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(64px, 9vw, 128px);
  line-height: 0.9; letter-spacing: -0.04em;
  color: var(--color-secondary);
  margin-bottom: 16px;
}
.stat-label {
  font-size: 16px; font-weight: 500;
  color: var(--color-secondary);
  max-width: 24ch;
  line-height: 1.4;
}

/* ──────────────────────────────────────────
   PRESS-QUOTES
   ────────────────────────────────────────── */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .press-grid { grid-template-columns: 1fr; } }

.press-card {
  background: var(--color-subtle);
  border-radius: var(--r-md);
  padding: 32px;
}
.press-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 20px; line-height: 1.4;
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.press-source { font-weight: 600; font-size: 14px; color: var(--color-text-mute); }

/* ──────────────────────────────────────────
   NEWSLETTER-BANNER
   ────────────────────────────────────────── */
.newsletter {
  background: var(--color-secondary);
  color: #fff;
  padding: var(--s-xxl) 0;
  text-align: center;
}
.newsletter h2 { color: #fff; max-width: 16ch; margin: 0 auto 24px; }
.newsletter p { color: rgba(255,255,255,0.7); max-width: 50ch; margin: 0 auto 40px; font-size: 17px; }
.newsletter-form {
  max-width: 520px; margin: 0 auto;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1; min-width: 240px;
  padding: 18px 24px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: var(--font-body); font-size: 16px;
  border-radius: var(--r-full);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--color-primary); }

/* ──────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────── */
.footer {
  background: #000;
  color: #fff;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 80px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: var(--font-display); font-weight: 900;
  font-size: 36px; letter-spacing: -0.02em;
}
.footer-logo .dot { color: var(--color-primary); }
.footer-tagline {
  color: rgba(255,255,255,0.5); margin-top: 16px;
  font-size: 14px; line-height: 1.5; max-width: 28ch;
}
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; color: var(--color-primary); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-credit { font-size: 12px; }
.footer-credit a {
  color: rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.footer-credit a:hover { color: var(--color-primary); border-color: var(--color-primary); }

/* ──────────────────────────────────────────
   COOKIE-BAR (compact, dark overlay)
   ────────────────────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.92);
  color: #fff;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  z-index: 200;
  font-size: 14px;
}
.cookie-bar a { color: var(--color-primary); border-bottom: 1px solid currentColor; }
.cookie-bar-actions { display: flex; gap: 10px; }
.cookie-bar button {
  padding: 10px 20px; border-radius: var(--r-full);
  font-weight: 600; font-size: 13px;
}
.cookie-bar .cookie-accept { background: var(--color-primary); color: var(--color-secondary); }
.cookie-bar .cookie-decline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* ──────────────────────────────────────────
   PAGE-HEROES (für Sub-Pages)
   ────────────────────────────────────────── */
.page-hero {
  background: var(--color-subtle);
  padding: 160px 0 var(--s-xxl);
  margin-top: -80px;
}
.page-hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(48px, 6vw, 96px); line-height: 1; letter-spacing: -0.04em; color: var(--color-secondary); margin-bottom: 24px; max-width: 14ch; }
.page-hero .lead { color: var(--color-text-mute); }

/* ──────────────────────────────────────────
   PRODUCT-GRID (products.html)
   ────────────────────────────────────────── */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: var(--s-lg);
  padding: 8px;
  background: var(--color-subtle);
  border-radius: var(--r-full);
  width: fit-content;
}
.filter-bar button {
  padding: 12px 22px;
  font-weight: 600; font-size: 14px;
  border-radius: var(--r-full);
  color: var(--color-tertiary);
  transition: background 0.2s, color 0.2s;
}
.filter-bar button.active { background: var(--color-secondary); color: #fff; }
.filter-bar button:not(.active):hover { background: rgba(2,53,90,0.08); }

.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: 24px; text-align: center;
  background: var(--color-surface);
  transition: transform 0.3s, border-color 0.3s;
  text-decoration: none; color: inherit;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--color-secondary); }
.product-card-img {
  aspect-ratio: 1;
  background-size: contain; background-position: center; background-repeat: no-repeat;
  margin-bottom: 20px;
}
.product-card-line { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 8px; }
.product-card-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.1; color: var(--color-secondary); margin-bottom: 6px; }
.product-card-variant { font-size: 13px; color: var(--color-text-mute); margin-bottom: 16px; }
.product-card-link { font-size: 13px; font-weight: 600; color: var(--color-secondary); border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* ──────────────────────────────────────────
   TIMELINE (about.html)
   ────────────────────────────────────────── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 12px; bottom: 12px;
  width: 2px; background: var(--color-primary);
}
.timeline-item { position: relative; padding-bottom: 48px; }
.timeline-item::before {
  content: ''; position: absolute; left: -39px; top: 8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--color-primary); border: 3px solid var(--color-secondary);
}
.timeline-year { font-family: var(--font-display); font-weight: 900; font-size: 28px; color: var(--color-secondary); margin-bottom: 6px; }
.timeline-text { font-size: 16px; color: var(--color-text-mute); line-height: 1.5; max-width: 56ch; }

/* ──────────────────────────────────────────
   TEAM (about.html)
   ────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: left; }
.team-photo {
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
  border-radius: var(--r-md);
  margin-bottom: 20px;
}
.team-name { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--color-secondary); margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--color-text-mute); font-weight: 500; margin-bottom: 12px; }
.team-bio { font-size: 14px; line-height: 1.55; color: var(--color-text-mute); }

/* ──────────────────────────────────────────
   CONTACT (contact.html)
   ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s-xl); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--color-secondary); margin-bottom: 8px; letter-spacing: 0.02em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  background: var(--color-surface);
  font-family: var(--font-body); font-size: 16px;
  color: var(--color-text);
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--color-secondary);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-aside { background: var(--color-subtle); padding: var(--s-md); border-radius: var(--r-md); }
.contact-block { margin-bottom: var(--s-md); }
.contact-block:last-child { margin-bottom: 0; }
.contact-block-label { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 10px; }
.contact-block strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--color-secondary); margin-bottom: 4px; }
.contact-block p, .contact-block a { font-size: 14px; color: var(--color-text-mute); line-height: 1.5; }
.contact-block a:hover { color: var(--color-secondary); }

/* ──────────────────────────────────────────
   MISC
   ────────────────────────────────────────── */
/* Demo-Banner (top, dezent) */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: #000; color: #fff;
  font-size: 12px; letter-spacing: 0.06em;
  padding: 9px 16px; text-align: center;
  font-weight: 500;
}
.demo-banner a {
  color: var(--color-primary);
  border-bottom: 1px solid rgba(165,202,238,0.4);
  margin-left: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.demo-banner a:hover { color: #fff; border-color: #fff; }
body.with-demo-banner { padding-top: 36px; }
body.with-demo-banner .nav-wrapper { top: 56px; }
body.with-demo-banner .hero { margin-top: -36px; }

/* Team Initial-Bubble-Avatars (statt echter Personen-Fotos) */
.team-photo.team-avatar {
  background: linear-gradient(135deg, var(--color-primary) 0%, #c4dcf2 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-photo.team-avatar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 60%);
}
.team-photo.team-avatar .initials {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(80px, 9vw, 140px);
  line-height: 1;
  color: var(--color-secondary);
  letter-spacing: -0.04em;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
