/* ==========================================================================
   LUYA'S CONSULTING · v2.1 Design System
   Cream + Wine + Navy · Inter Display
   ========================================================================== */

:root {
  /* Basis */
  --cream: #F7F4EE;
  --cream-light: #FBF9F3;
  --cream-edge: #EDE6DB;
  /* Dunkel */
  --dark: #0B1F2A;
  --dark-soft: #13313D;
  /* Logo-Teal */
  --teal: #0F6A73;
  --teal-strong: #1B7F88;
  --teal-ink: #06414A;
  /* Primär-Akzent: Rotwein */
  --wine: #6B1F2B;
  --wine-hover: #4E141D;
  --wine-soft: #C9A0A6;
  --wine-tint: #F1E1E3;
  /* Textfarben */
  --ink: #0B1F2A;
  --ink-soft: #3A4F58;
  --ink-mute: #6B7E86;
  --line: #D9CFBF;
  /* Fonts */
  --serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* -------- Mockup-Leiste -------- */
.mockup-bar {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--dark);
  color: #D5E4E6;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 9999;
  border-bottom: 1px solid #1d3844;
  display: flex; justify-content: space-between; align-items: center;
}
.mockup-bar .left { opacity: 0.7; }
.mockup-bar .right { display: flex; gap: 8px; }
.mockup-bar a {
  background: transparent;
  color: #D5E4E6;
  border: 1px solid #1d3844;
  padding: 5px 12px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.mockup-bar a:hover { border-color: var(--wine); color: #fff; }
.mockup-bar a.active {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

/* -------- Sticky Nav -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-edge);
}
/* Mobile-Nav Toggle (pure CSS, kein JS) — sichtbar nur im Mobile-Breakpoint */
.nav-toggle { display: none; }
.nav-hamburger { display: none; }
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logo-placeholder {
  width: 46px; height: 46px;
  border: 1.5px dashed var(--teal);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: var(--dark);
}
.nav-brand-text span { color: var(--teal); }
.nav-brand-slogan {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 5px;
  font-style: italic;
}
.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--wine); }
.nav-menu a.active { color: var(--wine); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--wine);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-lang {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  padding-right: 20px;
  border-right: 1px solid var(--cream-edge);
}
.nav-lang b { color: var(--dark); }
.nav-lang .lang-inactive {
  color: var(--ink-mute);
  opacity: 0.55;
  text-decoration: none;
  cursor: not-allowed;
}
.nav-lang .lang-inactive:hover { color: var(--ink-mute); opacity: 0.7; }
.nav-cta {
  background: var(--wine);
  color: #fff;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--wine-hover); }

/* -------- HERO (dark) -------- */
.hero {
  background: var(--dark);
  color: #EEE8DC;
  padding: 120px 48px 140px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(15, 106, 115, 0.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107, 31, 43, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-inner.single {
  grid-template-columns: 1fr;
  max-width: 900px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--teal);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.hero h1 .wine { color: var(--wine-soft); font-style: italic; }
.hero-sub {
  font-size: 20px;
  line-height: 1.55;
  color: #B9C8CC;
  font-weight: 300;
  margin-top: 28px;
  max-width: 620px;
}
.hero-inner.single .hero-sub { margin-left: auto; margin-right: auto; }
.hero-sub em { color: var(--wine-soft); font-style: normal; font-weight: 500; }
.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-inner.single .hero-cta-row { justify-content: center; }
.hero-cta-primary {
  background: var(--wine);
  color: #fff;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--wine);
  transition: all 0.2s;
}
.hero-cta-primary:hover { background: var(--wine-hover); border-color: var(--wine-hover); }
.hero-cta-secondary {
  color: #EEE8DC;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #2B4550;
  transition: all 0.2s;
}
.hero-cta-secondary:hover { border-color: var(--teal-strong); color: #fff; }

.hero-right { position: relative; }
.portrait-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #13313D 0%, #0B1F2A 100%);
  border: 1px solid #1d3844;
  display: flex; align-items: center; justify-content: center;
  color: #4A6570;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}
.portrait-placeholder span {
  border: 1px dashed #4A6570;
  padding: 14px 22px;
  text-align: center;
}
.hero-chips {
  position: absolute;
  right: -20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.hero-chip {
  background: var(--dark-soft);
  border: 1px solid var(--teal);
  color: #EEE8DC;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-chip b { color: var(--teal-strong); }

/* -------- Generic Section -------- */
.section {
  padding: 130px 48px;
}
.section.cream { background: var(--cream); border-bottom: 1px solid var(--cream-edge); }
.section.cream-light { background: var(--cream-light); border-top: 1px solid var(--cream-edge); border-bottom: 1px solid var(--cream-edge); }
.section.white { background: #FFFFFF; border-top: 1px solid var(--cream-edge); border-bottom: 1px solid var(--cream-edge); }
.section.dark { background: var(--dark); color: #EEE8DC; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-inner.narrow { max-width: 1040px; }
.section-head { margin-bottom: 72px; max-width: 780px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-block;
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section.dark .section-eyebrow { color: var(--teal-strong); }
.section h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.section.dark h2 { color: #fff; }
.section-lead {
  font-size: 18px;
  color: var(--ink-mute);
  font-weight: 300;
  line-height: 1.6;
}
.section.dark .section-lead { color: #B9C8CC; }

/* -------- SCHMERZ (home) -------- */
.schmerz {
  background: var(--cream);
  padding: 140px 48px 140px;
  border-bottom: 1px solid var(--cream-edge);
}
.schmerz-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
}
.schmerz-eyebrow {
  display: inline-block;
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.schmerz-headline {
  font-weight: 900;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 60px;
  font-style: italic;
}
.schmerz-list { list-style: none; border-top: 1px solid var(--line); }
.schmerz-item {
  padding: 42px 0 42px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 32px;
  align-items: baseline;
}
.schmerz-num { font-weight: 800; font-size: 22px; color: var(--wine); letter-spacing: 0.05em; }
.schmerz-text {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.35;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.schmerz-under { font-size: 15px; color: var(--ink-mute); font-weight: 400; font-style: italic; }
.schmerz-closer {
  margin-top: 64px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  font-style: italic;
  letter-spacing: -0.01em;
}
.schmerz-closer::before, .schmerz-closer::after {
  content: '—';
  display: inline-block;
  color: var(--wine);
  margin: 0 14px;
  font-style: normal;
}

/* -------- ZAHLEN-BAND -------- */
.zahlen-band {
  background: var(--cream-light);
  padding: 48px 48px;
  border-top: 1px solid var(--cream-edge);
  border-bottom: 1px solid var(--cream-edge);
}
.zahlen-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.zahl-chip b {
  display: block;
  font-weight: 900;
  font-size: 42px;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.zahl-chip span {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* -------- FOUNDER (Home + Team) -------- */
.founder { padding: 140px 48px; position: relative; }
.founder.dark { background: var(--dark); color: #EEE8DC; }
.founder.cream { background: var(--cream); color: var(--ink); }
.founder-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.founder.cream .founder-inner { grid-template-columns: 1.25fr 1fr; }
.founder.cream .founder-media { order: 2; }
.founder-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px; }
.founder.dark .founder-eyebrow { color: var(--teal-strong); }
.founder.cream .founder-eyebrow { color: var(--wine); }
.founder h2 { font-weight: 900; font-size: 56px; line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 18px; }
.founder.dark h2 { color: #fff; }
.founder.cream h2 { color: var(--dark); }
.founder-role { font-size: 17px; font-weight: 500; margin-bottom: 26px; letter-spacing: 0.02em; }
.founder.dark .founder-role { color: var(--teal-strong); }
.founder.cream .founder-role { color: var(--teal); }
.founder-bio { font-size: 17px; line-height: 1.65; font-weight: 300; max-width: 560px; margin-bottom: 34px; }
.founder.dark .founder-bio { color: #B9C8CC; }
.founder.cream .founder-bio { color: var(--ink-soft); }
.founder-cta {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid;
  transition: all 0.2s;
}
.founder.dark .founder-cta { border-color: var(--wine); color: #fff; background: var(--wine); }
.founder.dark .founder-cta:hover { background: var(--wine-hover); border-color: var(--wine-hover); }
.founder.cream .founder-cta { border-color: var(--wine); color: var(--wine); background: transparent; }
.founder.cream .founder-cta:hover { background: var(--wine); color: #fff; }

.founder-portrait {
  aspect-ratio: 4/5;
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.founder.dark .founder-portrait { background: linear-gradient(135deg, #13313D 0%, #0B1F2A 100%); border-color: #1d3844; color: #4A6570; }
.founder.cream .founder-portrait { background: linear-gradient(135deg, #FBF9F3 0%, #EDE6DB 100%); border-color: var(--cream-edge); color: #A59C86; }
.founder-portrait span { border: 1px dashed currentColor; padding: 14px 22px; text-align: center; }

.pillars { margin-top: 42px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.pillar { padding: 26px 24px; border-top: 2px solid; }
.founder.dark .pillar { border-color: var(--teal); background: rgba(255,255,255,0.02); }
.founder.cream .pillar { border-color: var(--teal); background: var(--cream-light); }
.pillar-num { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; color: var(--wine); text-transform: uppercase; margin-bottom: 10px; }
.founder.dark .pillar-num { color: var(--wine-soft); }
.pillar-title { font-size: 18px; font-weight: 800; line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.005em; }
.founder.dark .pillar-title { color: #fff; }
.founder.cream .pillar-title { color: var(--dark); }
.pillar-desc { font-size: 14px; line-height: 1.55; font-weight: 300; margin-bottom: 14px; }
.founder.dark .pillar-desc { color: #9BB0B6; }
.founder.cream .pillar-desc { color: var(--ink-mute); }
.pillar-anchor { font-size: 12px; font-style: italic; padding-top: 12px; border-top: 1px solid; }
.founder.dark .pillar-anchor { color: var(--teal-strong); border-color: #1d3844; }
.founder.cream .pillar-anchor { color: var(--teal); border-color: var(--cream-edge); }

/* -------- Prinzipien / 3-col card grid -------- */
.prinzipien-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.prinzip {
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--cream-edge);
  border-top: 3px solid var(--wine);
  position: relative;
}
.prinzip-num { font-size: 11px; font-weight: 700; color: var(--wine); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; }
.prinzip h3 { font-size: 24px; font-weight: 900; color: var(--dark); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 14px; }
.prinzip p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; font-weight: 300; }
.prinzip small { display: block; margin-top: 16px; font-size: 12px; color: var(--teal); font-style: italic; font-weight: 500; }

/* -------- Leistungen-Bereiche (3 Bucket-Cards) -------- */
.bereiche { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: stretch; }
.bereich {
  background: #fff;
  border: 1px solid var(--cream-edge);
  border-top: 4px solid var(--wine);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
}
.bereich-num { font-size: 11px; font-weight: 700; color: var(--wine); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; }
.bereich h3 { font-size: 26px; font-weight: 900; color: var(--dark); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 16px; min-height: 2.4em; }
.bereich p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; font-weight: 300; margin-bottom: 22px; min-height: 10.4em; }
.bereich ul { list-style: none; border-top: 1px solid var(--cream-edge); padding-top: 18px; margin-top: auto; }
.bereich li { font-size: 14px; color: var(--ink); font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--cream-edge); display: flex; align-items: baseline; gap: 12px; }
.bereich li:last-child { border-bottom: none; }
.bereich li::before { content: '—'; color: var(--teal); font-weight: 700; }

/* -------- Formate (Mandats-Formate) -------- */
.formate { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.format {
  background: var(--cream-light);
  border: 1px solid var(--cream-edge);
  padding: 32px 26px;
  transition: all 0.2s;
}
.format:hover { border-color: var(--wine); }
.format-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
}
.format h4 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 10px; line-height: 1.25; }
.format p { font-size: 13px; color: var(--ink-mute); font-weight: 300; line-height: 1.55; }

/* -------- Cases (Referenzen) -------- */
.cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.case {
  background: #fff;
  border: 1px solid var(--cream-edge);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.case:hover { border-color: var(--wine); transform: translateY(-2px); box-shadow: 0 12px 40px -20px rgba(11, 31, 42, 0.15); }
.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  padding: 5px 10px;
  border: 1px solid var(--wine);
  margin-bottom: 20px;
  align-self: flex-start;
}
.case h3 { font-size: 23px; font-weight: 900; color: var(--dark); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 8px; }
.case-sub { font-size: 13px; color: var(--teal); font-weight: 500; margin-bottom: 22px; letter-spacing: 0.02em; }
.case-row { padding: 14px 0; border-top: 1px solid var(--cream-edge); }
.case-row:first-of-type { border-top: none; padding-top: 0; }
.case-row h4 {
  font-size: 10px;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.case-row p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; font-weight: 400; }
.case-meta { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--cream-edge); display: flex; gap: 8px; flex-wrap: wrap; font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.case-meta span { padding: 3px 8px; background: var(--cream); }

/* -------- ACADEMY / VibesBoard cards -------- */
.nws-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.nws-card {
  padding: 48px 40px;
  position: relative;
  border: 1px solid var(--cream-edge);
  background: var(--cream-light);
  transition: all 0.2s;
}
.nws-card:hover { border-color: var(--wine); }
.nws-card .nws-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--wine); margin-bottom: 18px; }
.nws-card h3 { font-size: 30px; font-weight: 900; color: var(--dark); line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.01em; }
.nws-card .nws-sub { font-size: 15px; color: var(--teal); font-weight: 500; margin-bottom: 18px; }
.nws-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; font-weight: 300; margin-bottom: 24px; }
.nws-link { color: var(--wine); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding-bottom: 3px; border-bottom: 1px solid var(--wine); }

/* -------- TEAM Together block -------- */
.together {
  background: var(--dark);
  color: #EEE8DC;
  padding: 130px 48px;
  position: relative;
  overflow: hidden;
}
.together::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(15, 106, 115, 0.16) 0%, transparent 65%);
  pointer-events: none;
}
.together-inner { max-width: 1040px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.together h2 { font-size: 52px; font-weight: 900; line-height: 1.05; color: #fff; letter-spacing: -0.02em; margin-bottom: 28px; }
.together h2 em { color: var(--wine-soft); font-style: italic; }
.together-lead { font-size: 19px; color: #B9C8CC; font-weight: 300; max-width: 720px; margin: 0 auto 48px; line-height: 1.6; }
.together-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; text-align: left; }
.together-val { background: rgba(255,255,255,0.03); border-top: 2px solid var(--teal); padding: 26px 24px; }
.together-val h4 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.005em; }
.together-val p { font-size: 14px; color: #9BB0B6; line-height: 1.55; font-weight: 300; }

/* -------- KONTAKT / FOOTER -------- */
.kontakt {
  background: var(--dark);
  color: #B9C8CC;
  padding: 130px 48px 56px;
  position: relative;
  overflow: hidden;
}
.kontakt::before {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(107, 31, 43, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.kontakt-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.kontakt-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid #1d3844;
}
.kontakt-claim { font-size: 48px; font-weight: 900; color: #fff; line-height: 1.08; letter-spacing: -0.02em; }
.kontakt-claim b { color: var(--wine-soft); font-style: italic; font-weight: 900; }
.kontakt-cta-box { display: flex; flex-direction: column; gap: 18px; }
.kontakt-cta-btn {
  background: var(--wine);
  color: #fff;
  padding: 22px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--wine);
  transition: all 0.2s;
}
.kontakt-cta-btn:hover { background: var(--wine-hover); }
.kontakt-cta-note { font-size: 13px; color: #7A8C93; text-align: center; font-style: italic; }
.kontakt-bottom {
  padding-top: 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  font-size: 14px;
  line-height: 1.7;
}
.kontakt-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-strong);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.kontakt-col p, .kontakt-col a { color: #8EA2A8; font-weight: 300; }
.kontakt-col a:hover { color: var(--wine-soft); }
.kontakt-brand { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: 0.03em; }
.kontakt-brand span { color: var(--teal-strong); }
.kontakt-claim-small { font-size: 14px; font-style: italic; color: #8EA2A8; margin-top: 14px; max-width: 280px; line-height: 1.55; }
.kontakt-claim-small .de { display: block; color: #6C8187; margin-top: 4px; }
.kontakt-copy {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #1d3844;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: #5A6E75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kontakt-copy a { color: #5A6E75; }

/* -------- Responsive -------- */
@media (max-width: 1100px) {
  .nav-menu { gap: 20px; font-size: 13px; }
  .zahlen-band-inner { grid-template-columns: repeat(2, 1fr); }
  .formate { grid-template-columns: repeat(2, 1fr); }
  .bereiche { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .hero-inner, .founder-inner, .nws-grid, .kontakt-top, .kontakt-bottom, .cases { grid-template-columns: 1fr; gap: 48px; }
  .zahlen-band-inner, .formate, .together-values { grid-template-columns: 1fr; gap: 28px; }
  .prinzipien-grid { grid-template-columns: 1fr; }
  /* Ninas umgedrehter Desktop-Grid (1.25fr 1fr) muss auf Mobile explizit zurückgesetzt werden,
     sonst gewinnt er wegen höherer Spezifität gegen den allgemeinen .founder-inner-Reset oben. */
  .founder.cream .founder-inner { grid-template-columns: 1fr; }
  .founder.cream .founder-media { order: 0; }
  .pillars { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
  .schmerz-headline, .kontakt-claim, .section h2, .together h2 { font-size: 38px; }
  .founder h2 { font-size: 40px; }
  .hero-chips { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 20px; }
  .nav-brand-slogan { display: none; }

  /* --- Hamburger übernimmt die Navigation --- */
  .nav-inner {
    padding: 14px 20px;
    gap: 14px;
    flex-wrap: wrap;
  }
  .nav-brand { gap: 10px; }
  .nav-brand-text { font-size: 15px; }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    order: 3;
    flex-shrink: 0;
    padding: 0;
    background: transparent;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: var(--wine);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
  }
  .nav-menu {
    display: none;
    order: 10;
    flex-direction: column;
    flex: 1 0 100%;
    gap: 0;
    padding: 10px 0 4px;
    border-top: 1px solid var(--cream-edge);
    margin-top: 6px;
  }
  .nav-menu li { border-bottom: 1px solid var(--cream-edge); list-style: none; }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-menu a { display: block; padding: 14px 4px; font-size: 15px; white-space: normal; }
  .nav-menu a.active::after { display: none; }
  #nav-toggle:checked ~ .nav-menu { display: flex; }
  #nav-toggle:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  #nav-toggle:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .nav-right { order: 2; gap: 10px; margin-left: auto; padding-right: 0; }
  .nav-lang { font-size: 11.5px; padding-right: 0; border-right: none; }
  .nav-cta { padding: 9px 16px; font-size: 11.5px; letter-spacing: 0.04em; }
}

/* ==========================================================================
   Phone-Breakpoint · 720px — echte Mobile-Typografie und -Abstände
   ========================================================================== */
@media (max-width: 720px) {
  body { font-size: 16px; }

  /* Brand-Text auf Phone ausblenden — Logo trägt die Marken-Erkennung,
     spart Platz damit Lang-Switcher + CTA + Hamburger auf einer Zeile bleiben */
  .nav-brand-text { display: none; }

  .hero { padding: 64px 22px 80px; }
  .hero h1 { font-size: 38px; line-height: 1.06; letter-spacing: -0.02em; }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px; margin-bottom: 20px; letter-spacing: 0.14em; }
  .hero-sub { font-size: 16.5px; margin-top: 22px; line-height: 1.55; }
  .hero-cta-row { margin-top: 28px; gap: 12px; flex-direction: column; align-items: stretch; }
  .hero-inner.single .hero-cta-row { align-items: stretch; }
  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 14px 22px;
    font-size: 12.5px;
    text-align: center;
    display: block;
    width: 100%;
  }

  .section { padding: 64px 22px; }
  .section-head { margin-bottom: 36px; }
  .section h2,
  .founder h2,
  .schmerz-headline,
  .kontakt-claim,
  .together h2 { font-size: 28px; line-height: 1.15; }
  .section-eyebrow { font-size: 11px; margin-bottom: 14px; }
  .section-lead { font-size: 15.5px; line-height: 1.65; }

  .founder { padding: 64px 22px; }
  .kontakt { padding: 64px 22px 48px; }
  .kontakt-bottom { gap: 32px !important; }
  .kontakt-top { text-align: left; }
  .kontakt-cta-btn { padding: 14px 22px; font-size: 13px; display: block; text-align: center; }
  .kontakt-copy { flex-direction: column; gap: 10px; text-align: left; }

  .founder h2 { font-size: 32px; }
  .pillars { gap: 18px; }

  /* Bereich-Karten auf Leistungen */
  .bereich > p { min-height: 0 !important; }

  /* Kurs-Kacheln Academy: minimal bereits via scoped CSS, hier nur Feinabstimmung */
  .academy-thrivecart { padding: 28px 22px; }

  /* Footer-Recht-Leiste umbricht sauber */
  .kontakt-copy > div { word-break: break-word; }
}

/* ==========================================================================
   Phone-Breakpoint · 540px — schmale Geräte (iPhone SE, kleine Androids)
   ========================================================================== */
@media (max-width: 540px) {
  .nav-inner { padding: 12px 16px; }
  .nav-logo-img { height: 36px; }
  .nav-brand-text { font-size: 14px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; }

  .hero { padding: 56px 16px 68px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15.5px; }

  .section { padding: 56px 16px; }
  .section h2,
  .founder h2,
  .schmerz-headline,
  .kontakt-claim,
  .together h2 { font-size: 25px; }
  .section-lead { font-size: 15px; }

  .founder { padding: 56px 16px; }
  .kontakt { padding: 56px 16px 40px; }
}
