:root{
  /* Holz / Sand Theme */
  --bg:#171512;          /* warmes fast-schwarz */
  --panel:#211E19;       /* dunkles Holzbraun */
  --panel2:#1B1814;      /* noch dunkler */
  --line:#2E2A23;        /* warme Linie */
  --text:#F4F0E8;        /* warmes Off-White */
  --muted:#D6CCBE;       /* sandig */
  --muted2:#B7AB9A;      /* dunkler sand */
  --accent:#D9B98D;      /* Sand/Beige Akzent */
  --radius:18px;
  --shadow: 0 14px 40px rgba(0,0,0,.40);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    linear-gradient(180deg, #EEDFCC 0%, #E2CFB6 100%);
  color: var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{width:min(1100px,92vw);margin:0 auto}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(28,31,36,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 0;
  gap: 14px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 220px}
.brand img{height:150px; width:auto}
.brand__name{font-weight:850; letter-spacing:.2px; font-size:23px; color:var(--text)}
.nav{
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:flex-end;
}
.nav a{
  padding:10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  transition: transform .15s ease, border-color .15s ease, color .15s ease, background .15s ease;
}
.nav a:hover{
  transform: translateY(-1px);
  border-color: #3A414B;
  color: var(--text);
}
.nav a.is-active{
  border-color: rgba(217,185,141,.55);
  background: rgba(217,185,141,.10);
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 750;
  letter-spacing:.2px;
  transition:.15s ease;
}
.btn:hover{transform: translateY(-1px); border-color:#3A414B}
.btn--accent{
  border-color: rgba(255,176,32,.45);
  background: rgba(255,176,32,.10);
}

/* Page intro */
.page{
  padding: 28px 0 0;
}
.page__top{
  display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
  margin: 10px 0 20px;
}
/* Headline/Lead auf Sand-Hintergrund lesbar machen */
.h1{
  color:#1E1A14; /* dunkles Braun */
}

.lead{
  color:#4B3F33; /* warmes dunkles Grau/Braun */
  opacity: 0.92;
}

/* Index grid */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0 20px;
}
.tile{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  min-height: clamp(190px, 34vh, 320px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel2);
  cursor:pointer;
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease;
}
.tile:hover{transform: translateY(-2px); border-color:#3A414B}
.tile__img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.03);
}
.tile__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.62));
}
.tile__content{
  position:relative;
  height:100%;
  padding: 18px 18px 16px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:10px;
}
.tile__title{
  margin:0;
  font-size: 18px;
  letter-spacing:.2px;
}
.tile__list{
  margin:0;
  padding:0;
  list-style:none;
  color: var(--muted);
  font-weight: 600;
  display:grid;
  gap:4px;
}
.tile__cta{
  display:inline-flex;
  gap:8px;
  align-items:center;
  color: rgba(255,255,255,.92);
  font-weight: 750;
  opacity:.95;
  margin-top: 2px;
}

/* Callout below grid */
.callout{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(35,40,48,.6);
  box-shadow: var(--shadow);
  padding: 18px;
  margin: 18px 0 26px;
}
.callout__title{margin:0 0 6px; font-size:18px}
.callout__text{margin:0; color:var(--muted); max-width: 80ch}

/* Subpages hero */
.hero{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: clamp(320px, 62vh, 640px);
  margin: 18px 0 24px;

  display:flex;
  align-items:center;      /* vertikal Mitte */
  justify-content:center;  /* horizontal Mitte */
}
.hero__bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.hero__shade{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 400px at 20% 35%, rgba(0,0,0,.25), rgba(0,0,0,.65)),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.70));
}

.hero__box{
  position:relative;
  width: min(820px, 92%);
  padding: clamp(22px, 3vw, 40px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(30,25,18,.78);
  backdrop-filter: blur(12px);
  text-align:center;   /* GANZ wichtig */
    margin: 0;
}

.hero__kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,176,32,.35);
  background: rgba(255,176,32,.08);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 13px;
  letter-spacing:.2px;
}
.hero__h2{
  margin: 10px 0 8px;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height:1.15;
}
.hero__p{
  margin:0 auto;
  color: var(--muted);
  max-width: 100%;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height:1.7;
}
.hero__cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-items:center;   /* DAS ist der Schlüssel */
}
.hero__card{
  width:100%;
  max-width:360px;
  text-align:center;
}
.hero__card h3{margin:0 0 6px; font-size:15px}
.hero__card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.hero__card li{
  margin:8px 0;
}
.hero__card li::before{
  content:"• ";
  color:#D9B98D;
}

/* Footer + Legal sections */
/* === Minimal Footer (nur kleiner Legal-Text) === */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0 26px;
  text-align: center;
}

/* 3x kleiner / sehr dezent */
.footer-legal{
  font-size: 9px;
  line-height: 1.55;
  color: var(--muted2);
  opacity: .9;
  max-width: 820px;
  margin: 0 auto;
}

.footer-legal .title{
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--muted);
  margin: 10px 0 4px;
  font-size: 10px;
}

.footer-legal a{
  color: var(--muted2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 860px){
  .brand{min-width:unset}
  .page__top{flex-direction:column; align-items:flex-start}
}
@media (max-width: 720px){
  .grid{grid-template-columns: 1fr}
  .hero__cols{grid-template-columns: 1fr}
  .nav{justify-content:flex-start}
}