

/* =========================
   HOTFIX (sauber): Bilder + Überschriften
   ========================= */

html{ font-size: clamp(20px, 1vw + 16px, 23px); }

.brand-title{
  font-size: clamp(52px, 3vw, 68px);
  line-height: 1.15;
}

.section-title{
  font-size: clamp(1.9rem, 1.4vw + 1.4rem, 2.3rem);
  line-height: 1.25;
  margin: 2.2rem 0 1rem;
}

/* Modell-Grid robust */
body main .wrap .model-grid{
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 1.25rem !important;
}

body main .wrap .model-grid .model-card{
  display: flex !important;
  flex-direction: column !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* Thumbnails: NICHT abschneiden, aber nicht riesig */
body main .wrap .model-grid .model-card > img{
  width: 100% !important;
  height: 300px !important;
  object-fit: contain !important; /* kein Crop */
  object-position: center !important;
  display: block !important;
  background: rgba(255,255,255,0.04) !important;
}

/* Notbremse für "normale" Bilder im Content */
body main .wrap img{
  max-width: 100% !important;
}

/* Mobile */
@media (max-width: 480px){
  body main .wrap .model-grid .model-card > img{ height: 240px !important; }
}

/* =========================
   Galerie auf Modellseiten
   ========================= */
body main .wrap .gallery-grid{
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 1rem !important;
  margin: 1rem 0 2rem !important;
}

body main .wrap .gallery-grid img{
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px !important;
}

@media (max-width: 480px){
  body main .wrap .gallery-grid img{ height: 210px !important; }
}

/* =========================
   Galerie auf Modellseiten
   ========================= */
body main .wrap .gallery-grid{
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 1rem !important;
  margin: 1rem 0 2rem !important;
}

body main .wrap .gallery-grid img{
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px !important;
}

@media (max-width: 480px){
  body main .wrap .gallery-grid img{ height: 210px !important; }
}

/* =========================
   Cinematic Gallery
   ========================= */
body main .wrap .gallery-grid{
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 1rem !important;
  margin: 1rem 0 2rem !important;
}

body main .wrap .gallery-grid a{
  display: block !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

body main .wrap .gallery-grid img{
  width: 100% !important;
  height: 360px !important;          /* cinematic */
  object-fit: cover !important;      /* Zuschnitt */
  object-position: center 35% !important; /* oft besser (mehr „oben“ sichtbar) */
  display: block !important;
  transform: scale(1);
  transition: transform 180ms ease;
}

body main .wrap .gallery-grid a:hover img{
  transform: scale(1.03);
}

@media (max-width: 480px){
  body main .wrap .gallery-grid img{ height: 260px !important; }
}

/* =========================
   Gallery Override v2 (kleiner + ohne Abschneiden)
   ========================= */

body main .wrap .gallery-grid{
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
}

body main .wrap .gallery-grid a{
  display: block !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: rgba(255,255,255,0.04) !important; /* cinematic letterbox */
}

body main .wrap .gallery-grid img{
  width: 100% !important;
  height: 300px !important;          /* vorher zu groß */
  object-fit: contain !important;     /* KEIN Abschneiden */
  object-position: center !important;
  display: block !important;
  transform: none !important;         /* Hover-Zoom aus, sonst wirkt's „zu groß“ */
}

@media (max-width: 480px){
  body main .wrap .gallery-grid img{
    height: 230px !important;
  }
}

/* =========================
   Startseite: Card Actions
   ========================= */

body main .wrap .model-grid{
  align-items: stretch !important;
}

body main .wrap .model-grid .model-card{
  display: flex !important;
  flex-direction: column !important;
}

body main .wrap .model-grid .model-card .model-link{
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* Buttons unterhalb */
.card-actions{
  display: flex;
  gap: 0.6rem;
  padding: 0.85rem 1rem 1rem;
  margin-top: auto;
}

.btn.small{
  display: inline-block;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
}

.btn.small.secondary{
  border-color: rgba(255,255,255,0.22);
}

/* Hover */
.btn.small:hover{
  border-color: rgba(255,255,255,0.35);
  text-decoration: none;
}

/* =========================
   Startseite: Card Actions
   ========================= */

body main .wrap .model-grid{
  align-items: stretch !important;
}

body main .wrap .model-grid .model-card{
  display: flex !important;
  flex-direction: column !important;
}

body main .wrap .model-grid .model-card .model-link{
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* Buttons unterhalb */
.card-actions{
  display: flex;
  gap: 0.6rem;
  padding: 0.85rem 1rem 1rem;
  margin-top: auto;
}

.btn.small{
  display: inline-block;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
}

.btn.small.secondary{
  border-color: rgba(255,255,255,0.22);
}

/* Hover */
.btn.small:hover{
  border-color: rgba(255,255,255,0.35);
  text-decoration: none;
}

/* =========================
   Startseite: Card Actions
   ========================= */

body main .wrap .model-grid{
  align-items: stretch !important;
}

body main .wrap .model-grid .model-card{
  display: flex !important;
  flex-direction: column !important;
}

body main .wrap .model-grid .model-card .model-link{
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* Buttons unterhalb */
.card-actions{
  display: flex;
  gap: 0.6rem;
  padding: 0.85rem 1rem 1rem;
  margin-top: auto;
}

.btn.small{
  display: inline-block;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
}

.btn.small.secondary{
  border-color: rgba(255,255,255,0.22);
}

/* Hover */
.btn.small:hover{
  border-color: rgba(255,255,255,0.35);
  text-decoration: none;
}

/* =========================
   Info-Box / Checkliste (Detailseiten)
   ========================= */
.info-box{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin: 1.2rem 0 1.2rem;
  background: rgba(255,255,255,0.03);
}

.info-box .sub-title{
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.checklist{
  margin: 0;
  padding-left: 1.2rem;
}

.checklist li{
  margin: 0.35rem 0;
  line-height: 1.6;
}

.info-box .note{
  margin: 0.8rem 0 0;
  opacity: 0.9;
  font-size: 0.98rem;
}

/* =========================
   Specs-Box (Detailseiten)
   ========================= */
.specs-box{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin: 1.2rem 0 1rem;
  background: rgba(255,255,255,0.03);
}

.specs{
  margin: 0.7rem 0 0;
}

.specs .row{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.9rem;
  padding: 0.45rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.specs .row:first-child{
  border-top: none;
}

.specs dt{
  opacity: 0.9;
  font-weight: 600;
}

.specs dd{
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 480px){
  .specs .row{ grid-template-columns: 1fr; gap: 0.25rem; }
}

/* =========================
   Specs Accordion + Grid Fix
   ========================= */

.specs-acc{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  margin: 1.2rem 0 1.2rem;
  overflow: hidden;
}

.specs-acc > summary{
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.1rem;
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.95;
}

.specs-acc > summary::-webkit-details-marker{ display: none; }

.specs-acc[open] > summary{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.specs-box{
  padding: 0.9rem 1.1rem 1rem;
  background: transparent;
  border: none;
  margin: 0;
}

.specs{
  margin: 0;
}

.specs .row{
  display: grid;
  grid-template-columns: minmax(170px, 230px) 1fr; /* verhindert Überschriften-Crash */
  gap: 1rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.specs .row:first-child{ border-top: none; }

.specs dt{
  font-weight: 600;
  opacity: 0.9;
  white-space: normal;              /* wichtig */
  overflow-wrap: anywhere;          /* wichtig */
}

.specs dd{
  margin: 0;
  opacity: 0.95;
  overflow-wrap: anywhere;
}

@media (max-width: 480px){
  .specs .row{ grid-template-columns: 1fr; gap: 0.25rem; }
}

/* =========================
   Burger Navigation (Mobile)
   ========================= */
.nav-toggle{
  display: none;
  margin: 0.6rem auto 0;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  color: inherit;
  font-size: 1rem;
}

@media (max-width: 720px){
  .nav-toggle{ display: inline-block; }

  /* Nav standardmäßig zu */
  .main-nav{
    display: none;
    margin-top: 0.8rem;
  }

  /* offen */
  .main-nav.is-open{
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
  }
}

/* =========================
   Burger Menü: immer sichtbar
   ========================= */
.nav-toggle{
  display: inline-block !important;
  margin: 0.6rem auto 0 !important;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.03) !important;
  color: inherit !important;
  font-size: 1rem !important;
}

/* Nav standardmäßig eingeklappt */
.main-nav{
  display: none !important;
  margin-top: 0.8rem !important;
}

/* geöffnet */
.main-nav.is-open{
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
  align-items: center !important;
}

/* Brand-Title Link wie normaler Text */
.brand-title .brand-home{
  color: inherit !important;
  text-decoration: none !important;
}
.brand-title .brand-home:hover{
  text-decoration: none !important;
}

/* Logo-Größe robust */
.brand-logo img{
  height: 110px;
  width: auto;
  display: block;
  margin: 0 auto 12px;
}

/* =========================
   Burger Menü (immer sichtbar)
   ========================= */
.nav-toggle{
  display: inline-block !important;
  margin: 0.6rem auto 0 !important;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.03) !important;
  color: inherit !important;
  font-size: 1rem !important;
}

/* Nav standardmäßig zu */
.main-nav{
  display: none !important;
  margin-top: 0.8rem !important;
}

/* Nav offen */
.main-nav.is-open{
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
  align-items: center !important;
}
.brand-title .brand-home{
  color: inherit !important;
  text-decoration: none !important;
}
.brand-logo img{
  height: 110px;
  width: auto;
  display: block;
  margin: 0 auto 12px;
}

/* =========================
   NAV FINAL (Burger + Responsive)
   ========================= */

/* Burger immer sichtbar (du wolltest ihn "sehen") */
.nav-toggle{
  display: inline-block !important;
  margin: 0.6rem auto 0 !important;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.03) !important;
  color: inherit !important;
  font-size: 1rem !important;
}

/* Desktop: Nav normal sichtbar */
.main-nav{
  display: flex !important;
  gap: 1rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-top: 0.8rem !important;
}

/* Mobile: Nav einklappen, nur bei is-open anzeigen */
@media (max-width: 720px){
  .main-nav{ display: none !important; }
  .main-nav.is-open{
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
    align-items: center !important;
  }
}

/* =========================
   LOGO FIX: nicht schneiden, kein Hintergrund
   ========================= */

.site-header .brand-logo{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 auto 12px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.site-header .brand-logo img{
  display: block !important;
  width: auto !important;
  height: auto !important;

  /* entscheidend: niemals crop */
  object-fit: contain !important;
  object-position: center !important;

  /* sinnvolle maximale Größe, responsiv */
  max-height: clamp(64px, 8vw, 110px) !important;
  max-width: min(220px, 80vw) !important;

  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* =========================
   LOGO FINAL FIX (force visible)
   ========================= */
.site-header .brand-logo{
  display: block !important;
  margin: 0 auto 12px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  line-height: 0 !important;
}

.site-header .brand-logo img{
  display: block !important;
  margin: 0 auto !important;
  width: auto !important;
  height: auto !important;
  max-height: 120px !important;
  max-width: 240px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
}

/* =========================
   LOGO SVG: sichtbar + größer
   ========================= */
.site-header .brand-logo{
  display: block !important;
  margin: 0 auto 14px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  line-height: 0 !important;
}

.site-header .brand-logo img{
  display: block !important;
  margin: 0 auto !important;

  /* SVG sauber skalieren */
  width: clamp(84px, 10vw, 140px) !important;
  height: auto !important;

  max-width: none !important;
  max-height: none !important;

  object-fit: contain !important;
  object-position: center !important;

  background: transparent !important;
}

/* =========================
   NAV: Burger sichtbar, Mobile einklappen
   ========================= */
.nav-toggle{
  display: inline-block !important;
  margin: 0.6rem auto 0 !important;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.03) !important;
  color: inherit !important;
  font-size: 1rem !important;
}

.main-nav{
  display: flex !important;
  gap: 1rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-top: 0.8rem !important;
}

@media (max-width: 720px){
  .main-nav{ display: none !important; }
  .main-nav.is-open{
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
    align-items: center !important;
  }
}

/* LOGO: niemals abschneiden, kein Block-Hintergrund */
.site-header .brand-logo{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header .brand-logo img{
  width: clamp(90px, 9vw, 140px) !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
}

/* =========================
   LOGO FINAL: sichtbar + sauber skaliert
   ========================= */
.site-header .brand-logo{
  display: block !important;
  margin: 0 auto 12px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  line-height: 0 !important;
}

.site-header .brand-logo img{
  display: block !important;
  margin: 0 auto !important;

  width: 140px !important;      /* sichtbarer Standard */
  height: auto !important;

  max-width: 80vw !important;   /* mobil */
  max-height: 140px !important; /* Sicherheit */

  object-fit: contain !important;
  object-position: center !important;

  opacity: 1 !important;
  visibility: visible !important;
}

/* Language Switch */
.lang-switch{
  display: inline-flex !important;
  gap: 0.35rem !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0.6rem auto 0 !important;
}

.lang-btn{
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.03) !important;
  color: inherit !important;
  padding: 0.35rem 0.6rem !important;
  border-radius: 999px !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
}

.lang-btn[aria-pressed="true"]{
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(255,255,255,0.30) !important;
}

/* Specs-Liste ohne Bulletpoints */
.mf-specs .specs{
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.mf-specs .specs li{
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* =========================
   DETAILS: keine Bulletpoints
   ========================= */
.mf-specs .specs{
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0.75rem 0 0 !important;
}
.mf-specs .specs li{
  margin: 0.55rem 0 !important;
}

/* =========================
   HEADER NAV: nicht unter dem Kopf anzeigen
   (Navigation kommt ins Burger-Menü)
   ========================= */
.site-header .main-nav{
  display: none !important;
}

/* =========================
   BURGER BUTTON (nur 3 Striche, kein Text)
   ========================= */
.menu-toggle{
  appearance: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  width: 46px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle:focus{
  outline: 2px solid rgba(179,138,88,0.55);
  outline-offset: 3px;
}
.menu-toggle .bar{
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* =========================
   SIDE DRAWER
   ========================= */
.drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9998;
}

.site-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(340px, 86vw);
  background: rgba(8, 22, 18, 0.96);
  border-left: 1px solid rgba(255,255,255,0.10);
  padding: 20px 18px;
  transform: translateX(100%);
  transition: transform .22s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-drawer.open{
  transform: translateX(0);
}

.drawer-overlay.open{
  opacity: 1;
  pointer-events: auto;
}

.site-drawer .drawer-title{
  font-family: "LuthonSouthardSerif", Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.site-drawer nav{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-drawer nav a{
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  color: var(--ink);
}

.site-drawer nav a:hover{
  border-color: rgba(179,138,88,0.35);
}

/* Alte "Menü"-Textbuttons (falls vorhanden) verstecken */
.menu-button,
.button.menu,
a.menu{
  display: none !important;
}


/* =========================
   DETAILS: Bullets wirklich weg (global für Details)
   ========================= */
.mf-specs ul,
.details ul,
.specs ul{
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.mf-specs li::marker,
.details li::marker,
.specs li::marker{
  content: "" !important;
}

/* Kleinen Modellnamen unter Details ausblenden (falls es ein eigener Block ist) */
.mf-specs .model-name,
.mf-specs .model-mini,
.mf-specs .model-caption,
.details .model-name,
.details .model-mini,
.details .model-caption{
  display: none !important;
}


/* =========================
   BURGER MENU: icon-only, side drawer
   ========================= */

/* Button (nur Icon) */
.menu-toggle{
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 9999 !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(233,227,215,0.25) !important;
  background: rgba(0,0,0,0.12) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important; /* falls irgendwo Text wäre */
}

.menu-toggle .hamburger{
  width: 18px !important;
  height: 12px !important;
  display: block !important;
  position: relative !important;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: var(--accent) !important;
  border-radius: 2px !important;
}

.menu-toggle .hamburger::before{ top: 0 !important; }
.menu-toggle .hamburger::after{ bottom: 0 !important; }

/* mittlere Linie */
.menu-toggle .hamburger{
  background: var(--accent) !important;
  border-radius: 2px !important;
}

/* Drawer (seitlich) */
.site-drawer{
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  height: 100vh !important;
  width: min(360px, 86vw) !important;
  transform: translateX(105%) !important;
  transition: transform .25s ease !important;
}

/* Wenn dein JS eine Klasse setzt wie "open" oder "is-open":
   Falls anders: sag kurz wie die Klasse heißt, dann passe ich es 1:1 an. */
.site-drawer.open,
.site-drawer.open,
body.drawer-open .site-drawer{
  transform: translateX(0) !important;
}

/* Alte Top-Navi-Link-Leiste unter dem Kopf auf Unterseiten ausblenden (nur Drawer nutzen) */
body:not(.home) .main-nav{
  display: none !important;
}


/* =========================
   MODEL DETAILS CLEANUP
   ========================= */

/* Bullets/Einrückung entfernen */
.mf-specs ul,
.details ul,
.specs ul{
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.mf-specs li::marker,
.details li::marker,
.specs li::marker{
  content: "" !important;
}

/* Kleinen Modellnamen unter Details ausblenden */
.mf-specs .model-name,
.mf-specs .model-mini,
.mf-specs .model-caption{
  display: none !important;
}

/* =========================
   HEADER NAV -> ONLY DRAWER
   ========================= */
.site-header .main-nav{
  display: none !important;
}

/* =========================
   HEADER NAV -> ONLY DRAWER
   ========================= */
.site-header .main-nav{
  display: none !important;
}

/* =========================
   BURGER ICON ONLY
   ========================= */
.menu-toggle{
  font-size: 0 !important;          /* Text unsichtbar */
  line-height: 0 !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.menu-toggle::before{
  content: "" !important;
  display: block !important;
  width: 18px !important;
  height: 12px !important;
  background:
    linear-gradient(currentColor,currentColor) 0 0/100% 2px no-repeat,
    linear-gradient(currentColor,currentColor) 0 50%/100% 2px no-repeat,
    linear-gradient(currentColor,currentColor) 0 100%/100% 2px no-repeat;
  opacity: .95;
}

/* =========================
   DRAWER: OFF-CANVAS SIDE
   ========================= */
.site-drawer{
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  height: 100vh !important;
  width: min(320px, 88vw) !important;
  transform: translateX(110%) !important;
  transition: transform .22s ease !important;
  z-index: 9999 !important;
}

.site-drawer.open{
  transform: translateX(0) !important;
}

/* Drawer-Overlay sichtbar, wenn open */
.site-overlay,
.drawer-overlay,
.site-drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9998;
}
.site-overlay.open,
.drawer-overlay.open,
.site-drawer-overlay.open{
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   HEADER CONTROLS POSITIONING
   ========================= */

/* Burger links oben */
.menu-toggle{
  position: fixed !important;
  top: 18px !important;
  left: 18px !important;
  right: auto !important;
  z-index: 10001 !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(233,227,215,0.25) !important;
  background: rgba(0,0,0,0.14) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 0 !important;      /* verhindert "Menü" Text */
  line-height: 0 !important;
}

/* Hamburger: 3 parallele Striche UNTEREINANDER (klassisch) */
.menu-toggle .hamburger{
  width: 18px !important;
  height: 12px !important;
  display: block !important;
  position: relative !important;
  background: var(--accent) !important;        /* mittlere Linie */
  border-radius: 2px !important;
}
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: var(--accent) !important;
  border-radius: 2px !important;
}
.menu-toggle .hamburger::before{ top: 0 !important; }
.menu-toggle .hamburger::after{ bottom: 0 !important; }

/* Sprachschalter rechts oben (DE/EN) */
.lang-switch{
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  left: auto !important;
  z-index: 10001 !important;
  display: inline-flex !important;
  gap: 8px !important;
}

/* Style der DE/EN Buttons (falls es <button> oder <a> ist) */
.lang-switch a,
.lang-switch button{
  border: 1px solid rgba(233,227,215,0.25) !important;
  background: rgba(0,0,0,0.14) !important;
  color: var(--ink) !important;
  padding: 8px 10px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

/* Navigation unter dem Kopf NIE anzeigen – nur Drawer */
.site-header .main-nav{
  display: none !important;
}

/* Drawer: rechts reinfahren */
.site-drawer{
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  height: 100vh !important;
  width: min(340px, 86vw) !important;
  transform: translateX(110%) !important;
  transition: transform .22s ease !important;
  z-index: 10000 !important;
}
.site-drawer.open{
  transform: translateX(0) !important;
}

/* Overlay klickbar */
.drawer-overlay{
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.45) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity .2s ease !important;
  z-index: 9999 !important;
}
.drawer-overlay.open{
  opacity: 1 !important;
  pointer-events: auto !important;
}


/* Logo: immer sichtbar, nicht clippen */
.site-header .brand-logo{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: inline-block !important;
}

.site-header .brand-logo img{
  width: clamp(90px, 9vw, 140px) !important;
  height: auto !important;
  max-height: 140px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  display: block !important;
}


/* Logo: immer sichtbar, nicht clippen */
.site-header .brand-logo{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: inline-block !important;
}

.site-header .brand-logo img{
  width: clamp(90px, 9vw, 140px) !important;
  height: auto !important;
  max-height: 140px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  display: block !important;
}


/* =========================
   HEADER CONTROLS: FIXED POSITIONS
   ========================= */

/* Burger links, Language rechts */
.menu-toggle{
  position: fixed !important;
  top: 18px !important;
  left: 18px !important;
  right: auto !important;
  z-index: 10050 !important;
  pointer-events: auto !important;
}

/* Sprache rechts */
.lang-switch{
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  left: auto !important;
  z-index: 10050 !important;
  pointer-events: auto !important;
}

/* Overlay unter Buttons, aber über Seite */
.site-overlay,
.drawer-overlay,
.site-drawer-overlay{
  z-index: 10000 !important;
}

/* Drawer über Overlay */
.site-drawer{
  z-index: 10020 !important;
}

/* Drawer-Open-Klasse (menu.js nutzt .open) */
.site-drawer.open{ transform: translateX(0) !important; }

/* Buttons nie "mitten im Layout" */
.site-header .wrap{ position: relative !important; }


/* =========================
   HEADER CONTROLS: FIXED POSITIONS
   ========================= */

/* Burger links, Language rechts */
.menu-toggle{
  position: fixed !important;
  top: 18px !important;
  left: 18px !important;
  right: auto !important;
  z-index: 10050 !important;
  pointer-events: auto !important;
}

/* Sprache rechts */
.lang-switch{
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  left: auto !important;
  z-index: 10050 !important;
  pointer-events: auto !important;
}

/* Overlay unter Buttons, aber über Seite */
.site-overlay,
.drawer-overlay,
.site-drawer-overlay{
  z-index: 10000 !important;
}

/* Drawer über Overlay */
.site-drawer{
  z-index: 10020 !important;
}

/* Drawer-Open-Klasse (menu.js nutzt .open) */
.site-drawer.open{ transform: translateX(0) !important; }

/* Buttons nie "mitten im Layout" */
.site-header .wrap{ position: relative !important; }


/* Hamburger Icon (3 Striche untereinander) */
.menu-toggle{
  background: transparent !important;
  border: 0 !important;
  padding: 10px !important;
  border-radius: 12px !important;
}

.hamburger{
  display: inline-block !important;
  width: 26px !important;
  height: 18px !important;
}

.hamburger i{
  display: block !important;
  height: 2px !important;
  margin: 4px 0 !important;
  background: currentColor !important;
  border-radius: 2px !important;
}


/* Logo: immer sichtbar, nie clippen */
.brand-logo{ display: inline-block !important; }
.brand-logo img{
  display: block !important;
  width: clamp(90px, 9vw, 140px) !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
}

.site-header, .site-header *{
  overflow: visible !important;
}


/* === HEADER CONTROLS: burger links, language rechts === */

/* Burger-Button: links, ohne Text */
.menu-toggle{
  position: fixed !important;
  top: 18px !important;
  left: 18px !important;
  z-index: 9999 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
}

/* Falls irgendwo Text im Button ist: ausblenden */
.menu-toggle{ font-size: 0 !important; }
.menu-toggle *{ font-size: initial; }

/* Burger-Icon (3 Striche untereinander) */
.mf-burger{
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
}
.mf-burger span{
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: .95;
}

/* Sprachschalter: rechts fix */
.lang-switch{
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 9999 !important;
}

/* Drawer: Klassen passend zu JS (.open) */
.site-drawer.open{ transform: translateX(0) !important; }
.site-drawer{ transform: translateX(-110%) !important; }

/* Overlay */
.site-overlay.open{ opacity: 1 !important; pointer-events: auto !important; }
.site-overlay{ opacity: 0 !important; pointer-events: none !important; }

/* Falls ein alter "Menü-Button" mittig existiert: verstecken */
.header-center .menu-toggle,
.site-header .header-center .menu-toggle,
.hero .menu-toggle.center,
.menu-toggle.center{
  display: none !important;
}

/* Optional: wenn alte Header-Navigation direkt unter dem Kopf angezeigt wird */
.site-header .site-nav,
.site-header nav.site-nav{
  display: none !important;
}


/* === Header Controls: Burger links, Sprache rechts === */
.menu-toggle{
  position: fixed !important;
  top: 18px !important;
  left: 18px !important;
  z-index: 9999 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.14) !important;
}

/* Text im Button sicher aus */
.menu-toggle{ font-size: 0 !important; }

/* Burger Icon: 3 Striche untereinander */
.menu-toggle .mf-burger{
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle .mf-burger span{
  display:block;
  width: 24px;
  height: 2px;
  background: currentColor;
  opacity: .9;
  border-radius: 2px;
}

/* Sprachschalter rechts fixieren */
.lang-switch{
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 9999 !important;
}

/* Drawer visibility (wir nutzen is-open in JS) */
.site-drawer{ transform: translateX(-110%); }
.site-drawer.is-open{ transform: translateX(0) !important; }
.site-overlay{ opacity: 0; pointer-events:none; }
.site-overlay.is-open{ opacity: 1; pointer-events:auto; }

/* falls noch ein Center-Menü-Element irgendwo existiert */
.menu-open, .nav-toggle, .header-center, .menu-toggle.center{ display:none !important; }


/* =========================
   HEADER CONTROLS (Burger links, Lang rechts)
   ========================= */

/* alter/zentraler Toggle (falls vorhanden) ausblenden */
.nav-toggle{ display:none !important; }
#site-nav{ display:none !important; } /* falls alte Top-Navi irgendwo reinrendert */

/* Burger Button links fixiert */
.menu-toggle{
  position: fixed !important;
  top: 16px !important;
  left: 16px !important;
  z-index: 10050 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  background: rgba(0,0,0,0.18) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* Kein Text im Burger */
.menu-toggle{ font-size: 0 !important; }
.menu-toggle *{ font-size: initial; }

/* 3 Striche untereinander */
.menu-toggle .mf-burger{
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}
.menu-toggle .mf-burger span{
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  border-radius: 2px !important;
  background: rgba(233,227,215,0.95) !important;
}

/* Sprachumschalter rechts fixiert */
.lang-switch{
  position: fixed !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 10050 !important;
}

/* Drawer open-state: JS nutzt "open" */
.site-drawer.open{
  transform: translateX(0) !important;
}
.site-drawer{
  transform: translateX(-100%) !important;
}

/* Overlay open-state */
.site-drawer-overlay.open{ display:block !important; }


/* === Burger-Menü & Drawer – finaler Stand === */

/* Burger-Button links oben */
.menu-toggle{
  position: fixed;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border: 1px solid rgba(233,227,215,0.3);
  background: radial-gradient(circle at 30% 0%, rgba(233,227,215,0.18), rgba(10,12,10,0.9));
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6), 0 12px 25px rgba(0,0,0,0.65);
  z-index: 10001;
}

/* Text im Button ausblenden */
.menu-toggle { font-size: 0; }
.menu-toggle * { font-size: initial; }

/* 3 exakt gleiche Striche */
.mf-burger{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 22px;
}
.mf-burger span{
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #E9E3D7;
}

/* Drawer (linke Seitenleiste) */
.site-drawer{
  position: fixed;
  inset: 0 auto 0 0;
  width: 260px;
  max-width: 80%;
  padding: 80px 24px 24px;
  background: rgba(7, 9, 7, 0.97);
  border-right: 1px solid rgba(233,227,215,0.18);
  transform: translateX(-100%);
  transition: transform 0.25s ease-out;
  z-index: 10000;
}
.site-drawer.is-open{
  transform: translateX(0);
}
.site-drawer nav.drawer-nav{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-drawer nav.drawer-nav a{
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: #E9E3D7;
}
.site-drawer nav.drawer-nav a:hover{
  text-decoration: underline;
}

/* Overlay für den Hintergrund */
.site-drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  z-index: 9999;
}
.site-drawer-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Sprachumschalter rechts oben fixieren */
.lang-switch{
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 10002;
}

/* Auf großen Screens Burger optional ausblenden */
@media (min-width: 960px){
  .menu-toggle{
    display: none;
  }
}
/* ========== Burger-Button: nur EIN Icon ========== */

/* Button-Layout: runder Button links oben */
.menu-toggle{
  position: fixed !important;
  top: 18px !important;
  left: 18px !important;
  z-index: 9999 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  background: transparent !important;
  font-size: 0 !important;          /* evtl. Text / Symbol ausblenden */
}

/* ALTE Icons/Text im Button entfernen */
.menu-toggle::before,
.menu-toggle::after{
  content: none !important;
  display: none !important;
}

.menu-toggle > span:not(.mf-burger){
  display: none !important;
}

/* Unser eigenes Burger-Icon (3 Striche) */
.mf-burger{
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 5px !important;
}

.mf-burger span{
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: var(--mf-gold, #e3d7a8) !important; /* gleiche Goldfarbe wie sonst */
}


/* === MENÜ: Schrift & Burger-Icon ======================= */

/* Menü-Titel im Drawer in Moonfern-Script-Schrift wie auf der Seite */
.site-drawer h2 {
  font-family: "Luthon Southard Script", "LuthonSouthardScript", cursive;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Nur unser Burger-Icon anzeigen, alles andere im Button ausblenden */
.menu-toggle > *:not(.mf-burger) {
  display: none !important;
}

/* Burger-Button selbst: Kreis wie bisher, Inhalt zentriert */
.menu-toggle {
  display: grid !important;
  place-items: center !important;
  background-image: none !important;
}

/* 3 Striche untereinander – das eigentliche Icon */
.mf-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.mf-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #f3e9cf; /* deine helle Moonfern-Farbe */
}
/* === Drawer-Titel in Moonfern-Script =================== */
.site-drawer h2,
.site-drawer .drawer-title {
  font-family: "Luthon Southard Script", "LuthonSouthardScript", cursive;
  font-weight: 400;
  letter-spacing: 0.04em;
}
/* === Burger-Button links oben ================================= */

/* Button-Layout: runder Button links oben */
.menu-toggle {
  position: fixed !important;
  top: 18px !important;
  left: 18px !important;
  z-index: 9999 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 999px !important;
  padding: 0 !important;
  display: block !important;
  background: transparent !important;
  border: 1px solid rgba(243, 233, 207, 0.35);
  box-sizing: border-box;
  font-size: 0 !important;    /* Text im Button ausblenden */
  position: fixed !important;
}

/* Alle Kinder im Button ausblenden, damit keine doppelten Icons entstehen */
.menu-toggle > * {
  display: none !important;
}

/* Unser eigenes Burger-Icon: genau 3 Linien über box-shadow */
.menu-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin-left: -11px;    /* zentrieren */
  margin-top: -1px;
  border-radius: 999px;
  background: #f3e9cf;   /* helle Moonfern-Farbe */
  box-shadow:
    0 -6px 0 #f3e9cf,    /* obere Linie */
    0  6px 0 #f3e9cf;    /* untere Linie */
}

/* Auch wenn aria-expanded = true ist, Icon immer sichtbar lassen */
.menu-toggle[aria-expanded="true"]::before {
  opacity: 1;
}
/* === Moonfern: Burger-Menü – nur 3 Linien, alte Linien verstecken === */

/* Alte Linien / Icons am Button ausschalten (falls vom ursprünglichen Theme) */
.menu-toggle::before,
.menu-toggle::after {
  content: "" !important;
  display: none !important;
  box-shadow: none !important;
}

/* Falls es noch ein altes Icon-Element im Button gibt, ebenfalls verstecken */
.menu-toggle .icon,
.menu-toggle .burger,
.menu-toggle .menu-icon {
  display: none !important;
}

/* Unser eigenes Burger-Icon */
.mf-burger {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.mf-burger span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #f7e8c9; /* dein helles Gold, kannst du bei Bedarf anpassen */
}
/* === Moonfern: Schriftstil im Drawer-Menü === */

.site-drawer h2,
.site-drawer nav a {
  font-family: "LuthonSouthardScript", "Luthon Southard Script", cursive;
  font-weight: 400;
  letter-spacing: 0.04em;
}
/* === Moonfern: Drawer-Menü nicht in ALL CAPS === */

.site-drawer h2,
.site-drawer nav a {
  text-transform: none !important;
}
/* Menü-Links im Drawer – besser lesbar */
.site-drawer .drawer-link {
  font-family: "Luthon Southard Script", "Luthon Southard", cursive;
  font-size: 1.6rem;          /* größer */
  line-height: 1.5;           /* mehr Luft zwischen Zeilen */
  text-transform: none;       /* keine Großbuchstaben erzwingen */
  letter-spacing: 0.04em;     /* leicht auseinander */
}

/* Buttons selbst etwas höher machen */
.site-drawer .drawer-link {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

/* Auf ganz kleinen Screens minimal kleiner, damit nichts bricht */
@media (max-width: 480px) {
  .site-drawer .drawer-link {
    font-size: 1.4rem;
  }
}
/* Drawer-Menü: Schrift größer + Gold */
.site-drawer .drawer-link {
  font-family: "Luthon Southard Script", "Luthon Southard", cursive;
  font-size: 2.0rem;              /* hier gerne spielen: 1.8–2.2rem */
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0.04em;
  color: #E2C18B;                 /* Goldton – ggf. durch deinen Hex-Wert ersetzen */
}

/* Falls der Text in einem inneren Span steckt: übernimmt die Farbe */
.site-drawer .drawer-link span {
  color: inherit;
}

/* Buttons etwas höher, damit die größere Schrift Luft hat */
.site-drawer .drawer-link {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

/* Auf sehr kleinen Screens minimal kleiner, damit nichts bricht */
@media (max-width: 480px) {
  .site-drawer .drawer-link {
    font-size: 1.7rem;
  }
}
/* Drawer-Menü: Moonfern-Schrift, groß und in Gold */
.site-drawer .drawer-link,
.site-drawer .drawer-link span {
  font-family: "LuthonSouthardScript", "Luthon Southard Script", cursive !important;
  font-size: 2.1rem !important;         /* ggf. 1.9–2.3rem testen */
  line-height: 1.5 !important;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
  color: #E2C18B !important;            /* dein Goldton hier einsetzen, falls anderer Hex-Wert */
}

/* Etwas mehr Innenabstand für die größere Schrift */
.site-drawer .drawer-link {
  padding-top: 1.1rem !important;
  padding-bottom: 1.1rem !important;
}
