/* ===== MarLou Global Styles ===== */
:root{
  --bg:#182230; --surface:#202C3B; --text:#F1F5F9; --muted:#A9B4C2;
  --a1:#FFD166; --a2:#FF6B9A; --a3:#2EC4B6;
  --border:rgba(255,255,255,.12); --radius:16px;
  --header-h: 72px; /* Header-Höhe als Variable */
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; color:var(--text); background:var(--bg);
  /* NEU: Globale Schriftart für Fließtext */
  font-family: var(--font-base, 'Lato', sans-serif);
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  /* NEU: Warme Hintergrundverläufe */
  background-image:
    radial-gradient(1200px 800px at 110% -10%, rgba(217, 93, 57, .12) 0%, transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(228, 197, 158, .12) 0%, transparent 60%),
    linear-gradient(180deg, #41352f 0%, #382d27 100%);
}
a{color:inherit; text-decoration:none}
.wrap{max-width:1100px; margin:0 auto; padding:0 20px}

/* ===== Header (STICKY) ===== */
header{
  position:sticky; top:0; z-index:50; backdrop-filter:saturate(1.1) blur(8px);
  background:rgba(56, 45, 39, .75);
  border-bottom:1px solid var(--border);
  height: var(--header-h);
}
.nav{height:100%; display:flex; align-items:center; justify-content:space-between}
.brand{display:flex; gap:12px; align-items:center}
.brand img{height:40px; width:auto; border-radius:10px; box-shadow:0 10px 20px -10px rgba(0,0,0,.4)}
.title{font-family: var(--font-display, 'Playfair Display', serif); font-weight:700; font-size: 1.2rem;}

.menu{display:flex; gap:10px; align-items:center}

/* ===== Hamburger + Drawer ===== */
.hamburger{
  display:none;
  flex-direction:column; gap:5px; width:44px; height:44px; padding:10px;
  align-items:center; justify-content:center; cursor:pointer;
  border:1px solid var(--border); border-radius:12px;
  background:var(--surface);
  box-shadow:0 8px 20px -12px rgba(0,0,0,.5);
}
.hamburger span{
  display:block; width:22px; height:2px; background:var(--text); border-radius:2px;
  transition:transform .25s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width:980px){ 
  .menu{display:none} 
  .hamburger{display:inline-flex;}
}

.mobile-menu{
  position:fixed; inset:0; background:rgba(0,0,0,.45);
  opacity:0; pointer-events:none; transition:opacity .2s ease; z-index:999;
}
.mobile-menu.open{opacity:1; pointer-events:auto}
.mobile-nav{
  position:absolute; top:0; right:0; height:100%; width:min(82vw,360px);
  background:var(--bg);
  border-left:1px solid var(--border); box-shadow:-10px 0 40px rgba(0,0,0,.4);
  padding:18px; display:flex; flex-direction:column; gap:10px;
  transform:translateX(100%); transition:transform .25s ease;
}
.mobile-menu.open .mobile-nav{transform:translateX(0)}
.mobile-nav-header{display:flex; justify-content:space-between; align-items:center; margin-bottom:6px}
.mobile-title{font-family:var(--font-display, 'Playfair Display', serif); font-weight:700; font-size: 1.2rem;}
.close-btn{background:none; border:1px solid var(--border); color:var(--text);
  border-radius:10px; padding:.35rem .6rem; cursor:pointer}
.mobile-nav a{
  display:block; padding:.95rem 1rem; border-radius:12px;
  border:1px solid var(--border);
  background:var(--surface);
  font-weight: 700;
}
/* Andere globale Styles bleiben hier unverändert ... */

/* ===== Footer ===== */
.site-footer{border-top:1px solid var(--border); margin-top:30px; padding:28px 20px 60px; color: var(--text-dim);}
.footgrid{max-width:1100px; margin:0 auto; display:grid; gap:18px; grid-template-columns:1.2fr 1fr 1fr 1fr}
@media(max-width:1000px){.footgrid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.footgrid{grid-template-columns:1fr}}
.footcol h4{font-family:var(--font-display); margin:.2rem 0 .5rem; color:var(--text)}
.small{font-size:.95rem}

/* ===== Modal ===== */
.modal{position:fixed; inset:0; background:rgba(0,0,0,.5); display:none; align-items:center; justify-content:center; padding:24px; z-index:1000}
.modal.open{display:flex}
.modal__dialog{width:min(900px,96vw); height:min(80vh,900px);
  background:var(--bg);
  border:1px solid var(--border); border-radius:12px; overflow:hidden; position:relative;
  box-shadow:0 25px 60px rgba(0,0,0,.5)}
.modal__header{display:flex; justify-content:space-between; padding:10px 14px; border-bottom:1px solid var(--border); background:var(--surface)}
.modal__title{font-family:var(--font-display); font-weight:700}
.modal__close{background:none; border:1px solid var(--border); color:var(--text); border-radius:8px; padding:.35rem .6rem; cursor:pointer}
.modal__body{height:100%; display:grid; grid-template-rows:auto 1fr}
.modal__content{width:100%; height:100%; border:0}