/* =========================================================
   ROBIN HENDERSON – Global Stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: clip; }

:root {
  --bg:          #0a0a0a;
  --bg-card:     rgba(255,255,255,0.04);
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dim:    rgba(201,168,76,0.15);
  --gold-glow:   rgba(201,168,76,0.35);
  --text:        #ffffff;
  --text-dim:    #999999;
  --border:      rgba(201,168,76,0.25);
  --max-w:       1200px;
  --radius:      8px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
p  { color: var(--text-dim); line-height: 1.8; }

.gold { color: var(--gold); }
.serif { font-family: 'Playfair Display', serif; }

/* ── Layout Helpers ──────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section    { padding: 100px 0; }
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title { margin-bottom: 16px; }
.section-sub   { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 56px; max-width: 600px; }

/* ── Divider ─────────────────────────────────────────────── */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 40px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8922e);
  color: #0a0a0a;
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 28px var(--gold-glow), 0 8px 24px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 0 32px var(--gold-glow), 0 16px 40px rgba(0,0,0,0.5);
}

/* ── Scroll Fade-In ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }


/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.08em;
}
.nav-logo-text span { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a,
.nav-menu > li > button {
  display: block;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > button:hover,
.nav-menu > li > a.active { color: var(--gold); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(14,14,14,0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  backdrop-filter: blur(20px);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.dropdown-menu a:hover {
  color: var(--gold);
  background: var(--gold-dim);
}
.dropdown-menu .badge-new {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0a0a0a;
  background: var(--gold);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.nav-cta {
  margin-left: 16px;
  padding: 10px 22px !important;
  background: linear-gradient(135deg, var(--gold), #b8922e) !important;
  color: #0a0a0a !important;
  border-radius: var(--radius) !important;
  letter-spacing: 0.1em !important;
  transition: box-shadow var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  box-shadow: 0 0 20px var(--gold-glow) !important;
  transform: translateY(-1px) !important;
}

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


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

/* Background photo */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.04);
  animation: hero-ken-burns 18s ease-in-out infinite alternate;
}
@keyframes hero-ken-burns {
  from { transform: scale(1.04) translateX(0);   }
  to   { transform: scale(1.10) translateX(-1%); }
}

/* Gradient overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 38% 52% at 62% 44%, rgba(255,220,160,0.08) 0%, transparent 70%),
    linear-gradient(90deg,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.68) 40%,
      rgba(10,10,10,0.04) 62%,
      rgba(10,10,10,0.22) 100%),
    linear-gradient(180deg,
      rgba(10,10,10,0.55) 0%,
      transparent 25%,
      transparent 70%,
      rgba(10,10,10,0.80) 100%);
}

/* Subtle gold grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black, transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 46px 24px 100px;
  width: 100%;
  min-height: 100vh;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}

/* Hero logo diamond */
.hero-diamond {
  display: block;
  width: 420px; height: 420px;
  object-fit: contain;
  margin: 0 0 8px -24px;
  filter:
    drop-shadow(0 8px 32px rgba(0,0,0,0.6))
    drop-shadow(0 0 60px rgba(201,168,76,0.25));
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 14px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(200,200,200,0.8);
  margin-bottom: 44px;
  max-width: 420px;
  line-height: 1.8;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(153,153,153,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; color: var(--gold); opacity: 0.7; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* =========================================================
   NEXT DATE STRIPE
   ========================================================= */
.next-date-stripe {
  background: #ffffff;
  padding: 26px 0;
  border-top: 4px solid #C9A84C;
  border-bottom: 1px solid #e0e0e0;
}
.next-date-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.next-date-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A84C;
  white-space: nowrap;
}
.next-date-label svg { width: 18px; height: 18px; color: #C9A84C; flex-shrink: 0; }
.next-date-date {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 0.06em;
}
.next-date-event {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}
.next-date-format {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #C9A84C;
  padding: 4px 12px;
  border-radius: 4px;
}
.next-date-divider {
  color: #C9A84C;
  font-weight: 700;
  font-size: 1.1rem;
}
.next-date-placeholder {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}
.next-date-link {
  margin-left: auto;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A84C;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.next-date-link:hover { color: #b8922e; }

@media (max-width: 640px) {
  .next-date-inner { gap: 12px; }
  .next-date-link  { margin-left: 0; }
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services { background: linear-gradient(180deg, var(--bg) 0%, #0c0c0c 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.service-card .btn {
  margin-top: auto;
  align-self: center;
}
.service-icon {
  width: 64px; height: 64px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.service-icon svg { width: 28px; height: 28px; color: var(--gold); }
.service-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.service-card p  { font-size: 0.92rem; margin-bottom: 24px; }


/* =========================================================
   SOCIAL BAR
   ========================================================= */
.social-bar {
  padding: 36px 0;
  border-top: 3px solid #C9A84C;
  border-bottom: 3px solid #C9A84C;
  background: #ffffff;
}
.social-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 32px;
  flex-wrap: wrap;
}
.social-label {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  font-weight: 700;
  margin-right: 8px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition), transform var(--transition);
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid transparent;
}
.social-link:hover {
  color: #C9A84C;
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; }


/* =========================================================
   BEKANNT AUS
   ========================================================= */
.bekannt { background: #0c0c0c; }
.bekannt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.bekannt-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.bekannt-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
}
.bekannt-card p  { font-size: 0.88rem; margin: 0; }
.bekannt-streams {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}
.bekannt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: nowrap;
}
.bekannt-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.bekannt-tag {
  flex-shrink: 0;
}
.bekannt-card {
  cursor: pointer;
  transition: var(--transition);
}
.bekannt-card.active-video-card {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  box-shadow: 0 0 28px var(--gold-glow);
}
.bekannt-play-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 12px;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.bekannt-card:hover .bekannt-play-hint,
.bekannt-card.active-video-card .bekannt-play-hint { opacity: 1; }

/* Video title above player */
.yt-video-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
  min-height: 1.5em;
  transition: opacity 0.3s;
}


/* =========================================================
   YOUTUBE EMBED
   ========================================================= */
.yt-section { background: var(--bg); }
.yt-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
}
.yt-wrap iframe { width: 100%; height: 100%; border: none; }


/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  padding: 16px 0;
  background: #ffffff;
  border-top: 3px solid #C9A84C;
  border-bottom: 3px solid #C9A84C;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 20px;
  border-right: 1px solid #e0e0e0;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: #666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: #0c0c0c; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card { position: relative; }
.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-card blockquote::before { content: '\201C'; color: var(--gold); font-size: 1.4rem; }
.testimonial-card blockquote::after  { content: '\201D'; color: var(--gold); font-size: 1.4rem; }
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.testimonial-cat {
  font-size: 0.75rem;
  color: var(--text-dim);
}


/* =========================================================
   GOLD DIVIDER
   ========================================================= */
.gold-divider {
  padding: 0;
  background: var(--bg);
  position: relative;
}
.gold-divider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.2) 20%,
    rgba(201,168,76,0.8) 50%,
    rgba(201,168,76,0.2) 80%,
    transparent 100%);
  box-shadow: 0 0 20px rgba(201,168,76,0.3), 0 0 60px rgba(201,168,76,0.1);
}
.gold-divider-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.gold-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201,168,76,0.5),
    rgba(201,168,76,0.8),
    rgba(201,168,76,0.5),
    transparent);
}
.gold-divider-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.5));
}

/* =========================================================
   CONTACT / BOOKING FORM
   ========================================================= */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--text-dim);
  font-size: 0.92rem;
}
.contact-detail svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.contact-detail a { color: var(--text-dim); text-decoration: none; transition: color var(--transition); }
.contact-detail a:hover { color: var(--gold); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(153,153,153,0.5); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; }


/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 0.88rem;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(153,153,153,0.5);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(153,153,153,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }


/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2.5s ease-in-out 3s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-fab svg { width: 28px; height: 28px; color: #fff; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}


/* =========================================================
   MOBILE RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero-bg-img { object-position: 70% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.6) 0%, transparent 30%, rgba(10,10,10,0.5) 100%),
      linear-gradient(90deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.5) 100%);
  }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .nav-menu { display: none; position: fixed; inset: 72px 0 0; background: rgba(10,10,10,0.98); flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 0; backdrop-filter: blur(20px); }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-menu > li > a, .nav-menu > li > button { padding: 16px 0; font-size: 0.9rem; width: 100%; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.04); border: none; border-radius: 0; padding: 0 16px; }
  .nav-cta { margin: 16px 0 0; text-align: center; justify-content: center; }
  .burger { display: flex; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }

  .hero-diamond { width: 100%; max-width: 320px; height: auto; margin: 0 auto 8px; }
  .hero-inner { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-content { max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .hero-ctas { justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #0c0c0c 100%);
  border-bottom: 1px solid var(--border);
}
.page-header .section-label { justify-content: center; display: flex; }


/* ==========================================================
   DESIGN ENHANCEMENTS – Grain, Atmosphere & Motion
   ========================================================== */

/* ── Subtle noise texture via section backgrounds ────────── */
/* (grain via fixed body::before entfernt – kollidiert mit overflow-x:hidden) */

/* ── Hero staggered entrance ─────────────────────────────── */
@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content.fade-in,
.hero-content.fade-in.visible {
  opacity: 1;
  transform: none;
  transition: none;
}
.hero-diamond  { animation: hero-reveal 1.2s cubic-bezier(0.22,1,0.36,1) 0.15s both, logo-float 7s ease-in-out 1.5s infinite; }
.hero-eyebrow  { animation: hero-reveal 0.9s cubic-bezier(0.22,1,0.36,1) 0.45s both; }
.hero-title    { animation: hero-reveal 1.0s cubic-bezier(0.22,1,0.36,1) 0.65s both; }
.hero-subtitle { animation: hero-reveal 0.9s cubic-bezier(0.22,1,0.36,1) 0.85s both; }
.hero-desc     { animation: hero-reveal 0.8s cubic-bezier(0.22,1,0.36,1) 1.0s both; }
.hero-ctas     { animation: hero-reveal 0.8s cubic-bezier(0.22,1,0.36,1) 1.15s both; }

/* ── Gold line pulse ─────────────────────────────────────── */
@keyframes gold-glow-pulse {
  0%, 100% { box-shadow: none; }
  50%       { box-shadow: 0 0 14px rgba(201,168,76,0.55), 0 0 28px rgba(201,168,76,0.2); }
}
.gold-line { animation: gold-glow-pulse 3.5s ease-in-out infinite; }

/* ── Card top-edge shimmer on hover ──────────────────────── */
.card { position: relative; }
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.55), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

/* Button shine entfernt – verursachte Overflow/Compositor-Bug */

/* ── Springier scroll reveal easing ─────────────────────── */
.fade-in {
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

/* ── Navbar animated gold shimmer line ───────────────────── */
@keyframes nav-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 20%, rgba(201,168,76,0.7) 50%, transparent 80%);
  background-size: 200% 100%;
  animation: nav-shimmer 6s linear infinite;
  pointer-events: none;
}

/* ── Atmospheric section background glows ────────────────── */
.services {
  background:
    radial-gradient(ellipse 70% 40% at 50% 110%, rgba(201,168,76,0.05) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #0c0c0c 100%);
}
.bekannt {
  background:
    radial-gradient(ellipse 55% 35% at 50% 50%, rgba(201,168,76,0.035) 0%, transparent 70%),
    #0c0c0c;
}
.testimonials {
  background:
    radial-gradient(ellipse 65% 45% at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 70%),
    #0c0c0c;
}

/* ── Stats number glow ───────────────────────────────────── */
.stat-number { text-shadow: 0 0 30px rgba(201,168,76,0.2); }
