:root{
  --bg0:#030303;
  --bg1:#0b0b0b;

  --text:#f4efe4;
  --muted:#b9ad94;

  --line:rgba(198,161,91,.18);

  --accent:#c6a15b;
  --accent2:#8f6b32;

  --shadow1:0 12px 35px rgba(0,0,0,.55);
  --shadow2:0 6px 18px rgba(0,0,0,.38);

  --radius:16px;
  --radius2:22px;

  --wrap:1100px;
}

*{box-sizing:border-box;}
html,body{height:100%;}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, #1c1710 0%, transparent 60%),
    radial-gradient(1000px 500px at 90% 10%, #131313 0%, transparent 55%),
    linear-gradient(180deg,var(--bg1),var(--bg0));
}

h1,h2,h3{
  margin:0 0 12px 0;
  font-weight:600;
  letter-spacing:.2px;
}

p{
  margin:0 0 14px 0;
  line-height:1.65;
}

.wrap{
  width:100%;
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 20px;
}

.section{
  padding:70px 0;
}

.section.alt{
  background:rgba(255,255,255,.018);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}


/* HEADER */

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  padding:14px 20px;
  backdrop-filter:blur(10px);
  background:rgba(3,3,3,.78);
  border-bottom:1px solid var(--line);
}

.brand{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  white-space:nowrap;
  color:var(--text);
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 0 14px rgba(198,161,91,.55);
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  font-size:14px;
  color:var(--muted);
}

.lang{
  padding:6px 10px;
  border-radius:10px;
  border:1px solid var(--line);
  text-decoration:none;
  color:var(--text);
  font-size:13px;
  background:rgba(255,255,255,.035);
  transition:all .25s ease;
}

.lang:hover{
  background:rgba(198,161,91,.12);
  border-color:rgba(198,161,91,.42);
}

.lang strong{
  font-weight:700;
}


/* HERO */

.hero{
  position:relative;
  display:block;
  min-height:0;
}

.heroBg{
  position:relative;
  inset:auto;
  width:100%;
  height:clamp(460px, 44vw, 680px);
  background-size:cover;
  background-position:center center;
  filter:brightness(.94) contrast(1.03) saturate(1.03);
}

.hero::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:clamp(460px, 44vw, 680px);
  background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.14));
  z-index:1;
  pointer-events:none;
}

.heroInner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--wrap);
  margin:0 auto;
  padding:56px 20px 70px;
  text-align:center;
}

.kicker{
  color:var(--accent);
  font-size:14px;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  margin-bottom:10px;
  text-shadow:none;
}

h1{
  font-size:44px;
  line-height:1.15;
  margin-bottom:20px;
  color:#f7f0df;
}

.sub{
  max-width:900px;
  margin:0 auto 30px;
  color:var(--muted);
  font-size:17px;
  font-weight:400;
  line-height:1.72;
  text-shadow:none;
}


/* STATS */

.stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:30px;
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
  justify-items:center;
}

.stat{
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.022));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  width:100%;
  max-width:240px;
  box-shadow:var(--shadow2);
}

.statNum{
  font-size:26px;
  font-weight:700;
  margin-bottom:4px;
  color:#d9bb78;
  text-shadow:none;
}

.statLbl{
  font-size:13px;
  font-weight:400;
  color:var(--muted);
  text-shadow:none;
}

.stat.isCircle{
  border-radius:50%;
  width:140px;
  height:140px;
  padding:0;
}


/* GRID */

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}

.card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  padding:18px;
  box-shadow:var(--shadow2);
}


/* PHOTO GRID */

.photoGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.gallery10{
  grid-template-columns:repeat(5,1fr);
}

figure{
  margin:0;
  overflow:hidden;
  border-radius:14px;
  position:relative;
  z-index:1;
}

figure img,
figure video{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
  border-radius:14px;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    filter .35s ease,
    opacity .35s ease;
}

.photoGrid:hover figure img,
.photoGrid:hover figure video{
  filter:brightness(.52) blur(1px);
  opacity:.72;
}

figure:hover{
  z-index:30;
}

figure:hover img,
figure:hover video{
  transform:scale(1.14);
  box-shadow:0 22px 52px rgba(0,0,0,.58);
  filter:brightness(1.02) blur(0) !important;
  opacity:1 !important;
}


/* PRESS */

.pressGrid{
  align-items:stretch;
}

.pressCard{
  display:flex;
  flex-direction:column;
  min-height:460px;
}

.pdfPreview{
  width:100%;
  height:340px;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:rgba(255,255,255,.025);
}


/* TEXT */

.muted{
  color:var(--muted);
}

.tiny{
  font-size:12px;
}

.pillRow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.035);
  color:#e8dcc4;
}


/* TIMELINE */

.timeline{
  display:grid;
  gap:14px;
  margin-top:20px;
}

.stop{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
}

.stopHead{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:6px;
}

.tag{
  font-size:11px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(198,161,91,.14);
  border:1px solid rgba(198,161,91,.34);
  color:#e1c98d;
}

.list{
  padding-left:18px;
  margin:0;
}

.note{
  background:linear-gradient(
    180deg,
    rgba(198,161,91,.13),
    rgba(255,255,255,.025)
  );
}


/* CONTACT */

.contactBox{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:14px;
}

.contactStack{
  flex-direction:column;
  align-items:flex-start;
}

.contact p.tiny{
  margin-top:20px;
}


/* BUTTON */

.btn{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.045);
  text-decoration:none;
  color:var(--text);
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:all .25s ease;
}

.btn:hover{
  background:rgba(198,161,91,.12);
  border-color:rgba(198,161,91,.42);
}

.btn.primary{
  background:linear-gradient(135deg,#c6a15b,#8f6b32);
  border:none;
  color:#111;
  font-weight:600;
}

.btn.primary:hover{
  filter:brightness(1.08);
}


/* FOOTER */

.footer{
  border-top:1px solid var(--line);
  padding:30px 0;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

.footerInner{
  display:flex;
  justify-content:center;
}


/* HEADER FIX */

@media (max-width:1100px){

  .topbar{
    justify-content:space-between;
    flex-wrap:wrap;
    gap:8px;
  }

  .brand{
    position:static;
    transform:none;
    order:1;
  }

  .nav{
    order:2;
    width:100%;
    justify-content:flex-start;
  }
}


/* RESPONSIVE */

@media (max-width:1000px){

  .gallery10{
    grid-template-columns:repeat(3,1fr);
  }

  .stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:620px;
  }

  h1{
    font-size:34px;
  }
}

@media (max-width:700px){

  .grid2{
    grid-template-columns:1fr;
  }

  .photoGrid{
    grid-template-columns:1fr 1fr;
  }

  .gallery10{
    grid-template-columns:1fr 1fr;
  }

  figure img,
  figure video{
    height:180px;
  }

  h1{
    font-size:28px;
  }

  .stats{
    max-width:520px;
  }

  figure:hover img,
  figure:hover video{
    transform:scale(1.08);
  }

  .photoGrid:hover figure img,
  .photoGrid:hover figure video{
    filter:brightness(.62) blur(.7px);
    opacity:.82;
  }
}

@media (max-width:480px){

  .photoGrid{
    grid-template-columns:1fr;
  }

  .gallery10{
    grid-template-columns:1fr;
  }

  figure img,
  figure video{
    height:220px;
  }

  .stats{
    grid-template-columns:1fr;
    max-width:360px;
  }

  .stat.isCircle{
    width:150px;
    height:150px;
  }

  figure:hover img,
  figure:hover video{
    transform:scale(1.05);
  }

  .photoGrid:hover figure img,
  .photoGrid:hover figure video{
    filter:brightness(.72) blur(.4px);
    opacity:.9;
  }
}


/* FAQ / QUICK ANSWERS */

.rallyFaq{
  border-top:1px solid var(--line);
  background:
    radial-gradient(900px 380px at 15% 0%, rgba(198,161,91,.11), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.016), rgba(255,255,255,.028));
}

.rallyFaq h2{
  font-size:clamp(2rem, 4vw, 3.1rem);
  color:#f7f0df;
  margin-bottom:12px;
}

.faqIntro{
  max-width:760px;
  margin-bottom:28px;
}

.faqAccordion{
  display:grid;
  gap:14px;
}

.faqItem{
  border:1px solid rgba(198,161,91,.20);
  border-radius:22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(198,161,91,.045));
  box-shadow:var(--shadow2);
  overflow:hidden;
  transition:
    border-color .25s ease,
    background .25s ease,
    transform .25s ease;
}

.faqItem:hover{
  border-color:rgba(198,161,91,.38);
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(198,161,91,.07));
}

.faqItem[open]{
  border-color:rgba(198,161,91,.46);
}

.faqItem summary{
  list-style:none;
  cursor:pointer;
  padding:20px 24px;
  color:#f4efe4;
  font-weight:700;
  font-size:1.08rem;
  display:flex;
  align-items:center;
  gap:12px;
  user-select:none;
}

.faqItem summary::-webkit-details-marker{
  display:none;
}

.faqItem summary::before{
  content:"▸";
  color:#d9bb78;
  font-size:1rem;
  line-height:1;
  transition:transform .2s ease;
  flex:0 0 auto;
}

.faqItem[open] summary::before{
  transform:rotate(90deg);
}

.faqAnswer{
  padding:0 24px 22px 50px;
}

.faqAnswer p{
  margin:0;
  color:var(--muted);
  line-height:1.68;
}

#fragen-zur-rallye{
  scroll-margin-top:90px;
}

@media (max-width:700px){

  .faqItem summary{
    padding:18px 18px;
    font-size:1rem;
  }

  .faqAnswer{
    padding:0 18px 20px 44px;
  }
}


/* BOOK SECTION */

.bookCard .muted + .muted{
  margin-top:4px;
}

.bookActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 6px;
}

.btn.soft{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(198,161,91,.26);
  color:#e8dcc4;
  cursor:pointer;
}

.btn.soft:hover{
  background:rgba(198,161,91,.12);
  border-color:rgba(198,161,91,.42);
  transform:translateY(-1px);
  filter:none;
}

@media (max-width:480px){
  .bookActions .btn{
    width:100%;
  }
}


/* Video-Kacheln in der Fotogalerie: gleiche Größe wie Fotos */
.gallery10 .videoLink{
  display:block;
  width:100%;
  height:200px;
  border-radius:14px;
  overflow:hidden;
  background:#0b0f14;
}

.gallery10 .videoLink video{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

@media (max-width:700px){
  .gallery10 .videoLink,
  .gallery10 .videoLink video{
    height:180px;
  }
}

@media (max-width:480px){
  .gallery10 .videoLink,
  .gallery10 .videoLink video{
    height:220px;
  }
}


/* Einheitliche Ergänzungen für Deutsch, Englisch und Chinesisch */
html[lang="zh-CN"] body{
  font-family:"PingFang SC","Noto Sans SC","Microsoft YaHei",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.brand a{
  color:inherit;
  text-decoration:none;
}

.lang[aria-current="page"]{
  background:rgba(198,161,91,.16);
  border-color:rgba(198,161,91,.55);
}

a:focus-visible{
  outline:3px solid #e2bd70;
  outline-offset:3px;
}

.footerInner{
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.footerNav{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.footerNav a{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px solid transparent;
}

.footerNav a:hover{
  color:var(--text);
  border-bottom-color:var(--accent);
}

.heroPhoto{
  background-position:center center;
}

@media (max-width:700px){
  .footerInner{
    justify-content:center;
    text-align:center;
  }
  .hero{
    min-height:0;
  }
  .heroBg,
  .hero::after{
    height:clamp(340px, 72vw, 500px);
  }
  .heroInner{
    padding:42px 20px 56px;
  }
  .heroPhoto{
    background-position:center center;
  }
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}
