:root{
  --bg: #0b0b0b;

  --text: rgba(255,255,255,.92);
  --text-soft: rgba(255,255,255,.78);

  --gold: #c8b08a;
  --gold-soft: rgba(200,176,138,.55);
  --line: rgba(200,176,138,.35);

  --serif: "Cinzel", ui-serif, Georgia, "Times New Roman", serif;
  --serif-soft: "Cormorant Garamond", ui-serif, Georgia, serif;

  --container: 1200px;

  /* unified side offset so both sides match perfectly */
  --side-offset: 28px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif-soft);
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

/* =========================================================
   Header
========================================================= */
.header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 26px 0;
  pointer-events: none;
}

.header__inner{
  display: flex;
  align-items: center;
  gap: 28px;
  pointer-events: auto;
}

/* Brand */
.brand{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 8px;
  min-width: 260px;
}

.brand__wordmark{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .12em;
  color: rgba(255,255,255,.92);
  font-size: 34px;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.brand__tagline{
  font-family: var(--serif);
  letter-spacing: .32em;
  font-size: 11px;
  color: var(--gold);
  opacity: .95;
  margin-left: 0px;
  text-transform: uppercase;
  text-align: center;
}

/* Desktop Nav */
.nav{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--serif);
  letter-spacing: .22em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.nav__link{
  position: relative;
  padding: 10px 2px;
  opacity: .92;
  transition: opacity .2s ease, color .2s ease;
}
.nav__link:hover{ opacity: 1; color: rgba(255,255,255,.95); }
.nav__link.is-active{ color: rgba(255,255,255,.95); }
.nav__link.is-active::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold-soft);
}

/* =========================================================
   HERO
========================================================= */
.hero{
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding-top: 120px;

  background:
    radial-gradient(1000px 520px at 50% 45%, rgba(0,0,0,.05), rgba(0,0,0,.28)),
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.38)),
    url("assets/images/hero2.png") center 40% / cover no-repeat;

  background-color: #0a0a0a;
}

@media (max-width: 640px){
  .hero{
    background:
      radial-gradient(1000px 520px at 50% 45%, rgba(0,0,0,.05), rgba(0,0,0,.28)),
      linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.38)),
      url("assets/images/hero2.png") center 55% / cover no-repeat;
  }
}

/* softer vignette */
.hero::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(75% 75% at 50% 45%, rgba(0,0,0,0) 55%, rgba(0,0,0,.28) 100%);
  z-index: -1;
}

.hero__content{
  text-align: center;
  padding: 60px 0 40px;
}

.hero__title{
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: clamp(25px, 4.6vw, 70px);
  line-height: 1.06;
  color: rgba(255,255,255,.92);
  text-shadow:
    0 18px 40px rgba(0,0,0,.45),
    0 2px 0 rgba(0,0,0,.18);
}

.hero__subtitle{
  margin: 0;
  font-family: var(--serif-soft);
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 22px);
  color: rgba(255,255,255,.82);
  letter-spacing: .02em;
  line-height: 1.55;
  text-shadow: 0 12px 30px rgba(0,0,0,.45);
}

/* =========================================================
   Side elements (Startseite)
========================================================= */
.side{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  pointer-events: none;
}

.side--left{ left: 0; }
.side--right{ right: 0; }

/* Phone vertical (Desktop) */
.side__phone{
  position: absolute;
  left: var(--side-offset);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
}

.phone{
  display: inline-flex;
  align-items: center;
  gap: 14px;

  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);

  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--gold);
  opacity: .96;
}

.phone__icon{
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200,176,138,.48);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(200,176,138,.98);
  background: rgba(0,0,0,.12);
  box-shadow: 0 16px 40px rgba(0,0,0,.34);
  backdrop-filter: blur(6px);
}

.phone__icon svg{
  display: block;
  transform: rotate(180deg);
}

.phone__number{ letter-spacing: .16em; }

/* Right pager */
.pager{
  position: absolute;
  right: var(--side-offset);
  top: 50%;
  transform: translateY(-50%);

  display: grid;
  gap: 14px;
  align-items: center;
  justify-items: center;

  color: rgba(255,255,255,.80);
  font-family: var(--serif);
  letter-spacing: .18em;
  pointer-events: none;
}

.pager__line{
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,.18);
}

.pager__line--short{
  height: 70px;
  background: rgba(255,255,255,.12);
}

.pager__nums{
  display: grid;
  gap: 10px;
  font-size: 12px;
  opacity: .95;
}

.pager__num{ opacity: .55; }
.pager__num.is-active{ opacity: .95; }

/* =========================================================
   Responsive base
========================================================= */
@media (max-width: 980px){
  .nav{ display: none; }
  .brand{ min-width: unset; }
  :root{ --side-offset: 18px; }
}

@media (max-width: 640px){
  .container{ width: min(var(--container), calc(100% - 32px)); }
  .header{ padding: 18px 0; }

  .brand__wordmark{ font-size: 30px; }
  :root{ --side-offset: 14px; }

  .phone{
    font-size: 14px;
    gap: 12px;
  }
  .phone__icon{
    width: 40px;
    height: 40px;
  }

  .pager{ gap: 12px; }
}

/* Optional: ultrawide */
@media (min-width: 1600px){
  .hero{
    background:
      radial-gradient(1000px 520px at 50% 45%, rgba(0,0,0,.05), rgba(0,0,0,.28)),
      linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.38)),
      url("assets/images/hero2.png") center 68% / cover no-repeat;
  }
}

/* =========================================================
   Sections (allgemein)
========================================================= */
.section{
  position: relative;
  padding: 110px 0 90px;
  background: #070707;
}

.section__head{ margin-bottom: 34px; }

.section__title{
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: clamp(22px, 2.2vw, 34px);
  color: rgba(255,255,255,.92);
}

.section__lead{
  margin: 0 0 22px;
  color: rgba(255,255,255,.70);
  font-size: 18px;
  line-height: 1.6;
  max-width: 70ch;
}

/* =========================================================
   Startseite Section 2 (Über + Kontakt)
========================================================= */
.home2{
  min-height: 100vh;
  padding: 140px 0 90px;
  background-image:
    radial-gradient(900px 520px at 50% 0%, rgba(200,176,138,.06), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.88)),
    url("assets/images/bg/onyx_background3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home2__inner{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}

.home2__kicker{
  font-family: var(--serif);
  letter-spacing: .22em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(200,176,138,.90);
  margin-bottom: 10px;
}

.home2__title{
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: clamp(22px, 2.2vw, 36px);
  color: rgba(255,255,255,.92);
}

.home2__text{
  margin: 0 0 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  font-size: 18px;
  max-width: 70ch;
}

.home2__bullets{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.home2__bullets li{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.78);
}

.home2__card{
  border-radius: 22px;
  border: 1px solid rgba(200,176,138,.18);
  background: rgba(0,0,0,.25);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  padding: 22px;
}

.home2__formTitle{
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
}

.home2__label{
  display: block;
  margin: 12px 0 8px;
  font-family: var(--serif);
  letter-spacing: .18em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
}

.home2__field{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.90);
  padding: 12px 14px;
  outline: none;
  font-family: var(--serif-soft);
  font-size: 16px;
}

.home2__field:focus{
  border-color: rgba(200,176,138,.40);
  box-shadow: 0 0 0 3px rgba(200,176,138,.10);
}

.home2__btn{ margin-top: 14px; width: 100%; }

.home2__note{
  margin: 10px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 980px){
  .home2__inner{ grid-template-columns: 1fr; }
  .home2{ padding-top: 120px; }
}

/* =========================================================
   Footer
========================================================= */
.footer{
  padding: 22px 0 34px;
  background: rgba(0,0,0,.92);
  border-top: 1px solid rgba(200,176,138,.14);
}

.footer__inner{
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.footer__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(200,176,138,.28);
  background: rgba(200,176,138,.08);
  color: rgba(255,255,255,.85);
  font-family: var(--serif);
  letter-spacing: .18em;
  font-size: 11px;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.footer__link:hover{
  transform: translateY(-1px);
  border-color: rgba(200,176,138,.50);
  background: rgba(200,176,138,.12);
}

/* =========================================================
   HERO Intro Animation (Load-triggered)
========================================================= */
.hero__title,
.hero__subtitle{
  will-change: opacity, transform;
}

/* Startzustand */
.hero__content.is-animate .hero__title,
.hero__content.is-animate .hero__subtitle{
  opacity: 0;
  transform: translateY(18px);
}

/* TITEL */
.hero__content.is-animate .hero__title{
  animation: heroTitleIn 1.8s cubic-bezier(.22,.61,.36,1) forwards;
}

/* SUBTITLE */
.hero__content.is-animate .hero__subtitle{
  animation: heroSubIn .9s ease forwards;
  animation-delay: 1.6s;
}

@keyframes heroTitleIn{
  0%{ opacity: 0; transform: translateY(22px); }
  60%{ opacity: .85; }
  100%{ opacity: 1; transform: translateY(0); }
}
@keyframes heroSubIn{
  to{ opacity: 1; transform: translateY(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero__content.is-animate .hero__title,
  .hero__content.is-animate .hero__subtitle{
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Pager auch auf Section 2 rechts fix anzeigen */
.home2{ position: relative; }

.home2 .side--right{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 88px;
  pointer-events: none;
}

.home2 .pager{ pointer-events: none; }

/* =========================================================
   Header background NUR für Legal + Startseite 2
========================================================= */
.page--legal .header{
  background: rgba(7,7,7,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: none;
}

.page--home2Active .header{
  background: rgba(7,7,7,.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,176,138,.12);
}

/* =========================================================
   MOBILE NAV (Burger + Overlay) – unified
   - Andere Seiten: nur Burger
   - Startseite: navActions (Phone + Burger)
========================================================= */

/* navActions (Startseite) */
.navActions{
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

/* Phone button (Startseite) */
.navPhone{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(200,176,138,.22);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.navPhone:hover{
  transform: translateY(-1px);
  border-color: rgba(200,176,138,.35);
  background: rgba(0,0,0,.34);
}

/* Burger Button */
.navToggle{
  display: none;            /* Desktop aus */
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(200,176,138,.22);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  pointer-events: auto;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.navToggle:hover{
  transform: translateY(-1px);
  border-color: rgba(200,176,138,.35);
  background: rgba(0,0,0,.34);
}

/* Overlay: hidden bis is-open */
.navOverlay{
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  pointer-events: auto;
}
.navOverlay.is-open{ display: block; }

/* Drawer */
.navDrawer{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: rgba(7,7,7,.92);
  border-left: 1px solid rgba(200,176,138,.14);
  padding: 18px 18px 22px;
  transform: translateX(102%);
  transition: transform .22s ease;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}
.navOverlay.is-open .navDrawer{ transform: translateX(0); }

/* Drawer header */
.navDrawer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.navDrawer__title{
  font-family: var(--serif);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.80);
}
.navClose{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  cursor: pointer;
}

/* Links */
.navMobile{
  display: grid;
  gap: 10px;
  padding-top: 6px;
}
.navMobile a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  font-family: var(--serif);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.86);
}
.navMobile a.is-active{
  border-color: rgba(200,176,138,.35);
  background: rgba(200,176,138,.10);
}

/* --------- Mobile activation (<=980px) --------- */
@media (max-width: 980px){
  .nav{ display: none; }

  /* Standard: Burger (für Produktseiten ohne navActions) */
  .navToggle{ display: inline-flex; }

  /* Startseite: wenn navActions existiert -> Phone+Burger zeigen */
  .navActions{ display: inline-flex; }
}

/* --------- Burger Alignment: überall wieder rechts ---------
   - Produktseiten: .navToggle direkt in .header__inner -> margin-left:auto
   - Startseite: .navActions übernimmt margin-left:auto, Burger bleibt neben Phone
*/
.header__inner .navToggle{
  margin-left: auto;
}
.header__inner .navActions{
  margin-left: auto;
}
.header__inner .navActions .navToggle{
  margin-left: 0;
}

/* =========================================================
   STARTSEITE – Mobile Fixes (nur Mobile)
   - Side Phone & Pager ausblenden (Hero + Home2)
   - Hero Text: etwas weiter runter
   - Title: etwas kleiner
========================================================= */
@media (max-width: 640px){

  /* Side elements auf Mobile komplett weg */
  .hero .side,
  .home2 .side{
    display: none !important;
  }

  /* Hero Layout: Text etwas weiter NACH UNTEN */
  .hero{
    padding-top: 116px;          /* Platz unter Header */
    place-items: start center;
  }

  .hero__content{
    padding: 150px 0 18px;        /* <-- DAS schiebt den Text nach unten */
    margin-top: 0;
  }

  /* Titel etwas kleiner (Subtitle bleibt gut) */
  .hero__title{
    margin-bottom: 12px;
    font-size: clamp(20px, 6.6vw, 34px);
    line-height: 1.05;
  }

  .hero__subtitle{
    font-size: 15px;
    line-height: 1.5;
  }
}
/* =========================
   BUTTONS (Premium, unified)
========================= */

.btn{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(200,176,138,.28);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.92);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 999px;
  padding: 13px 20px;

  font-family: var(--serif);
  letter-spacing: .18em;
  font-size: 12px;
  text-transform: uppercase;

  cursor: pointer;
  user-select: none;

  box-shadow:
    0 18px 55px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);

  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(200,176,138,.45);
  background: rgba(0,0,0,.34);
  box-shadow:
    0 22px 70px rgba(0,0,0,.50),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.btn:active{ transform: translateY(0); filter: brightness(.98); }

.btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(200,176,138,.14),
    0 18px 55px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.btn--gold{
  border-color: rgba(200,176,138,.55);
  background: linear-gradient(
    180deg,
    rgba(200,176,138,.20),
    rgba(200,176,138,.10)
  );
  color: rgba(255,255,255,.95);
}

.btn--gold:hover{
  border-color: rgba(200,176,138,.78);
  background: linear-gradient(
    180deg,
    rgba(200,176,138,.26),
    rgba(200,176,138,.14)
  );
}

/* =========================================================
   Burger Icon Fix (SVG + Fallback Lines)
========================================================= */

/* 1) SVG sichtbar erzwingen (falls Browser/Reset es "killed") */
.navToggle svg,
.navToggle__icon{
  display: block !important;
  width: 18px;
  height: 18px;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 2) Striche wirklich zeichnen */
.navToggle svg path{
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  opacity: 1 !important;
}

/* 3) Falls du die span-lines Variante nutzt */
.navToggle__lines{
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  display: block;
}
.navToggle__lines::before,
.navToggle__lines::after{
  content:"";
  position:absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.navToggle__lines::before{ top: -6px; }
.navToggle__lines::after{ top: 6px; }


