:root{
  --bg:#070809;
  --panel: rgba(16,18,20,.62);
  --panel2: rgba(16,18,20,.82);
  --text:#ece6d8;
  --muted:#bdb4a1;
  --cream:#f4efdf;
  --gold:#c9a64a;
  --green:#7bb23a;

  --border: rgba(255,255,255,.10);
  --border2: rgba(201,166,74,.25);
  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --radius: 20px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background: radial-gradient(1200px 700px at 15% -10%, rgba(123,178,58,.18), transparent 60%),
              radial-gradient(1100px 600px at 85% 0%, rgba(201,166,74,.14), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

.wrap{
  width: min(1150px, calc(100% - 40px));
  margin: 0 auto;
}

.grain{
  position: fixed;
  inset:0;
  pointer-events:none;
  z-index: 2;
  opacity: .10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(7,8,9,.62);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.brand__logo{
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
  object-fit: contain;
}
.brand__name{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand__tag{
  color: var(--muted);
  font-size: 12.5px;
  margin-top: -2px;
}
/* Prevent brand text clipping / truncation */
.brand{
  min-width: 0;              /* wichtig für Flexbox */
}
.brand__text{
  min-width: 0;              /* erlaubt Umbruch statt Overflow */
}
.brand__name{
  line-height: 1.15;
  white-space: normal;       /* darf umbrechen */
  word-break: break-word;    /* falls nötig */
}

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav a{
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  opacity: .92;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  opacity: 1;
}
.nav__pill{
  border: 1px solid var(--border2);
  background: rgba(201,166,74,.10);
}

.menuBtn{
  display:none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--text);
}
.menuBtn__bars{
  width: 18px; height: 12px;
  display:inline-block;
  position:relative;
}
.menuBtn__bars::before,
.menuBtn__bars::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:2px;
  border-radius: 99px;
  background: var(--text);
  opacity:.9;
}
.menuBtn__bars::before{ top:0; }
.menuBtn__bars::after{ bottom:0; }

/* HERO */
.hero{
  position: relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  isolation: isolate;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(7,8,9,.45), rgba(7,8,9,.92)),
    url("images/hero.png");
  background-size: cover;
  background-position: center;
  transform: translateY(var(--parallax, 0px));
  will-change: transform;
  z-index:-2;
  filter: saturate(1.08) contrast(1.06);
}
.hero__overlay{
  position:absolute; inset:0;
  background: radial-gradient(1000px 600px at 20% 25%, rgba(123,178,58,.20), transparent 55%),
              radial-gradient(900px 520px at 80% 15%, rgba(201,166,74,.18), transparent 58%);
  z-index:-1;
}

.hero__inner{
  padding: 64px 0 56px;
  position: relative;
  z-index: 1;
}

.heroCard{
  width: min(760px, 100%);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(16,18,20,.72), rgba(16,18,20,.52));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 26px;
  position: relative;
  overflow:hidden;
}
.heroCard::after{
  content:"";
  position:absolute; inset:-2px;
  border-radius: inherit;
  background: radial-gradient(500px 220px at 20% 0%, rgba(201,166,74,.20), transparent 60%),
              radial-gradient(520px 260px at 85% 30%, rgba(123,178,58,.18), transparent 60%);
  pointer-events:none;
  mix-blend-mode: screen;
  opacity:.9;
}

.heroCard__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.heroCard__logo{
  width: 86px;
  height: 86px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 46px rgba(0,0,0,.55);
  object-fit: contain;
}
.heroCard__stamp{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.heroCard__stamp span{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 7px 10px;
  border-radius: 999px;
}

.heroCard__title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 8.5vw, 68px);
  margin: 4px 0 6px;
  letter-spacing: .2px;
  line-height: 1.05;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.heroCard__slogan{
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--cream);
}
.gold{ color: var(--gold); font-weight: 800; }

.heroCard__copy{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 62ch;
}

.heroCard__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 13.5px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transition: transform .12s ease, background .12s ease, border-color .12s ease, filter .12s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn--primary{
  border-color: rgba(0,0,0,.25);
  color: #0a0b0c;
  background: linear-gradient(135deg, rgba(201,166,74,.96), rgba(123,178,58,.86));
}
.btn--ghost{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
}

.heroCard__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px;
}
.stat__k{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.stat__v{
  font-size: 13.5px;
  font-weight: 900;
  color: var(--cream);
  margin-top: 2px;
}

.scrollHint{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(244,239,223,.85);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: 12px;
}
.scrollHint__dot{
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(201,166,74,.45);
  background: rgba(201,166,74,.10);
  position: relative;
  overflow:hidden;
}
.scrollHint__dot::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: var(--cream);
  transform: translateX(-50%);
  animation: dot 1.3s ease-in-out infinite;
}
@keyframes dot{
  0%{ transform: translate(-50%, 0); opacity:.25; }
  50%{ transform: translate(-50%, 12px); opacity: 1; }
  100%{ transform: translate(-50%, 0); opacity:.25; }
}

/* SCENES WITH BACKGROUNDS */
.scene{
  position: relative;
  padding: 84px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  isolation: isolate;
}
.scene__inner{ position: relative; z-index: 1; }
.scene__shade{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(7,8,9,.70), rgba(7,8,9,.92));
  z-index: -1;
}
.scene::before{
  content:"";
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.05);
  transform: translateY(calc(var(--parallax, 0px) * .25));
  will-change: transform;
  z-index:-2;
}
.scene--bg1::before{ background-image: url("images/gallery-1.png"); }
.scene--bg2::before{ background-image: url("images/gallery-2.png"); }
.scene--bg3::before{ background-image: url("images/gallery-3.png"); }
.scene--bg4::before{ background-image: url("images/gallery-4.png"); }

.kicker{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}
.kicker__line{
  width: 46px;
  height: 1px;
  background: rgba(201,166,74,.7);
}
.kicker__text{
  font-weight: 900;
  color: rgba(244,239,223,.9);
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 12px;
}

.sectionHead{
  margin: 10px 0 20px;
}
h2{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0 0 10px;
}
.lead{
  margin: 0 0 10px;
  color: rgba(244,239,223,.92);
  font-size: 16.5px;
}
.muted{ color: var(--muted); }

.storyGrid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 18px;
  align-items:start;
}
.storyLeft p{ color: var(--muted); margin-top: 10px; }

.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.chip{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12.5px;
  color: var(--cream);
}

.glassCard{
  background: linear-gradient(180deg, rgba(16,18,20,.78), rgba(16,18,20,.58));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(12px);
}
.glassCard h3{
  margin: 0 0 10px;
  font-size: 18px;
}
.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.divider{
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 14px 0;
}
.quote{
  display:grid;
  gap: 4px;
}
.quote__mark{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 44px;
  color: rgba(201,166,74,.7);
  line-height: 1;
}
.quote__text{
  font-weight: 900;
  font-size: 18px;
  color: var(--cream);
}
.quote__sub{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(16,18,20,.78), rgba(16,18,20,.56));
  box-shadow: var(--shadow);
  padding: 16px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(320px 180px at 20% 0%, rgba(123,178,58,.16), transparent 60%),
              radial-gradient(360px 200px at 85% 30%, rgba(201,166,74,.14), transparent 65%);
  opacity:.9;
  pointer-events:none;
}
.card > *{ position: relative; z-index: 1; }
.card__top{ display:flex; gap: 8px; margin-bottom: 10px; }
.badge{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(123,178,58,.35);
  background: rgba(123,178,58,.10);
  color: var(--cream);
}
.badge--gold{
  border-color: rgba(201,166,74,.40);
  background: rgba(201,166,74,.12);
}
.card h3{ margin: 0 0 8px; font-size: 18px; }
.card p{ margin: 0 0 12px; color: var(--muted); }
.card__meta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(244,239,223,.9);
  font-weight: 800;
  font-size: 12.5px;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.shot{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  overflow:hidden;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.shot img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .22s ease, filter .22s ease;
  filter: saturate(1.05) contrast(1.02);
}
.shot:hover img{ transform: scale(1.06); }

.ctaBar{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,18,20,.68);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.ctaBar__title{ font-weight: 1000; color: var(--cream); }
.ctaBar__sub{ color: var(--muted); font-size: 13px; }

/* CONTACT */
.contactGrid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 18px;
  align-items:start;
}
.contactPanel{
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,18,20,.68);
  backdrop-filter: blur(12px);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.row{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.row:first-child{ border-top: 0; }
.row__k{ color: var(--muted); font-weight: 800; }
.row__v{ font-weight: 900; color: var(--cream); }
.row__v a:hover{ text-decoration: underline; }

.row__v--social{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,239,223,.92);
  opacity: .9;
}

/* DISCLAIMER */
.disclaimer{
  padding: 84px 0;
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(123,178,58,.14), transparent 55%),
    radial-gradient(900px 520px at 85% 20%, rgba(201,166,74,.12), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
}
.disclaimerBox{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(201,166,74,.28);
  background: rgba(16,18,20,.76);
  box-shadow: var(--shadow);
  padding: 20px;
  backdrop-filter: blur(12px);
}
.disclaimerBox__top{
  display:flex;
  gap: 14px;
  align-items:center;
  margin-bottom: 10px;
}
.disclaimerBox__logo{
  width: 66px; height: 66px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
}
.disclaimerBox h2{ margin: 0 0 6px; }
.disclaimerBox__footer{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}
.footerMark{
  font-weight: 1000;
  color: rgba(244,239,223,.86);
  letter-spacing: .2px;
}

/* LEGAL (Privacy & Imprint) */
.legal{
  padding: 84px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(123,178,58,.10), transparent 55%),
    radial-gradient(900px 520px at 85% 20%, rgba(201,166,74,.10), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
}
.legalBox{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,18,20,.76);
  box-shadow: var(--shadow);
  padding: 20px;
  backdrop-filter: blur(12px);
}
.legalBox h3{
  margin: 16px 0 6px;
  font-size: 16px;
}
.legalBox p{ margin: 0 0 10px; }
.legalBox a:hover{ text-decoration: underline; }

.legalGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}
.legalItem{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px 14px;
}
.legalKey{
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.legalVal{
  margin-top: 6px;
  color: rgba(244,239,223,.92);
  font-weight: 650;
  font-size: 13.5px;
}

/* FOOTER */
.footer{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  background: rgba(7,8,9,.78);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}
.footer__left{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__logo{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
}
.footer__title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 800;
}
.footer__sub{
  color: var(--muted);
  font-size: 12.5px;
  margin-top: -2px;
}
.footer__right{
  display:flex;
  align-items:center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  flex-wrap: wrap;          /* <<< wichtig: Umbruch erlaubt */
  max-width: 520px;         /* verhindert seitliches Drücken */
}
.footer__right a:hover{ color: var(--cream); }
.dot{ opacity:.45; }

/* LIGHTBOX */
.lightbox{
  position: fixed;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.78);
  z-index: 999;
  padding: 26px;
}
.lightbox.open{ display:grid; }
.lightbox__img{
  max-width: min(1050px, 96vw);
  max-height: 84vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position:absolute;
  top: 14px;
  right: 16px;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
}

/* REVEAL ANIMATIONS */
.reveal{
  opacity: 0;
  transform: translateY(14px) scale(.995);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .brand__text{
  display:block;          /* Text bleibt sichtbar */
  max-width: 56vw;        /* verhindert “über den Rand laufen” */
}
.footer__inner{
  flex-direction: column;
  align-items: flex-start;
}
.footer__right{
  max-width: 100%;
  gap: 8px;
}
.dot{ display:none; }  /* optional: macht’s cleaner auf klein */
.brand__name{
  font-size: 16px;        /* etwas kleiner auf mobile */
}
.brand__tag{
  font-size: 11.5px;
}


  .menuBtn{ display:inline-flex; }
  .nav{
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display:none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(16,18,20,.96);
    box-shadow: var(--shadow);
  }
  .nav.open{ display:flex; }
  .nav a{ width: 100%; }

  .heroCard__stats{ grid-template-columns: 1fr; }
  .storyGrid, .contactGrid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .ctaBar{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px){
  .wrap{ width: min(1150px, calc(100% - 28px)); }
  .gallery{ grid-template-columns: 1fr; }
  .heroCard{ padding: 18px; }
  .heroCard__logo{ width: 74px; height: 74px; }
}
