:root{
  --bg1:#0f1114;
  --bg2:#1a1411;
  --text:#f5f3ef;
  --muted:#d6d0c8;
  --card:rgba(20,24,29,.70);
  --stroke:rgba(255,255,255,.12);
  --accent:#d2a86a;
  --accent2:#a46a43;
  --shadow:0 18px 60px rgba(0,0,0,.45);
}

/* =========================
   RESET & BASIS
   ========================= */
*{box-sizing:border-box}
html,body{margin:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(210,168,106,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(164,106,67,.14), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

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

.container{
  width:min(1200px, 92%);
  margin-inline:auto;
}

/* =========================
   TOP NAVIGATION
   ========================= */
.topnav{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:10;
  padding:18px 0;
}

.topnav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.topnav__logo img{
  width:46px;
  height:auto;
  opacity:.9;
}

.topnav__links{
  display:flex;
  gap:28px;
}

.topnav__links a{
  font-weight:600;
  letter-spacing:.05em;
  opacity:.9;
}

.topnav__links a:hover{
  color:var(--accent);
  opacity:1;
}

/* =========================
   HERO
   ========================= */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero picture{
  position:absolute;
  inset:0;
}

.hero__img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 25%;
  display:block;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.45),
    rgba(0,0,0,.78)
  );
}

.hero__content{
  position:relative;
  z-index:2;
  width:100%;
  padding:60px 0 80px;
}

.hero__scroll{
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  opacity: .7;
}

.hero__brand {
  text-align: center;
  margin: 0 14px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,243,239,.78);
  text-shadow: 0 8px 24px rgba(0,0,0,.45);
}

.hero__h1 {
  text-align: center;
  margin: 0 auto 20px;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
  text-shadow: 0 12px 35px rgba(0,0,0,.6);
  max-width: 12ch;
}

.hero__sub {
  text-align: center;
  max-width: 42ch;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(245,243,239,.9);
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
}

/* =========================
   CHOICE CARDS
   ========================= */
.choice-grid{
  margin:80px auto 0;
  display:grid;
  gap:28px;
}

.choices__intro{
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 46px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
}

.choices__intro strong{
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

@media(min-width:900px){
  .choice-grid{
    grid-template-columns:1fr 1fr;
  }
}

.choice{
  background: linear-gradient(180deg, rgba(12,16,22,.92), rgba(10,12,18,.96));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.38);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;

  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(6px);
}

.choice:hover{
  transform: translateY(-8px);
  border-color: rgba(210,168,106,.45);
  box-shadow: 0 28px 90px rgba(0,0,0,.52);
}

.choice__head{
  padding: 22px 18px 14px;
  min-height: 160px; /* sorgt für gleiche Höhe */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.choice__eyebrow{
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  text-align: center;
  opacity: .85;
}

.choice__title{
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
}

.choice__tag{
  text-align: center;
}

.choice__tag{
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 40ch;
  margin: 0 auto;
  min-height: 96px;
}

.choice__media{
  height: 260px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.choice__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.choice:hover .choice__media img{
  transform: scale(1.04);
}

.choice__media img.choice__img--speaker{
  object-position:55% 10%;
}

.choice__trust{
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-align: center;
  margin: 12px 0 0;
}

.choice__foot{
  padding: 22px 20px 26px;
  text-align: center;
  margin-top: auto;
}

/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:16px;
  font-weight:700;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color:#1a1a1a;
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover,
.btn--outline:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
  filter: brightness(1.03);
}

.btn--outline{
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  border: 1px solid rgba(255,255,255,.18);
  color: #1a1a1a;
}

/* Buttons in Choice-Karten gleich breit */
.choice .btn,
.choice .btn--outline{
  min-width:240px;
}

/* =========================
   SEO TEXT
   ========================= */
.seo-text{
  padding:40px 0 10px;
}

.seo-text p{
  max-width:72ch;
  margin:0 auto 16px;
  color:var(--muted);
  line-height:1.65;
  text-align:center;
}

/* =========================
   CONTACT CTA
   ========================= */
.contact-cta{
  padding:90px 0 70px;
  text-align:center;
}

.contact-cta__inner{
  max-width:900px;
}

.contact-cta__title{
  margin:0 0 12px;
  font-size:clamp(26px,3vw,36px);
  letter-spacing:.04em;
}

.contact-cta__subtitle{
  margin:0 0 40px;
  color:var(--muted);
  font-size:18px;
}

.contact-cta__buttons{
  display:flex;
  gap:22px;
  justify-content:center;
  flex-wrap:wrap;
}

.contact-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 22px;
  border-radius:18px;
  font-weight:700;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#1a1a1a;
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease;
}

.contact-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 70px rgba(0,0,0,.55);
}

.contact-btn--outline{
  background:transparent;
  color:var(--text);
  border:1px solid var(--accent);
}

.contact-btn--whatsapp{
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#0b1b12;
}
.contact-cta__trust{
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

/* =========================
   BOOK
   ========================= */
.book{
  padding:90px 0;
}

.book__grid{
  display:grid;
  gap:40px;
}

@media(min-width:900px){
  .book__grid{
    grid-template-columns:1fr 1fr;
    align-items:center;
  }
}

.book__media img{
  width:100%;
  border-radius:20px;
  box-shadow:var(--shadow);
}

/* =========================
   FOOTER
   ========================= */
.footer{
  border-top:1px solid rgba(255,255,255,.1);
  padding:30px 0;
}

.footer__inner{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  font-size:14px;
  color:rgba(255,255,255,.7);
}

.footer__inner a:hover{
  color:var(--accent);
}


/* =========================
   MOBILE HERO FIX
   ========================= */
@media(max-width:768px){
  .hero{
    min-height: 100vh;
    align-items: flex-start;
  }

  .hero__content{
    padding: 90px 0 90px;
  }

  .hero__img{
    object-position: 50% 40%;
  }

  .hero__brand{
    font-size: 12px;
    letter-spacing: .10em;
    margin: 0 12px 14px;
  }

  .hero__h1{
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0;
    max-width: 12ch;
  }

  .hero__sub{
    max-width: 30ch;
    font-size: 17px;
    line-height: 1.5;
    padding: 0 12px;
  }

  .topnav{
    padding: 14px 0;
  }

  .topnav__logo img{
    width: 40px;
  }

  .choice__head{
    padding: 22px 18px 14px;
  }

  .choice__title{
    font-size: 32px;
    line-height: 1.2;
  }

  .choice__tag{
    font-size: 17px;
  }

  .book__actions{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    text-align: center;
  }

  .book__actions a{
    display: flex;
    justify-content: center;
    width: 100%;
    text-decoration: none;
  }

  .book__actions .btn,
  .book__actions .btn--outline{
    -webkit-appearance: none;
    appearance: none;
  }
}

/* =========================
   HERO LOGO
   ========================= */
.hero__logo-link{
  position:absolute;
  top:28px;
  left:4%;
  z-index:3;
  display:inline-block;
}

.hero__logo{
  width:90px;
  height:auto;
  display:block;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.45));
}

@media (max-width:768px){
  .hero__logo-link{
    top:18px;
    left:20px;
  }

  .hero__logo{
    width:64px;
  }
}

.hero__cta-text{
  margin: 26px auto 0;
  font-size: 18px;
  color: rgba(245,243,239,.95);
  font-weight: 600;
  line-height: 1.5;

  text-align: center;
  max-width: 640px;

  letter-spacing: 0.02em;
}
/* =========================
   HERO SCROLL (Premium)
   ========================= */

html{
  scroll-behavior: smooth;
}

.hero__scroll{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  margin:32px auto 0;
  text-decoration:none;
  color:rgba(245,243,239,.9);

  opacity:.85;
  transition:opacity .3s ease, transform .3s ease;
}

.hero__scroll:hover{
  opacity:1;
  transform:translateY(4px);
}

.hero__scroll-text{
  font-size:14px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hero__scroll-arrow{
  margin-top:6px;
  font-size:18px;

  animation: scrollBounce 1.6s infinite;
}

/* Animation */
@keyframes scrollBounce{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(6px); }
}

/* =========================
   FAQ (Landingpage)
   ========================= */

.faq{
  padding: 80px 0;
}

.faq__title{
  text-align:center;
  margin-bottom:40px;
  font-size: clamp(26px,3vw,34px);
}

.faq__item{
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}

.faq__item h3{
  margin-bottom:8px;
  font-size:20px;
}

.faq__item p{
  color: var(--muted);
  line-height:1.6;
}