*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #9a7a2e;
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --white: #f5f5f0;
  --gray: #888880;
}

html {
  scroll-behavior: smooth;
}

/* ── NAV ── */
@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  animation: navSlideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.nav-wrap.menu-open {
  background: rgba(10, 10, 10, 0.99);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 100px;
  width: 150px;
  object-fit: contain;
  display: none; /* versteckt bis JS bestätigt dass es lädt */
}
.nav-logo-img.loaded {
  display: block;
}
.nav-logo-text {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
}
.nav-logo-text span {
  color: var(--white);
}
.nav-logo-img.loaded ~ .nav-logo-text {
  display: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.25s;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--gold-light);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-mobile {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(201, 168, 76, 0);
  padding: 0 24px;
  gap: 0;
  transition:
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.35s ease,
    border-color 0.3s ease;
}
.nav-mobile.open {
  max-height: 400px;
  padding: 24px;
  border-top-color: rgba(201, 168, 76, 0.12);
  gap: 20px;
}
.nav-mobile a {
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  transition:
    color 0.2s,
    padding-left 0.25s;
}
.nav-mobile a:last-child {
  border-bottom: none;
}
.nav-mobile a:hover {
  color: var(--gold);
  padding-left: 8px;
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 32vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 100px 40px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(201, 168, 76, 0.04) 0px,
    rgba(201, 168, 76, 0.04) 1px,
    transparent 1px,
    transparent 80px
  );
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dark);
}
.page-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.page-hero-title span {
  color: var(--gold);
}

/* ── TAB NAV ── */
.tab-wrap {
  background: var(--black-2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  position: sticky;
  top: 72px;
  z-index: 50;
}
.tab-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
}
.tab-btn {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  background: none;
  border: none;
  padding: 20px 32px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}
.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.tab-btn.active {
  color: var(--gold);
}
.tab-btn.active::after {
  width: 100%;
}
.tab-btn:hover {
  color: var(--gold-light);
}

/* ── CONTENT ── */
.content-wrap {
  background: var(--black-2);
  padding: 72px 40px 100px;
}
.content-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Sections */
.legal-section {
  display: none;
}
.legal-section.active {
  display: block;
}

.legal-block {
  margin-bottom: 52px;
}
.legal-block:last-child {
  margin-bottom: 0;
}

.legal-tag {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.legal-h1 {
  font-family: Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  line-height: 1.05;
}
.legal-h1 span {
  color: var(--gold);
}
.legal-h2 {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  margin-top: 36px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}
.legal-h2:first-of-type {
  margin-top: 0;
}
.legal-p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 16px;
}
.legal-p:last-child {
  margin-bottom: 0;
}
.legal-p a {
  color: var(--gold);
  text-decoration: none;
}
.legal-p a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Kontakt Box */
.legal-contact-box {
  background: var(--black-3);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin: 28px 0;
}
.legal-contact-box p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 2;
  color: var(--white);
}
.legal-contact-box p span {
  color: var(--gray);
}

/* Divider */
.legal-divider {
  width: 100%;
  height: 1px;
  background: rgba(201, 168, 76, 0.12);
  margin: 48px 0;
}

/* ── FOOTER ── */
.footer-wrap {
  background: var(--black-2);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand {
  margin-bottom: 16px;
  width: 200px;
}
.footer-desc {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 280px;
}
.footer-col-title {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-address {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
}
.footer-address strong {
  color: var(--white);
  font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-copy {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #555;
}
.footer-copy span {
  color: var(--gold-dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 20px 48px;
  }
  .content-wrap {
    padding: 48px 20px 80px;
  }
  .tab-inner {
    padding: 0 16px;
  }
  .tab-btn {
    padding: 16px 20px;
    font-size: 11px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .nav-inner {
    padding: 0 20px;
  }
}
