/* =============================================
   IBG Monforts – Kambas OleoPress
   Design: Industrial/Natural – Olive & Slate
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,300&display=swap');

:root {
  --olive:      #5a6b2a;
  --olive-dark: #3d4a1c;
  --olive-light:#8fa44a;
  --cream:      #f5f0e8;
  --warm-white: #faf8f4;
  --slate:      #2c3340;
  --slate-mid:  #4a5568;
  --slate-light:#8896a8;
  --gold:       #c8922a;
  --text:       #1e2430;
  --radius:     4px;
  --shadow:     0 2px 12px rgba(30,36,48,.10);
  --shadow-lg:  0 8px 32px rgba(30,36,48,.16);
  --transition: .22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.65;
}

/* ---- Typography ---- */
h1,h2,h3,h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--slate);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: .5rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .4rem; }
p  { margin-bottom: 1rem; color: var(--slate-mid); }
a  { color: var(--olive); text-decoration: none; }
a:hover { color: var(--olive-dark); }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--slate);
  color: #fff;
  z-index: 9999;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: .9rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
#cookie-banner a { color: var(--olive-light); }
.btn-cookie {
  background: var(--olive);
  color: #fff;
  border: none;
  padding: .5rem 1.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .9rem;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-cookie:hover { background: var(--olive-dark); }
.cookie-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; text-align: center; }

/* ---- Header / Nav ---- */
header {
  position: sticky;
  top: 0;
  background: rgba(250,248,244,.97);
  border-bottom: 2px solid var(--olive);
  z-index: 100;
  backdrop-filter: blur(6px);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  gap: 1rem;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--olive-dark);
  letter-spacing: -.01em;
}
.logo-sub {
  font-size: .7rem;
  color: var(--slate-light);
  letter-spacing: .04em;
  text-transform: uppercase;
}
#nav-list {
  display: flex;
  gap: .2rem;
  align-items: center;
}
#nav-list li a {
  padding: .45rem .85rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  color: var(--slate);
  transition: background var(--transition), color var(--transition);
}
#nav-list li a:hover,
#nav-list li a.active {
  background: var(--olive);
  color: #fff;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--slate);
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition), transform var(--transition);
  border: 2px solid var(--olive);
}
.btn-primary:hover { background: var(--olive-dark); border-color: var(--olive-dark); transform: translateY(-1px); color: #fff; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--olive);
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--olive);
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--olive); color: #fff; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--slate);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(90,107,42,.85) 0%, rgba(44,51,64,.95) 60%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="%23ffffff" opacity=".06"/></svg>') repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 4rem 2rem 4rem 3rem;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: .8rem;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 .accent { color: var(--olive-light); }
.hero-lead { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 2rem; font-weight: 300; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.badge-inner {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid var(--olive-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .15rem;
  background: rgba(90,107,42,.25);
  backdrop-filter: blur(4px);
}
.badge-top  { font-size: .65rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }
.badge-mid  { font-size: 1.8rem; color: var(--olive-light); line-height: 1; }
.badge-bot  { font-size: .6rem; color: rgba(255,255,255,.6); }

/* ---- Notice ---- */
.notice {
  background: #fdf6e3;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid #e8d9b0;
  padding: 1rem 0;
}
.notice-inner {
  display: flex; align-items: flex-start; gap: .8rem;
}
.notice-icon {
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1.4;
  flex-shrink: 0;
}
.notice p { margin: 0; color: #6b5420; font-size: .92rem; }
.notice a { color: var(--olive-dark); font-weight: 600; }

/* ---- Sections ---- */
.section { padding: 5rem 0; }
.section-dark { background: var(--slate); }
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p  { color: rgba(255,255,255,.72); }
.section-lead { font-size: 1.05rem; max-width: 580px; margin-bottom: 3rem; }

/* ---- Cards ---- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: #fff;
  border: 1px solid #e8e2d8;
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; color: var(--olive); }
.card-link {
  display: inline-block;
  margin-top: .8rem;
  font-weight: 600;
  color: var(--olive);
  font-size: .9rem;
}
.card-link:hover { color: var(--olive-dark); }

/* ---- Split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.check-list { margin: 1.2rem 0 2rem; }
.check-list li {
  padding: .4rem 0;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
}
.check-list li::before { content: '✓  '; color: var(--olive-light); font-weight: 700; }

.visual-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
}
.visual-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.2rem;
}
.compat-list {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
}
.compat-list span {
  background: var(--olive);
  color: #fff;
  padding: .35rem .9rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
}

/* ---- Neue Modelle ---- */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.model-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 1.6rem;
  transition: background var(--transition);
}
.model-card:hover { background: rgba(255,255,255,.09); }
.model-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: .4rem; }
.model-desc { font-size: .85rem; color: rgba(255,255,255,.6); margin: 0; }

/* ---- CTA Band ---- */
.cta-band {
  background: var(--olive);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: .8rem; }
.cta-band p  { color: rgba(255,255,255,.82); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--olive-dark);
  border-color: #fff;
}
.cta-band .btn-primary:hover { background: var(--cream); border-color: var(--cream); }

/* ---- Footer ---- */
footer {
  background: var(--slate);
  color: rgba(255,255,255,.55);
  padding: 3rem 0 2rem;
  font-size: .88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-main { color: rgba(255,255,255,.9); font-size: 1.1rem; }
.footer-brand .logo-sub  { color: rgba(255,255,255,.4); }
.footer-brand p { margin-top: .8rem; font-size: .85rem; }
footer h4 { color: rgba(255,255,255,.8); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .8rem; font-family: 'Source Sans 3', sans-serif; font-weight: 600; }
footer ul li { margin-bottom: .4rem; }
footer ul li a { color: rgba(255,255,255,.55); transition: color var(--transition); }
footer ul li a:hover { color: var(--olive-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--olive-light); }

/* ---- Inner Page Hero ---- */
.page-hero {
  background: var(--slate);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,107,42,.6) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin: 0; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: .8rem; }
.breadcrumb a { color: var(--olive-light); }

/* ---- Ersatzteile Table ---- */
.ersatz-table { width: 100%; border-collapse: collapse; margin-top: 2rem; font-size: .95rem; }
.ersatz-table th {
  background: var(--olive);
  color: #fff;
  padding: .8rem 1rem;
  text-align: left;
  font-weight: 600;
}
.ersatz-table td { padding: .75rem 1rem; border-bottom: 1px solid #e8e2d8; vertical-align: top; }
.ersatz-table tr:last-child td { border-bottom: none; }
.ersatz-table tr:hover td { background: #f7f4ef; }
.tag-compat {
  display: inline-block;
  background: #edf2e3;
  color: var(--olive-dark);
  font-size: .75rem;
  padding: .15rem .5rem;
  border-radius: 3px;
  margin: .1rem;
  font-weight: 600;
}

/* ---- Modell Detail ---- */
.modell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2rem; }
.modell-specs { background: var(--cream); border-radius: 6px; padding: 2rem; }
.modell-specs dl { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .5rem; margin-top: 1rem; }
.modell-specs dt { font-weight: 600; font-size: .9rem; color: var(--slate-mid); }
.modell-specs dd { font-size: .9rem; color: var(--slate); }
.alternative-box {
  background: var(--olive);
  color: #fff;
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.alternative-box h4 { color: #fff; margin-bottom: .4rem; }
.alternative-box p { color: rgba(255,255,255,.82); font-size: .92rem; margin-bottom: 1rem; }
.alternative-box .btn-primary { background: #fff; color: var(--olive-dark); border-color: #fff; }

/* ---- Legal Pages ---- */
.legal-content { max-width: 780px; margin: 0 auto; padding: 4rem 1.5rem; }
.legal-content h1 { margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: .5rem; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: .4rem; }
.legal-content p, .legal-content li { color: var(--slate-mid); margin-bottom: .8rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-info p { margin-bottom: .5rem; }
.contact-info strong { color: var(--slate); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  #nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 2px solid var(--olive);
    flex-direction: column;
    padding: 1rem;
    gap: .2rem;
  }
  #nav-list.open { display: flex; }
  #nav-list li a { display: block; padding: .6rem 1rem; }
  header { position: relative; }

  .hero-badge { display: none; }
  .hero-content { padding: 3rem 1.5rem; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .modell-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .modell-specs dl { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; text-align: center; }

  .footer-bottom { flex-direction: column; text-align: center; }
  table { font-size: .82rem; }
  .ersatz-table th, .ersatz-table td { padding: .6rem .6rem; }
}


/* Sprachumschalter */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.lang-switcher a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: .2rem .45rem;
  border-radius: 4px;
  transition: background .15s, color .15s;
  font-weight: 500;
  letter-spacing: .02em;
}
.lang-switcher a:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.lang-switcher a.active {
  background: rgba(255,255,255,.22);
  color: #fff;
  font-weight: 700;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
@media (max-width: 700px) {
  .lang-switcher {
    font-size: .75rem;
    gap: .2rem;
  }
  .lang-switcher a {
    padding: .15rem .3rem;
  }
}

/* Gleitlager-Section */
.gleit-section { background: #f4f6fb; padding: 4rem 0; }
.gleit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media(max-width:700px){ .gleit-inner { grid-template-columns: 1fr; } }
.gleit-badge { background: linear-gradient(135deg,#1a2e4a 0%,#2e5090 100%); border-radius: 16px; padding: 2.2rem; color: #fff; }
.gleit-badge h3 { font-size: 1.2rem; margin: 0 0 .6rem; color: #fff; }
.gleit-badge p { font-size: .92rem; color: rgba(255,255,255,.85); margin: 0 0 .8rem; line-height: 1.6; }
.gleit-badge .sub-section { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.2); }
.gleit-badge .sub-section h4 { font-size: 1rem; color: #fff; margin: 0 0 .4rem; }
.gleit-badge a.btn-mail { display: inline-block; background: #fff; color: #1a2e4a; font-weight: 700; padding: .65rem 1.3rem; border-radius: 8px; text-decoration: none; font-size: .88rem; margin-top: 1rem; transition: opacity .2s; }
.gleit-badge a.btn-mail:hover { opacity: .88; }
.gleit-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .5rem 0 .8rem; }
.gleit-tag { background: rgba(255,255,255,.18); border-radius: 20px; padding: .25rem .8rem; font-size: .8rem; color: rgba(255,255,255,.92); }
.why-better { background: #fff; border: 2px solid #e4eaf5; border-radius: 16px; padding: 1.8rem; }
.why-better h3 { font-size: 1.05rem; margin: 0 0 1.1rem; color: #1a2e4a; }
.why-row { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .9rem; }
.why-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: .1rem; }
.why-text strong { display: block; font-size: .92rem; color: #1a2e4a; }
.why-text span { font-size: .82rem; color: #666; line-height: 1.4; }

/* Kontakt-Box */
.contact-box { background: #f4f6fb; border-radius: 12px; padding: 1.5rem 2rem; margin: 1.5rem 0; border-left: 4px solid #2e5090; }
.contact-box p { margin: .4rem 0; }

/* Page content */
.page-content { max-width: 860px; margin: 3rem auto; padding: 0 1.5rem; }
.page-content h1 { font-size: 2rem; color: #1a2e4a; margin-bottom: 1.5rem; }
.page-content h2 { font-size: 1.2rem; color: #2e5090; margin: 1.8rem 0 .6rem; }
.page-content p, .page-content li { line-height: 1.7; color: #333; }

/* Blog-Banner */
.blog-banner { background: linear-gradient(90deg, #1a2e4a 0%, #2e5090 100%); padding: 1rem 0; }
.blog-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.blog-banner-text { display: flex; flex-direction: column; gap: .2rem; }
.blog-label { font-size: .78rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }
.blog-banner-text strong { color: #fff; font-size: 1rem; }
.blog-banner-text span { color: rgba(255,255,255,.72); font-size: .85rem; }
.btn-blog { flex-shrink: 0; background: #fff; color: #1a2e4a; font-weight: 700; padding: .6rem 1.3rem; border-radius: 8px; text-decoration: none; font-size: .9rem; white-space: nowrap; transition: opacity .2s; }
.btn-blog:hover { opacity: .88; }

/* Nav Lang-Gruppe */
.nav-lang-group { display: flex; align-items: center; gap: .2rem; margin-left: .5rem; padding-left: .8rem; border-left: 1px solid rgba(255,255,255,.2); }
.nav-lang { color: rgba(255,255,255,.65) !important; font-size: .78rem !important; font-weight: 600 !important; padding: .15rem .35rem !important; border-radius: 4px !important; text-decoration: none; transition: background .15s, color .15s; }
.nav-lang:hover, .nav-lang.active { background: rgba(255,255,255,.2) !important; color: #fff !important; }
@media(max-width:700px) {
  .blog-banner-inner { flex-direction: column; align-items: flex-start; }
  .nav-lang-group { border-left: none; padding-left: 0; margin-left: 0; }
}

/* Btn cookie decline */
.btn-cookie-decline { background: transparent; border: 1px solid rgba(255,255,255,.5); color: #fff; border-radius: 6px; padding: .4rem .9rem; cursor: pointer; font-size: .85rem; margin-left: .4rem; }
.btn-cookie-decline:hover { background: rgba(255,255,255,.1); }

/* ── Sprachumschalter Fix ─────────────────────────── */
nav { position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; }
.nav-right { display: flex; align-items: center; gap: .8rem; margin-left: auto; }
.lang-switcher { display: flex; align-items: center; gap: .3rem; }
.lang-switcher a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: .25rem .55rem;
  border-radius: 5px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .15s, color .15s;
}
.lang-switcher a:hover { background: rgba(255,255,255,.18); color: #fff; }
.lang-switcher a.active { background: rgba(255,255,255,.25); color: #fff; }
.lang-switcher .sep { color: rgba(255,255,255,.3); font-size: .75rem; }

/* Nav-lang-group im Hamburger-Menü (Fallback) */
#nav-list .nav-lang-group {
  display: flex !important;
  align-items: center;
  gap: .25rem;
  padding: .4rem .8rem;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: .3rem;
}

/* ── NAV LAYOUT FIX ─────────────────────────────── */
header nav {
  display: flex !important;
  align-items: center;
  gap: .8rem;
  flex-wrap: nowrap;
  padding: .6rem 1.5rem;
}
header nav .logo { flex-shrink: 0; margin-right: auto; }
header nav .lang-switcher {
  display: flex !important;
  align-items: center;
  gap: .3rem;
  flex-shrink: 0;
  order: 2;
}
header nav .nav-toggle {
  order: 3;
  flex-shrink: 0;
}
header nav #nav-list {
  order: 4;
}
.lang-switcher a {
  color: rgba(255,255,255,.75) !important;
  text-decoration: none;
  padding: .22rem .5rem;
  border-radius: 5px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .15s, color .15s;
}
.lang-switcher a:hover { background: rgba(255,255,255,.18) !important; color: #fff !important; }
.lang-switcher a.active { background: rgba(255,255,255,.28) !important; color: #fff !important; }
.lang-switcher .sep { color: rgba(255,255,255,.3); font-size: .7rem; user-select: none; }
@media(max-width:700px) {
  header nav { flex-wrap: wrap; padding: .5rem 1rem; }
  header nav .lang-switcher { order: 3; }
  header nav .nav-toggle { order: 2; }
}

/* ── TOPBAR SPRACHUMSCHALTER ──────────────────────────────── */
.topbar {
  background: #111d2e;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: .35rem 1.5rem;
  gap: .15rem;
}
.topbar a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .2rem .5rem;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.topbar a:hover { color: #fff; background: rgba(255,255,255,.12); }
.topbar a.active { color: #fff; background: rgba(255,255,255,.18); }
.topbar .sep { color: rgba(255,255,255,.2); font-size: .7rem; user-select: none; padding: 0 .1rem; }

/* lang-switcher im nav ausblenden – topbar übernimmt */
header nav .lang-switcher { display: none !important; }
