/* =========================================================
   Executive Edge – Design-Tokens (1:1 aus index.css/Tailwind
   der Replit-App übernommen, HSL-Werte identisch)
   ========================================================= */
:root {
  --background: 40 20% 98%;
  --foreground: 220 40% 10%;
  --card: 40 20% 100%;
  --card-foreground: 220 40% 10%;
  --popover: 40 20% 100%;
  --popover-foreground: 220 40% 10%;
  --primary: 220 60% 20%;
  --primary-foreground: 40 20% 98%;
  --secondary: 40 10% 90%;
  --secondary-foreground: 220 40% 10%;
  --muted: 40 10% 92%;
  --muted-foreground: 220 20% 40%;
  --accent: 30 40% 90%;
  --accent-foreground: 220 40% 10%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 40 20% 98%;
  --border: 40 15% 85%;
  --input: 40 15% 85%;
  --ring: 220 60% 20%;
  --radius: 0.25rem;

  --slate-50: #f8fafc; --slate-100: #f1f5f9; --slate-200: #e2e8f0; --slate-300: #cbd5e1;
  --slate-400: #94a3b8; --slate-600: #475569; --slate-700: #334155; --slate-800: #1e293b;
  --slate-900: #0f172a; --slate-950: #020617;

  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Plus Jakarta Sans', sans-serif;
}

.dark {
  --background: 220 40% 6%;
  --foreground: 40 20% 95%;
  --card: 220 40% 8%;
  --card-foreground: 40 20% 95%;
  --popover: 220 40% 8%;
  --popover-foreground: 40 20% 95%;
  --primary: 40 40% 90%;
  --primary-foreground: 220 40% 10%;
  --secondary: 220 30% 15%;
  --secondary-foreground: 40 20% 95%;
  --muted: 220 30% 12%;
  --muted-foreground: 220 20% 60%;
  --accent: 220 30% 18%;
  --accent-foreground: 40 20% 95%;
  --destructive: 0 62% 30%;
  --destructive-foreground: 40 20% 95%;
  --border: 220 30% 15%;
  --input: 220 30% 15%;
  --ring: 40 40% 90%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  transition: background-color .3s ease, color .3s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
::selection { background: hsla(var(--primary), 0.2); color: hsl(var(--primary)); }

.ee-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.ee-container--narrow { max-width: 768px; }
@media (min-width: 640px)  { .ee-container { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .ee-container { padding: 0 4rem; } }
@media (min-width: 1280px) { .ee-container { padding: 0 5rem; } }
/* Fließtext-Container (Profil-Intro, Artikel, Impressum/Datenschutz) bekommt
   zusätzlich eigenen Innenabstand, damit Absätze nie an den Rand stoßen */
.ee-container--narrow { padding-left: 1.75rem; padding-right: 1.75rem; }
@media (min-width: 640px)  { .ee-container--narrow { padding-left: 3rem;  padding-right: 3rem; } }
@media (min-width: 1024px) { .ee-container--narrow { padding-left: 4.5rem; padding-right: 4.5rem; } }
.ee-center { text-align: center; }
.ee-hide-mobile { display: none; }
.ee-show-mobile { display: flex; justify-content: center; margin-top: 1rem; }
@media (min-width: 768px) {
  .ee-hide-mobile { display: inline-flex; }
  .ee-show-mobile { display: none; }
}
.ee-mb-md { margin-bottom: 1rem; }
.ee-mb-lg { margin-bottom: 2rem; }
.ee-ml-auto { margin-left: auto; }

/* Typography helpers */
.ee-h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.ee-h2 { font-size: 2rem; font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.ee-lead { font-size: 1.125rem; color: hsl(var(--muted-foreground)); line-height: 1.7; margin-bottom: 1.5rem; }
.ee-lead--dark { color: rgba(255,255,255,.7); }
@media (min-width: 768px) {
  .ee-h1 { font-size: 3.5rem; }
  .ee-h2 { font-size: 3rem; }
}

/* Buttons */
.ee-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 500; font-size: .95rem; border-radius: 999px; padding: .65rem 1.5rem; border: 1px solid transparent; cursor: pointer; transition: all .2s ease; white-space: nowrap; }
.ee-btn--lg { height: 3.5rem; padding-left: 2rem; padding-right: 2rem; font-size: 1rem; }
.ee-btn--primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.ee-btn--primary:hover { opacity: .9; }
.ee-btn--outline { background: transparent; border-color: hsl(var(--border)); color: hsl(var(--foreground)); }
.ee-btn--outline:hover { background: hsl(var(--accent)); }
.ee-btn--ghost { background: transparent; color: hsl(var(--foreground)); padding-left: .5rem; padding-right: .5rem; }
.ee-btn--ghost:hover { color: hsl(var(--primary)); }
.ee-btn--white { background: #fff; color: var(--slate-950); }
.ee-btn--white:hover { background: rgba(255,255,255,.9); }
.ee-btn--block { width: 100%; }
.ee-btn .ee-icon { width: 16px; height: 16px; }

/* Badge */
.ee-badge { display: inline-flex; align-items: center; padding: .3rem 1rem; font-size: .8rem; border: 1px solid hsla(var(--primary),0.2); border-radius: 999px; margin-bottom: 1.5rem; backdrop-filter: blur(6px); }
.ee-badge--dark { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.8); }
.ee-badge--sm { font-size: .7rem; padding: .15rem .6rem; margin-bottom: 0; background: hsl(var(--secondary)); border: none; }

/* Grid helpers */
.ee-grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.ee-grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.ee-grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.ee-gap-xl { gap: 4rem; }
.ee-align-center { align-items: center; }
@media (min-width: 768px) { .ee-grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) {
  .ee-grid-2 { grid-template-columns: 1fr 1fr; }
  .ee-grid-3 { grid-template-columns: repeat(3,1fr); }
  .ee-grid-4 { grid-template-columns: repeat(4,1fr); }
}

/* Icons */
.ee-icon { width: 24px; height: 24px; }

/* Reveal-on-scroll (approximates framer-motion whileInView) */
.ee-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.ee-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================
   Navbar
   ========================= */
.ee-navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: hsla(var(--background), 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid hsl(var(--border)); transition: background-color .3s ease; }
.ee-navbar__inner { height: 5rem; display: flex; align-items: center; justify-content: space-between; }
.ee-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; }
.ee-nav-desktop { display: none; align-items: center; gap: 2rem; font-size: .9rem; font-weight: 500; }
.ee-nav-desktop a { color: hsl(var(--muted-foreground)); transition: color .2s ease; }
.ee-nav-desktop a:hover { color: hsl(var(--foreground)); }
@media (min-width: 768px) { .ee-nav-desktop { display: flex; } }

.ee-theme-toggle { position: relative; width: 2.25rem; height: 2.25rem; display: inline-flex; align-items: center; justify-content: center; border: none; background: transparent; cursor: pointer; color: hsl(var(--foreground)); margin-left: 1rem; }
.ee-theme-toggle .ee-icon--sun { position: absolute; transition: all .3s ease; }
.ee-theme-toggle .ee-icon--moon { position: absolute; opacity: 0; transform: rotate(90deg) scale(0); transition: all .3s ease; }
.dark .ee-theme-toggle .ee-icon--sun { opacity: 0; transform: rotate(-90deg) scale(0); }
.dark .ee-theme-toggle .ee-icon--moon { opacity: 1; transform: rotate(0) scale(1); }

.ee-nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 2.25rem; height: 2.25rem; background: none; border: none; cursor: pointer; }
.ee-nav-toggle span { display: block; height: 2px; background: hsl(var(--foreground)); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
@media (min-width: 768px) { .ee-nav-toggle { display: none; } }

.ee-nav-mobile { display: none; flex-direction: column; padding: 1rem 1.5rem 1.5rem; gap: 1rem; border-top: 1px solid hsl(var(--border)); background: hsl(var(--background)); }
.ee-nav-mobile.is-open { display: flex; }
.ee-nav-mobile a { color: hsl(var(--muted-foreground)); font-weight: 500; }
.ee-nav-mobile .ee-theme-toggle { display: inline-flex; align-items: center; gap: .5rem; margin: 0; width: auto; }

/* =========================
   Hero
   ========================= */
.ee-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: hsl(var(--background)); }
.ee-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center 20%; opacity: .2; filter: blur(60px); transform: scale(1.1); }
.dark .ee-hero__bg { opacity: .4; }
.ee-hero__scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, hsla(var(--background),.1), hsla(var(--background),.5) 60%, hsl(var(--background))); }
.ee-hero__content { position: relative; z-index: 2; padding-top: 5rem; max-width: 900px; margin: 0 auto; text-align: center; }
.ee-hero__title { font-size: 2.75rem; font-weight: 700; line-height: 1.05; margin-bottom: 1.5rem; }
.ee-hero__title span { color: hsl(var(--muted-foreground)); }
.ee-hero__lead { font-size: 1.15rem; color: hsl(var(--muted-foreground)); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.65; }
.ee-hero__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .ee-hero__actions { flex-direction: row; } }
@media (min-width: 768px) {
  .ee-hero__title { font-size: 4.5rem; }
  .ee-hero__lead { font-size: 1.5rem; }
}
@media (min-width: 1024px) { .ee-hero__title { font-size: 5.5rem; } }
.ee-hero__scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; color: hsl(var(--muted-foreground)); }
.ee-hero__scroll span { font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .5rem; }
.ee-hero__scroll-line { width: 1px; height: 3rem; background: linear-gradient(to bottom, hsl(var(--muted-foreground)), transparent); }

/* =========================
   Sections generic
   ========================= */
.ee-section { padding: 5rem 0; position: relative; z-index: 1; }
.ee-section--muted { background: var(--slate-50); }
.dark .ee-section--muted { background: var(--slate-950); }
.ee-section--dark { background: var(--slate-950); color: #fff; }
.ee-section-head { max-width: 640px; margin-bottom: 3rem; }
@media (min-width: 768px) { .ee-section { padding: 7rem 0; } }

/* Credibility list (positioning section) */
.ee-credibility-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.ee-credibility-item { display: flex; gap: 1rem; }
.ee-credibility-bar { width: 6px; min-height: 40px; background: hsla(var(--primary), .2); border-radius: 999px; flex-shrink: 0; }
.ee-credibility-item h4 { font-weight: 600; margin-bottom: .25rem; }
.ee-credibility-item p { font-size: .9rem; color: hsl(var(--muted-foreground)); }

.ee-portrait-card { position: relative; aspect-ratio: 4/5; border-radius: 1rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,.35); }
.ee-portrait-card img { width: 100%; height: 100%; object-fit: cover; }
.ee-portrait-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 60%); }
.ee-portrait-card__quote { position: absolute; left: 2rem; right: 2rem; bottom: 2rem; color: #fff; }
.ee-portrait-card__quote span { display: block; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8; margin-bottom: .5rem; }
.ee-portrait-card__quote p { font-family: var(--font-serif); font-size: 1.25rem; }

/* =========================
   Scroll reel
   ========================= */
.ee-reel { position: relative; height: 150vh; background: #000; }
.ee-reel__sticky { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.ee-reel__media { position: absolute; inset: 0; }
.ee-reel__media video { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.ee-reel__fallback { position: absolute; inset: 0; background: linear-gradient(to top right, var(--slate-900), var(--slate-800), var(--slate-900)); z-index: -1; }
.ee-reel__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.ee-reel__text { position: relative; z-index: 1; text-align: center; padding: 0 1.5rem; max-width: 900px; }
.ee-reel__text h2 { font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.ee-reel__text h2 span { color: rgba(255,255,255,.6); }
.ee-reel__text p { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; }
@media (min-width: 768px) { .ee-reel__text h2 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .ee-reel__text h2 { font-size: 4.5rem; } }

/* =========================
   Services / Mandate
   ========================= */
.ee-services { padding: 5rem 0; transition: background-color .5s ease, color .5s ease; }
.ee-services[data-services-theme="dark"] { background: var(--slate-950); color: #fff; }
.ee-services[data-services-theme="light"] { background: var(--slate-50); color: var(--slate-900); }
.ee-services__head { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 1.5rem; margin-bottom: 3rem; }
.ee-services__sub { font-size: 1.1rem; max-width: 560px; opacity: .75; }
@media (min-width: 768px) { .ee-services__head { flex-direction: row; align-items: flex-end; } .ee-services { padding: 7rem 0; } }

.ee-theme-switch { display: inline-flex; align-items: center; gap: .75rem; padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--slate-800); background: var(--slate-900); font-size: .85rem; }
.ee-services[data-services-theme="light"] .ee-theme-switch { border-color: var(--slate-200); background: #fff; }
.ee-theme-switch__dot { width: 1.5rem; height: 1.5rem; border-radius: 999px; border: none; cursor: pointer; background: var(--slate-300); transition: transform .2s ease; }
.ee-theme-switch__dot[data-theme="dark"] { background: var(--slate-700); }
.ee-theme-switch__dot.is-active[data-theme="light"] { background: var(--slate-900); transform: scale(1.1); }
.ee-theme-switch__dot.is-active[data-theme="dark"] { background: #fff; transform: scale(1.1); }

.ee-services__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .ee-services__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .ee-services__grid { grid-template-columns: repeat(3,1fr); } }

.ee-service-card { border-radius: 1rem; padding: 1.75rem; border: 1px solid var(--slate-800); background: var(--slate-900); transition: border-color .3s ease, box-shadow .3s ease; }
.ee-services[data-services-theme="light"] .ee-service-card { border-color: var(--slate-200); background: #fff; }
.ee-service-card:hover { border-color: var(--slate-600); }
.ee-services[data-services-theme="light"] .ee-service-card:hover { border-color: var(--slate-300); box-shadow: 0 10px 25px -10px rgba(0,0,0,.15); }
.ee-service-card.is-highlighted { box-shadow: 0 0 0 1px var(--slate-400); }
.ee-service-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.ee-service-card__icon { display: inline-flex; padding: .75rem; border-radius: .75rem; background: var(--slate-800); }
.ee-services[data-services-theme="light"] .ee-service-card__icon { background: var(--slate-100); }
.ee-service-card h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.ee-service-card p { font-size: 1rem; line-height: 1.6; opacity: .75; }

/* =========================
   Spotlight / Insights cards
   ========================= */
.ee-spotlight { padding: 5rem 0; border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); overflow: hidden; }
.ee-spotlight__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 1.5rem; }
.ee-spotlight__row { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.ee-spotlight__item { flex: 0 0 85vw; scroll-snap-align: center; }
@media (min-width: 768px) { .ee-spotlight__item { flex-basis: 400px; } .ee-spotlight { padding: 7rem 0; } }

.ee-article-card { display: flex; flex-direction: column; border: 1px solid hsl(var(--border)); border-radius: .75rem; background: hsl(var(--card)); overflow: hidden; transition: background-color .3s ease; height: 100%; }
.ee-article-card:hover { background: hsla(var(--accent), .5); }
.ee-article-card__img { aspect-ratio: 3/2; overflow: hidden; }
.ee-article-card__img--wide { aspect-ratio: 16/9; }
.ee-article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.ee-article-card:hover .ee-article-card__img img { transform: scale(1.05); }
.ee-article-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.ee-article-card__meta { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: hsl(var(--muted-foreground)); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.ee-article-card__body h3 { font-size: 1.25rem; margin-bottom: .75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ee-article-card__body p { color: hsl(var(--muted-foreground)); font-size: 1rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1.5rem; }
.ee-article-card__cta { display: flex; align-items: center; font-size: .9rem; font-weight: 500; margin-top: auto; }
.ee-article-card__cta .ee-icon { width: 16px; height: 16px; margin-left: .5rem; transition: transform .2s ease; }
.ee-article-card:hover .ee-article-card__cta .ee-icon { transform: translateX(4px); }

.ee-pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; }
.ee-pagination .page-numbers { padding: .5rem 1rem; border: 1px solid hsl(var(--border)); border-radius: .5rem; }
.ee-pagination .current { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.ee-empty-hint { color: hsl(var(--muted-foreground)); padding: 3rem 0; }

/* =========================
   Contact / Booking form
   ========================= */
.ee-contact { padding: 5rem 0; background: hsla(var(--muted), .3); }
.ee-contact__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.ee-contact__facts { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.ee-contact__facts h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--muted-foreground)); margin-bottom: .25rem; }
.ee-contact__facts p { font-family: var(--font-serif); font-size: 1.15rem; }
@media (min-width: 1024px) { .ee-contact__grid { grid-template-columns: 2fr 3fr; } .ee-contact { padding: 7rem 0; } }

.ee-card { border: 1px solid hsl(var(--border)); border-radius: 1rem; background: hsl(var(--card)); padding: 2rem; }
.ee-card--form { box-shadow: 0 20px 45px -20px rgba(0,0,0,.25); }
.ee-card h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.ee-card__desc { color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }

.ee-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .ee-form__row { grid-template-columns: 1fr 1fr; } }
.ee-field label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; }
.ee-field input, .ee-field textarea { width: 100%; padding: .65rem .85rem; border: 1px solid hsl(var(--input)); border-radius: .5rem; background: hsl(var(--background)); color: hsl(var(--foreground)); font-family: inherit; font-size: .95rem; }
.ee-field input:focus, .ee-field textarea:focus { outline: 2px solid hsl(var(--ring)); outline-offset: 1px; }
.ee-field textarea { resize: vertical; margin-bottom: 1.5rem; }

.ee-alert { padding: .9rem 1.1rem; border-radius: .6rem; margin-bottom: 1.5rem; font-size: .9rem; }
.ee-alert--success { background: hsla(142, 70%, 45%, .12); color: #16803d; border: 1px solid hsla(142,70%,45%,.3); }
.ee-alert--error { background: hsla(var(--destructive), .1); color: hsl(var(--destructive)); border: 1px solid hsla(var(--destructive),.3); }

/* =========================
   Profile page
   ========================= */
.ee-profile-hero { position: relative; padding: 8rem 0 5rem; background: linear-gradient(135deg, var(--slate-950), var(--slate-900), var(--slate-950)); color: #fff; overflow: hidden; }
.ee-profile-hero__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.ee-profile-hero__image { display: flex; justify-content: center; order: -1; }
.ee-profile-hero__image img { width: 16rem; filter: drop-shadow(0 25px 25px rgba(0,0,0,.3)); }
@media (min-width: 768px) {
  .ee-profile-hero { padding: 10rem 0 7rem; }
  .ee-profile-hero__grid { grid-template-columns: 3fr 2fr; }
  .ee-profile-hero__image { order: 0; }
  .ee-profile-hero__image img { width: 100%; max-width: 26rem; }
}

.ee-value-card, .ee-focus-card { height: 100%; padding: 1.75rem; border: 1px solid hsl(var(--border)); border-radius: 1rem; background: hsl(var(--card)); transition: border-color .3s ease, box-shadow .3s ease; }
.ee-focus-card:hover { border-color: hsla(var(--primary), .3); box-shadow: 0 15px 30px -15px rgba(0,0,0,.15); }
.ee-value-card__icon { display: inline-flex; padding: .75rem; border-radius: .75rem; background: hsla(var(--primary), .1); color: hsl(var(--primary)); margin-bottom: 1rem; }
.ee-value-card h3, .ee-focus-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.ee-value-card p, .ee-focus-card p { font-size: .95rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }

.ee-dot-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; color: rgba(255,255,255,.8); }
.ee-dot-list li { display: flex; gap: .75rem; }
.ee-dot-list li::before { content: ''; width: 6px; height: 6px; margin-top: .5rem; border-radius: 999px; background: rgba(255,255,255,.6); flex-shrink: 0; }

/* =========================
   Insights archive & Article
   ========================= */
.ee-insights-page { padding: 7rem 0 5rem; }
.ee-insights-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.ee-insights-head .ee-badge { display: inline-flex; }

.ee-article { padding: 7rem 0 6rem; }
.ee-article__image { border-radius: 1rem; overflow: hidden; margin-bottom: 3rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,.3); }
.ee-article__external { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid hsl(var(--border)); }
.ee-article__external a { display: inline-flex; align-items: center; font-size: .9rem; font-weight: 500; }
.ee-article__external .ee-icon { width: 16px; height: 16px; margin-left: .5rem; }

.ee-prose { line-height: 1.75; font-size: 1.05rem; }
.ee-prose h2, .ee-prose h3 { font-family: var(--font-serif); font-weight: 700; margin: 2rem 0 1rem; }
.ee-prose p { margin-bottom: 1.25rem; }
.ee-prose ul, .ee-prose ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.ee-prose a { color: hsl(var(--primary)); text-decoration: underline; }
.ee-prose img { border-radius: .75rem; margin: 1.5rem 0; }

/* =========================
   Legal pages
   ========================= */
.ee-legal { padding: 8rem 0 6rem; }

/* Footer */
.ee-footer { background: hsl(var(--background)); border-top: 1px solid hsl(var(--border)); padding: 3rem 0; }
.ee-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.ee-footer__brand p { margin-top: 1rem; color: hsl(var(--muted-foreground)); max-width: 26rem; }
.ee-footer h4 { font-family: var(--font-serif); font-weight: 600; margin-bottom: 1rem; font-size: 1rem; }
.ee-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; font-size: .9rem; }
.ee-footer ul a { color: hsl(var(--muted-foreground)); transition: color .2s ease; }
.ee-footer ul a:hover { color: hsl(var(--foreground)); }
.ee-footer__bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: .5rem; font-size: .85rem; color: hsl(var(--muted-foreground)); }
@media (min-width: 768px) {
  .ee-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
  .ee-footer__bottom { flex-direction: row; }
}

/* =========================================================
   V3 – Zweisprachigkeit, Navy-Hero, Stationen-Timeline
   ========================================================= */

/* Language switcher (flags, mirrors React LanguageSwitcher) */
.ee-lang-switch { display: inline-flex; align-items: center; gap: .25rem; margin-left: .5rem; }
.ee-lang-switch a { font-size: 1.25rem; line-height: 1; padding: .15rem .25rem; border-radius: .25rem; opacity: .4; transition: opacity .2s ease, transform .2s ease; }
.ee-lang-switch a:hover { opacity: .7; }
.ee-lang-switch a.is-active { opacity: 1; transform: scale(1.1); }
.ee-nav-mobile-controls { display: flex; align-items: center; gap: .75rem; }
@media (min-width: 768px) { .ee-nav-mobile-controls { display: none; } }

/* Navy hero (Startseite) – dunkelblauer Verlauf wie Profil-Hero */
.ee-hero--navy { background: linear-gradient(135deg, var(--slate-950), #0b1b33 55%, var(--slate-950)); }
.ee-hero--navy .ee-hero__bg { opacity: .18; filter: blur(60px) saturate(.9); }
.ee-hero--navy .ee-hero__scrim { background: linear-gradient(to bottom, rgba(2,6,23,.15), rgba(2,6,23,.55) 60%, hsl(var(--background))); }
.ee-hero--navy .ee-hero__title { color: #fff; }
.ee-hero--navy .ee-hero__title span { color: rgba(255,255,255,.55); }
.ee-hero--navy .ee-hero__lead { color: rgba(255,255,255,.72); }
.ee-hero--navy .ee-hero__scroll { color: rgba(255,255,255,.6); }
.ee-hero--navy .ee-hero__scroll-line { background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent); }

/* Light-outline button for dark/navy backgrounds */
.ee-btn--outline-light { background: transparent; border-color: rgba(255,255,255,.3); color: #fff; }
.ee-btn--outline-light:hover { background: rgba(255,255,255,.1); }

/* Navbar overlay over navy hero: transparent & light while at top */
.ee-navbar--overlay { background: transparent; border-bottom-color: transparent; }
.ee-navbar--overlay .ee-logo,
.ee-navbar--overlay .ee-nav-desktop a,
.ee-navbar--overlay .ee-theme-toggle { color: #fff; }
.ee-navbar--overlay .ee-nav-desktop a { color: rgba(255,255,255,.75); }
.ee-navbar--overlay .ee-nav-desktop a:hover { color: #fff; }
.ee-navbar--overlay .ee-nav-toggle span { background: #fff; }

/* Stationen / career timeline */
.ee-timeline { position: relative; margin-left: .5rem; padding-left: 2rem; border-left: 2px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 768px) { .ee-timeline { padding-left: 2.5rem; } }
.ee-timeline__item { position: relative; }
.ee-timeline__dot { position: absolute; top: .25rem; left: -2rem; transform: translateX(-50%); width: 1rem; height: 1rem; border-radius: 999px; border: 2px solid hsl(var(--primary)); background: hsl(var(--background)); }
@media (min-width: 768px) { .ee-timeline__dot { left: -2.5rem; } }
.ee-timeline__period { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: hsl(var(--primary)); margin-bottom: .25rem; }
.ee-timeline__role { font-size: 1.25rem; font-weight: 700; margin-bottom: .25rem; }
@media (min-width: 768px) { .ee-timeline__role { font-size: 1.5rem; } }
.ee-timeline__org { font-size: .9rem; font-weight: 500; color: hsla(var(--foreground), .7); margin-bottom: .75rem; }
.ee-timeline__desc { font-size: 1rem; color: hsl(var(--muted-foreground)); line-height: 1.7; max-width: 42rem; }

/* Hinweis "Artikel erscheinen auf Deutsch" (nur EN) */
.ee-content-note { font-size: .9rem; color: hsl(var(--muted-foreground)); font-style: italic; margin-top: .5rem; }
