/* =========================================================
   TAF180 – Design Tokens
   ========================================================= */
:root {
  /* Farben */
  --c-bg:        #f7f5f0;   /* warme, helle Grundfläche */
  --c-bg-alt:    #ffffff;
  --c-surface:   #ecebe4;   /* sanfte Akzentfläche */
  --c-ink:       #0f1e33;   /* Tiefes Navy – primär */
  --c-ink-soft:  #2c3e5a;
  --c-muted:     #4d5563;
  --c-line:      #d7dce3;
  --c-accent:    #d8232a;   /* Schweizer Rot – sparsam */
  --c-accent-ink:#b51c24;

  /* Typo */
  --ff-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-display: "Fraunces", "Iowan Old Style", Georgia, serif;

  /* Radius & Shadow */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --sh-sm: 0 1px 2px rgba(15, 30, 51, 0.06), 0 1px 1px rgba(15, 30, 51, 0.04);
  --sh-md: 0 10px 30px rgba(15, 30, 51, 0.08);

  /* Spacing */
  --container: 1180px;
}

/* =========================================================
   Reset / Base
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-accent-ink); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 0.4em;
}

h2 { font-size: clamp(28px, 3.2vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; }

p { margin: 0 0 1em; }

.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent-ink);
  margin: 0 0 14px;
}
.kicker-light { color: rgba(255,255,255,0.75); }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  margin: 0 0 22px;
}

.lead { font-size: 1.125rem; color: var(--c-ink-soft); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(247, 245, 240, 0.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--c-ink);
}
.logo-mark { height: 36px; width: auto; }
.logo-img { height: 32px; width: auto; display: block; }
.logo-img-footer { height: 40px; width: auto; display: block; margin-bottom: 14px; }
.logo-chip {
  background: var(--c-ink);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
}
.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-soft);
  position: relative;
  padding: 6px 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:hover { color: var(--c-ink); }
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav .nav-cta {
  padding: 9px 18px;
  background: var(--c-ink);
  color: #fff;
  border-radius: 999px;
  transition: background .2s;
}
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { background: var(--c-accent-ink); color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/hero-lake.jpg") center 55%/cover no-repeat;
  filter: brightness(0.82) saturate(1.05);
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,16,34,0.92) 0%, rgba(6,16,34,0.78) 28%, rgba(6,16,34,0.35) 60%, rgba(6,16,34,0.05) 92%),
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.35));
}
.hero-inner {
  position: relative;
  padding: 120px clamp(20px, 4vw, 40px) 100px;
  max-width: 820px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* On wider viewports, give the hero extra breathing room from the left */
@media (min-width: 900px) {
  .hero-inner {
    margin-left: max(clamp(20px, 4vw, 40px), calc((100vw - var(--container)) / 2));
    margin-right: 0;
  }
}
.hero-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  color: #fff;
}
.hero-title-accent {
  color: #e9e2cf;
  font-style: italic;
  font-weight: 400;
}
.hero-lede {
  max-width: 640px;
  font-size: clamp(16px, 1.3vw, 18px);
  color: rgba(255,255,255,0.88);
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-pillars {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.pillar-sep {
  width: 6px; height: 6px;
  background: var(--c-accent);
  transform: rotate(45deg);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--c-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--c-accent-ink); color: #fff; }
.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.05); }
.btn-block { width: 100%; margin-top: 8px; }

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding: clamp(72px, 10vw, 130px) 0;
}
.section-surface {
  background: var(--c-surface);
}
.section-head { max-width: 420px; }
.section-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.section-sub {
  color: var(--c-muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
.grid-2.align-center { align-items: center; }

.prose p + p { margin-top: 1em; }
.fact-list {
  list-style: none;
  padding: 0; margin: 28px 0 0;
  border-top: 1px solid var(--c-line);
}
.fact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink-soft);
  font-size: 15px;
}
.fact-list strong { color: var(--c-ink); font-weight: 600; }

/* =========================================================
   Cards (Leistungen)
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 40px 32px 36px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.card-num {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--c-ink-soft); font-size: 15px; }
.card ul {
  list-style: none;
  padding: 0; margin: 20px 0 0;
  border-top: 1px solid var(--c-line);
}
.card ul li {
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  font-size: 14px;
  color: var(--c-ink-soft);
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 8px;
  background: var(--c-accent);
  transform: rotate(45deg);
}
.card-featured {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}
.card-featured h3 { color: #fff; }
.card-featured p { color: rgba(255,255,255,0.82); }
.card-featured .card-num { color: #fff; opacity: .9; }
.card-featured ul { border-color: rgba(255,255,255,0.18); }
.card-featured ul li { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.12); }

/* =========================================================
   Methode
   ========================================================= */
.method-visual {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px;
}
.method-visual-photo {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: 0 14px 40px rgba(15, 30, 51, 0.10);
}
.method-visual-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.method-text-wide {
  max-width: 820px;
  margin: 0 auto;
}
.steps {
  list-style: none;
  padding: 0; margin: 24px 0 0;
  counter-reset: step;
}
.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink-soft);
  font-size: 15px;
}
.steps li:last-child { border-bottom: 0; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--ff-display);
}
.steps strong { color: var(--c-ink); }

/* =========================================================
   Team
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 56px;
  justify-content: center;
}
.member {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  margin: 0;
  text-align: center;
}
.avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f3a5f 0%, #3b5a82 100%);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(31, 58, 95, 0.25);
  overflow: hidden;
}
.avatar-photo {
  width: 120px; height: 120px;
  background: #0f1e33;
  box-shadow: 0 8px 24px rgba(15, 30, 51, 0.25), 0 0 0 4px #fff, 0 0 0 5px var(--c-line);
}
.avatar-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.member-featured { border-color: var(--c-ink); }
.member-featured .role { color: var(--c-accent); }
.member h3 { font-size: 20px; margin-bottom: 4px; }
.role {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.bio { color: var(--c-ink-soft); font-size: 14.5px; margin: 0; }

/* =========================================================
   CTA
   ========================================================= */
.section-cta {
  background:
    radial-gradient(1200px 400px at 10% 0%, rgba(216,35,42,0.12), transparent 70%),
    linear-gradient(180deg, #0f1e33 0%, #0a1527 100%);
  color: #fff;
}
.section-cta h2 { color: #fff; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-lede {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  backdrop-filter: blur(8px);
}
.contact-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
  line-height: 1.55;
}
.contact-row:last-of-type { border-bottom: 0; }
.contact-label {
  flex: 0 0 110px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  padding-top: 3px;
}
.contact-row > span:last-child,
.contact-row > a:last-child {
  flex: 1 1 auto;
}
.contact-row a { color: #fff; font-weight: 500; }
.contact-row a:hover { color: #f8d7d9; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #0a1527;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.site-footer .logo-mark { color: #fff; }
.footer-brand p { margin: 12px 0 0; color: rgba(255,255,255,0.55); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a { color: rgba(255,255,255,0.75); }
.footer-nav a:hover { color: #fff; }
.footer-meta { text-align: right; color: rgba(255,255,255,0.55); }
.footer-meta p { margin: 0 0 8px; }
.footer-meta a { color: rgba(255,255,255,0.75); }
.footer-meta a:hover { color: #fff; }

/* =========================================================
   Cards: 4-column variant + Topic Grid + Partners + Founder + Matrix
   ========================================================= */
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.topic-col {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px 22px;
}
.topic-col h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
}
.topic-col ul { list-style: none; padding: 0; margin: 0; }
.topic-col li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--c-ink-soft);
  border-bottom: 1px solid rgba(215,220,227,0.5);
}
.topic-col li:last-child { border-bottom: none; }

.section-partners { background: var(--c-bg-alt); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px 40px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
  padding: 20px 0;
  width: 100%;
}
.partner-grid img {
  max-height: 58px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.75);
  transition: filter 0.3s ease;
}
.partner-grid img:hover { filter: grayscale(0%) opacity(1); }

.founder-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 960px;
  margin: 40px auto 0;
}
.founder-card .avatar-photo {
  width: 180px; height: 180px;
}
.founder-text p:first-child { margin-top: 0; }
.credentials {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.credentials li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--c-ink-soft);
}
.credentials li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--c-accent);
  border-radius: 1px;
}

.matrix-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.matrix-block h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--c-ink);
}
.matrix-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--c-ink-soft);
  font-style: italic;
  padding: 14px 18px;
  background: rgba(216, 35, 42, 0.05);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.matrix-cta {
  font-style: normal;
  font-size: 15px;
  color: var(--c-ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}
.matrix-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
.matrix-fineprint {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-ink-soft);
  font-style: italic;
  padding: 0 4px;
}
.matrix-fineprint strong {
  font-style: normal;
  color: var(--c-ink);
}
.contact-links {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============== COCKPIT =============== */
.section-cockpit {
  background: var(--c-bg);
}
.cockpit-figure {
  max-width: 820px;
  margin: 48px auto 0;
  text-align: center;
}
.cockpit-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(15, 30, 51, 0.08);
  border: 1px solid rgba(15, 30, 51, 0.06);
}
.cockpit-figure figcaption {
  margin-top: 24px;
  font-family: var(--ff-serif, "Fraunces", serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--c-ink);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cockpit-figure-noimg figcaption {
  font-size: 26px;
  padding: 32px 24px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

/* =============== VIDEOS =============== */
.section-videos {
  background: linear-gradient(180deg, var(--c-bg-alt) 0%, #f3f0eb 100%);
  position: relative;
  overflow: hidden;
}
.section-videos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(216,35,42,0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(15,30,51,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.section-videos > .container { position: relative; z-index: 1; }

/* Elegantes Video-Karussell */
.v-carousel {
  margin-top: 48px;
  position: relative;
}
.v-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 0 68px;
}
.v-track {
  position: relative;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 16 / 9;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.v-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease,
    filter 0.6s ease;
  will-change: transform, opacity;
  pointer-events: none;
  opacity: 0;
}
.v-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 5;
  pointer-events: auto;
}
.v-slide.is-prev {
  opacity: 0.85;
  transform: translateX(-48%) scale(0.78) rotateY(14deg);
  filter: saturate(0.92) brightness(0.94);
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
}
.v-slide.is-next {
  opacity: 0.85;
  transform: translateX(48%) scale(0.78) rotateY(-14deg);
  filter: saturate(0.92) brightness(0.94);
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
}
.v-slide.is-prev:hover,
.v-slide.is-next:hover {
  opacity: 1;
  filter: saturate(1) brightness(1);
}
.v-slide.is-prev:hover { transform: translateX(-46%) scale(0.81) rotateY(12deg); }
.v-slide.is-next:hover { transform: translateX(46%) scale(0.81) rotateY(-12deg); }

/* Edler Farbverlauf an der Außenseite der Seitenslides */
.v-slide.is-prev .v-thumb::after,
.v-slide.is-next .v-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.v-slide.is-prev .v-thumb::after {
  background: linear-gradient(to left, rgba(15, 30, 51, 0) 40%, rgba(15, 30, 51, 0.45) 100%);
}
.v-slide.is-next .v-thumb::after {
  background: linear-gradient(to right, rgba(15, 30, 51, 0) 40%, rgba(15, 30, 51, 0.45) 100%);
}
.v-slide.is-prev:hover .v-thumb::after,
.v-slide.is-next:hover .v-thumb::after {
  opacity: 0.35;
}
/* Play-Icon auf den Seitenslides dezenter */
.v-slide.is-prev .v-play,
.v-slide.is-next .v-play {
  opacity: 0.55;
  transform: scale(0.78);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.v-slide.is-prev:hover .v-play,
.v-slide.is-next:hover .v-play {
  opacity: 0.9;
  transform: scale(0.88);
}
/* Untertitel auf den Seitenslides ausblenden */
.v-slide.is-prev figcaption,
.v-slide.is-next figcaption {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.v-slide.is-far-prev,
.v-slide.is-far-next {
  opacity: 0;
  transform: translateX(0) scale(0.6);
  z-index: 1;
  pointer-events: none;
}
.v-slide.is-far-prev { transform: translateX(-95%) scale(0.68); }
.v-slide.is-far-next { transform: translateX(95%) scale(0.68); }

/* Thumb-Button */
.v-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow:
    0 30px 60px -20px rgba(15, 30, 51, 0.35),
    0 18px 36px -12px rgba(15, 30, 51, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.v-slide.is-active .v-thumb:hover {
  transform: translateY(-2px);
  box-shadow:
    0 40px 80px -20px rgba(15, 30, 51, 0.45),
    0 22px 42px -12px rgba(15, 30, 51, 0.3);
}
.v-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.3s ease;
}
.v-slide.is-active .v-thumb:hover img { transform: scale(1.04); opacity: 0.92; }
.v-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
  pointer-events: none;
  transition: transform 0.25s ease;
}
.v-slide.is-active .v-thumb:hover .v-play { transform: scale(1.1); }

/* Gradient-Overlay für edlen Look */
.v-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.v-slide figcaption {
  text-align: center;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.35;
  letter-spacing: 0.01em;
  max-width: 780px;
  margin: 0 auto;
}

/* Navigations-Pfeile */
.v-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--c-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 10;
  box-shadow: 0 10px 30px -10px rgba(15, 30, 51, 0.2);
}
.v-nav:hover {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
  transform: translateY(-50%) scale(1.05);
}
.v-nav:focus-visible {
  outline: 2px solid var(--c-accent, #d8232a);
  outline-offset: 3px;
}
.v-prev { left: 0; }
.v-next { right: 0; }

/* Punkt-Indikatoren */
.v-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.v-dot {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(15, 30, 51, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}
.v-dot:hover { background: rgba(15, 30, 51, 0.35); }
.v-dot.is-active {
  width: 48px;
  background: var(--c-accent, #d8232a);
}

/* YouTube-Link unter Karussell */
.v-yt-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
}
.v-yt-link {
  color: var(--c-muted, #637089);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s ease;
}
.v-yt-link:hover { color: var(--c-accent, #d8232a); }

/* Wenn iframe geladen ist, braucht es position relative */
.v-thumb.is-playing {
  background: #000;
}
.v-thumb.is-playing img,
.v-thumb.is-playing .v-play,
.v-thumb.is-playing::after {
  display: none;
}
.v-thumb.is-playing iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .v-stage { min-height: 420px; padding: 0 56px; }
  .v-slide.is-prev, .v-slide.is-next { opacity: 0; transform: translateX(0) scale(0.9); }
  .v-nav { width: 44px; height: 44px; }
}
@media (max-width: 640px) {
  .v-stage { min-height: 340px; padding: 0 44px; }
  .v-slide figcaption { font-size: 16px; }
  .v-nav { width: 40px; height: 40px; }
  .v-prev { left: -4px; }
  .v-next { right: -4px; }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.video-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 30, 51, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 30, 51, 0.12);
}
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Click-to-Load Thumbnail-Button */
button.video-thumb {
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  width: 100%;
  text-align: left;
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease, opacity .2s ease;
}
.video-thumb:hover img { transform: scale(1.03); opacity: 0.9; }
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  transition: transform .2s ease;
}
.video-thumb:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-thumb:focus-visible {
  outline: 3px solid var(--c-accent, #d8232a);
  outline-offset: 2px;
}

.video-card figcaption {
  padding: 16px 20px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.video-yt-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted, #637089);
  text-decoration: none;
  align-self: flex-start;
}
.video-yt-link:hover { color: var(--c-accent, #d8232a); text-decoration: underline; }
@media (max-width: 640px) {
  .cockpit-figure img { padding: 12px; }
  .cockpit-figure figcaption { font-size: 17px; }
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 440px;
}

.footer-tag {
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  margin-top: 8px !important;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4) !important;
}
.legal-note {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  max-width: 340px;
  margin-left: auto;
}

/* =========================================================
   Hero: Vertrauens-Kennzahlen + Scroll-Cue
   ========================================================= */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 640px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
}
.trust-item span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.trust-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  z-index: 3;
  opacity: 0.85;
  transition: opacity .2s, transform .2s;
}
.hero-scroll:hover { opacity: 1; transform: translateX(-50%) translateY(2px); }
.hero-scroll span {
  width: 2px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0);    opacity: 1; }
  60%  { transform: translateY(8px);  opacity: 0.2; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* =========================================================
   Über uns: Zahlen-Leiste
   ========================================================= */
.stat-strip {
  margin-top: clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-bg-alt);
  overflow: hidden;
}
.stat {
  padding: 28px 22px;
  text-align: left;
  border-right: 1px solid var(--c-line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.stat-unit {
  font-size: 0.55em;
  color: var(--c-accent);
  margin-left: 2px;
  vertical-align: super;
  font-weight: 600;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* =========================================================
   Karten: Tag-Liste unter Beschreibung
   ========================================================= */
.card-tags {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--c-line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.card-tags li {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  padding: 5px 10px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: transparent;
}
.card-featured .card-tags { border-color: rgba(255,255,255,0.2); }
.card-featured .card-tags li {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.28);
}

/* =========================================================
   Kontakt: Sprechzeiten-DL
   ========================================================= */
.hours {
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 520px;
}
.hours div { margin: 0; }
.hours dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.hours dd {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}

/* =========================================================
   Footer: Erweiterte Version
   ========================================================= */
.site-footer { padding: clamp(56px, 8vw, 88px) 0 24px; }
.site-footer .footer-inner {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h3 {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
}
.site-footer address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.site-footer address a { color: rgba(255,255,255,0.85); }
.site-footer address a:hover { color: #fff; }
.footer-brand p:first-of-type {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.55;
  max-width: 340px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-socials a {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-socials a:hover {
  border-color: var(--c-accent);
  color: #fff;
  background: var(--c-accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: #fff; }
.site-footer .legal-note {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.42);
  margin: 8px 0 0;
  max-width: 720px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(4, 1fr); gap: 36px 28px; }
  .partner-grid img { max-height: 50px; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .stat { border-bottom: 1px solid var(--c-line); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(4), .stat:nth-child(5) { border-bottom: 0; }
  .site-footer .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .site-footer .footer-inner .footer-meta { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .site-footer .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-meta { text-align: left; }
  .method-visual { order: 2; }
  .method-text { order: 1; }
  .founder-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; text-align: left; }
  .founder-card .avatar-photo { margin: 0 auto; }
  .credentials { grid-template-columns: 1fr; }
  .legal-note { margin-left: 0; }
  .hero-trust { gap: 18px; }
  .trust-item strong { font-size: 24px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--c-line); }
  .stat:nth-child(even) { border-right: 0; }
  .stat:nth-last-child(-n+1) { border-bottom: 0; }
  .hours { grid-template-columns: 1fr 1fr; max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
}

@media (max-width: 720px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 18px; }
  .partner-grid img { max-height: 44px; }
  .cards-4 { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr; }
  .primary-nav { display: none; }
  .nav-toggle { display: block; }
  .primary-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
    flex-direction: column;
    align-items: stretch;
    padding: 20px clamp(20px, 4vw, 40px);
    gap: 8px;
  }
  .primary-nav.open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--c-line);
    font-size: 16px;
  }
  .primary-nav.open .nav-cta {
    margin-top: 8px;
    padding: 12px 18px;
    text-align: center;
    border-bottom: 0;
  }

  .hero { min-height: 78vh; }
  .hero-inner { padding: 90px 24px 70px; }
  .hero-pillars {
    flex-wrap: wrap;
    font-size: 12px;
    gap: 14px;
    padding: 12px 18px;
  }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  h2 { font-size: clamp(26px, 6vw, 34px); }
  .contact-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 480px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .partner-grid img { max-height: 42px; }
}

/* Globaler Schutz: kein Bild und kein iframe darf aus seinem Container ragen */
img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}
img { display: block; }

/* Horizontales Overflow auf der ganzen Seite verhindern */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
.hero-bg { left: 0; right: 0; width: 100%; }

/* Sprach-Umschalter im Header */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 6px 0 10px;
  padding: 0 10px;
  border-left: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-muted, #637089);
}
.lang-switch a {
  color: var(--c-muted, #637089);
  text-decoration: none;
  padding: 4px 2px;
  transition: color .2s ease;
}
.lang-switch a:hover { color: var(--c-ink); }
.lang-switch .lang-active { color: var(--c-ink); font-weight: 600; }
.lang-switch .lang-sep { opacity: 0.4; }

@media (max-width: 720px) {
  .primary-nav.open .lang-switch {
    margin: 8px 0 0;
    padding: 12px 0 0;
    border: 0;
    border-top: 1px solid var(--c-line);
    gap: 10px;
    justify-content: flex-start;
    font-size: 15px;
  }
}

/* =========================================================
   Social-Rail – schwebend rechts
   ========================================================= */
.social-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 7px;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  box-shadow: 0 8px 24px -14px rgba(15, 30, 51, 0.18);
}
.social-rail a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-muted);
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.social-rail a:hover,
.social-rail a:focus-visible {
  color: var(--c-accent);
  background: rgba(216, 35, 42, 0.12);
  transform: translateY(-1px);
}
.social-rail svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 720px) {
  .social-rail {
    right: 10px;
    padding: 6px 5px;
    gap: 2px;
  }
  .social-rail a {
    width: 34px;
    height: 34px;
  }
  .social-rail svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 420px) {
  .social-rail { display: none; }
}

/* Social-Rail – Divider + Rezept-Icons mit Flaggen-Badge */
.social-rail .rail-divider {
  display: block;
  height: 1px;
  margin: 4px 6px;
  background: rgba(15, 30, 51, 0.15);
}
.social-rail .rail-rezept {
  position: relative;
}
.social-rail .rail-flag {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 12px;
  height: 10px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background: #fff;
}
.social-rail .rail-rezept:has(.flag-ch) .rail-flag {
  width: 11px;
  height: 11px;
}
.social-rail .rail-flag .flag-de {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #000 0 33.33%,
    #dd0000 33.33% 66.66%,
    #ffce00 66.66% 100%
  );
}
.social-rail .rail-flag .flag-ch {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(#fff, #fff) center/62% 18% no-repeat,
    linear-gradient(#fff, #fff) center/18% 62% no-repeat,
    #dc291e;
}
@media (max-width: 720px) {
  .social-rail .rail-flag {
    width: 10px;
    height: 8px;
  }
  .social-rail .rail-rezept:has(.flag-ch) .rail-flag {
    width: 9px;
    height: 9px;
  }
}

/* Social-Rail – deaktiviertes Rezept-Icon */
.social-rail .rail-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--c-muted);
  opacity: 0.45;
  cursor: not-allowed;
  position: relative;
}
.social-rail .rail-disabled:hover {
  background: transparent;
  color: var(--c-muted);
  transform: none;
}

/* Barrierefreiheit: groessere Touch-Flaeche fuer Video-Punkte */
.v-dot { position: relative; }
.v-dot::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; bottom: -12px; }
