/* ═══════════════════════════════════════════════════════════
   MR. HAMMERHAND – PREMIUM WEBSITE CSS
   Design: Dark Luxury · Gold Accents · Minimalist · Powerful
   ══════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --gold:          #C8A84B;
  --gold-light:    #E8C97A;
  --gold-dark:     #9A7A2E;
  --black:         #080808;
  --dark:          #111111;
  --dark-2:        #181818;
  --card:          #1A1A1A;
  --border:        rgba(200, 168, 75, 0.15);
  --border-subtle: rgba(255,255,255,0.06);
  --white:         #FFFFFF;
  --text:          #F0F0F0;
  --text-muted:    #888888;
  --text-dim:      #555555;

  --font-display:  'Bebas Neue', sans-serif;
  --font-condensed:'Barlow Condensed', sans-serif;
  --font-body:     'Inter', sans-serif;

  --nav-h:         80px;
  --container:     1280px;
  --radius:        4px;
  --radius-lg:     8px;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);

  --transition:    0.3s var(--ease-in-out);
  --transition-slow: 0.6s var(--ease-out);
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold); }

ul { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ─── UTILITY ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.gold-text { color: var(--gold); }
.text-center { text-align: center; }

.gold-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 12px;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.section-subtitle {
  font-family: var(--font-condensed);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 580px;
}

.display-huge {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  line-height: 0.85;
  color: var(--gold);
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  transform: translateX(-101%);
  transition: transform var(--transition);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ✦ Liquid Glass Button – for hero CTA ghost variant */
.btn-glass {
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 4px 20px rgba(0,0,0,0.25);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,168,75,0.38);
  color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(200,168,75,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 4px 20px rgba(0,0,0,0.3);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── SCROLL REVEAL ANIMATIONS ──────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── SECTION HEADER ────────────────────────────────────── */
.section-header {
  margin-bottom: 64px;
}
.section-header .section-title {
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════
   PRELOADER
   ════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.preloader-logo {
  width: 120px;
  mix-blend-mode: screen;
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(200,168,75,0.2);
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: var(--gold);
  animation: fillBar 1.8s var(--ease-out) forwards;
}
@keyframes fillBar {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

/* ════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), border-bottom-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 56px;
  width: auto;
  mix-blend-mode: screen;
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 24px;
  letter-spacing: 0.15em;
  border: 1px solid var(--gold);
  transition: background var(--transition), color var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 20px;
  color: var(--white);
  padding: 8px;
}

.mobile-nav-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  padding: 12px 40px;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-cta { color: var(--gold) !important; }

.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 100dvh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36); /* lighter – let the image breathe */
}
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  /* Cinematic multi-layer: vertical fade + subtle radial vignette */
  background:
    radial-gradient(ellipse 80% 90% at 65% 42%, transparent 38%, rgba(8,8,8,0.45) 100%),
    linear-gradient(
      to bottom,
      rgba(8,8,8,0.40) 0%,
      rgba(8,8,8,0.05) 22%,
      rgba(8,8,8,0) 44%,
      rgba(8,8,8,0.55) 73%,
      rgba(8,8,8,0.94) 90%,
      rgba(8,8,8,1) 100%
    );
}

/* Side cinematic vignette – subtle depth */
.hero-cinematic-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 110% 90% at 50% 50%,
    transparent 55%,
    rgba(0,0,0,0.28) 100%
  );
  pointer-events: none;
}

/* Subtle brand watermark – top-right, barely visible */
.hero-brand-watermark {
  position: absolute;
  top: 60px;
  right: -20px;
  width: clamp(180px, 22vw, 280px);
  opacity: 0.045;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(1px);
  z-index: 1;
}
.hero-brand-watermark img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.hero-tag {
  display: flex;
  align-items: center;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.8s 0.5s var(--ease-out) both;
}

/* ─── HERO EYEBROW (clean replace for hero-tag) ─────── */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.4;
  animation: fadeSlideUp 0.8s 0.5s var(--ease-out) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s 0.7s var(--ease-out) both;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  animation: fadeSlideUp 0.8s 0.9s var(--ease-out) both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 44px;
  animation: fadeSlideUp 0.8s 1.1s var(--ease-out) both;
}
.hero-stat { text-align: left; padding: 0 20px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ✦ Liquid Glass Bar – stats container */
.hero-glass-bar {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-top-color: rgba(255, 255, 255, 0.18); /* specular top highlight */
  border-radius: 3px;
  padding: 18px 24px;
  width: fit-content;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 8px 32px rgba(0,0,0,0.38),
    0 2px 8px rgba(0,0,0,0.2);
}
.hero-glass-bar .hero-stat { padding: 0 22px; }
.hero-glass-bar .hero-stat:first-child { padding-left: 0; }
.hero-glass-bar .hero-stat-divider {
  background: rgba(255,255,255,0.12);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeSlideUp 0.8s 1.3s var(--ease-out) both;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeSlideUp 1s 1.8s var(--ease-out) both;
}
.scroll-text {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(200,168,75,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════
   TICKER / MARQUEE
   ════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  user-select: none;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
}
.ticker-track span {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 20px;
}
.ticker-dot {
  color: rgba(0,0,0,0.3) !important;
  padding: 0 4px !important;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

/* ════════════════════════════════════════════════════════
   STATS SECTION
   ════════════════════════════════════════════════════════ */
.stats-section {
  background: var(--dark);
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  border-right: 1px solid var(--border-subtle);
  text-align: center;
}
.stat-card:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.stat-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════
   THE LEGACY / ABOUT SECTION
   ════════════════════════════════════════════════════════ */
.legacy-section {
  padding: 140px 0;
  background: var(--black);
}
.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.legacy-text .section-title { margin-bottom: 32px; }

.legacy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  margin-top: 32px;
}
.badge {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--gold);
  background: rgba(200,168,75,0.06);
}

.legacy-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.legacy-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-out);
}
.legacy-image-wrap:hover img { transform: scale(1.03); }

.legacy-image-border {
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
  transform: translate(8px, 8px);
}
.legacy-image-wrap:hover .legacy-image-border { opacity: 0.25; }

.legacy-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.12;
}

/* ════════════════════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════════════════════ */
.services-section {
  padding: 140px 0;
  background: var(--dark);
  border-top: 1px solid var(--border-subtle);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
.service-card {
  background: var(--dark);
  padding: 48px 40px;
  transition: background var(--transition);
  cursor: default;
}
.service-card:hover { background: var(--dark-2); }

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════
   WORLD RECORDS SECTION
   ════════════════════════════════════════════════════════ */
.records-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.records-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.records-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.records-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.92) 50%,
    rgba(8,8,8,0.7) 100%
  );
}

.records-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.records-left .section-title { margin-bottom: 24px; }
.records-left .body-text { margin-bottom: 40px; }

.records-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.record-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color var(--transition);
}
.record-item:hover { border-bottom-color: var(--border); }
.record-item:first-child { border-top: 1px solid var(--border-subtle); }

.record-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  min-width: 48px;
  line-height: 1;
  padding-top: 2px;
}
.record-info h4 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 6px;
}
.record-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   QUOTE SECTION
   ════════════════════════════════════════════════════════ */
.quote-section {
  background: var(--dark);
  padding: 100px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.main-quote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  font-style: normal;
}
.main-quote .quote-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  vertical-align: middle;
  margin: 0 8px;
}
.main-quote p,
.main-quote {
  font-family: var(--font-condensed);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--text);
}
.main-quote cite {
  display: block;
  margin-top: 28px;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-style: normal;
}

/* ════════════════════════════════════════════════════════
   MEDIA / GALLERY SECTION
   ════════════════════════════════════════════════════════ */
.media-section {
  padding: 140px 0;
  background: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 6px;
  margin-bottom: 80px;
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--card);
}
.gallery-item--large { aspect-ratio: auto; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,168,75,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(200,168,75,0.2); }
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  color: var(--white);
  padding: 8px 12px;
  cursor: pointer;
  z-index: 1;
}

/* Video Section */
.video-section {
  text-align: center;
}
.video-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.video-subtitle {
  color: var(--text-muted);
  margin-bottom: 48px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-placeholder {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.video-placeholder:hover { border-color: var(--gold); }
.video-play-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-icon svg {
  width: 24px;
  height: 24px;
  color: var(--black);
  margin-left: 4px;
}
.video-placeholder span {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════
   SOCIAL HUB SECTION
   ════════════════════════════════════════════════════════ */
.social-section {
  padding: 140px 0;
  background: var(--dark);
  border-top: 1px solid var(--border-subtle);
}
.social-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.social-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  padding: 28px 28px 20px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.social-card:hover {
  background: var(--dark-2);
  border-color: var(--border);
  transform: translateY(-3px);
  color: inherit;
}
.social-card:hover::before { transform: scaleX(1); }

.social-card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.social-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}
.social-icon svg { width: 100%; height: 100%; }

.social-info { flex: 1; }
.social-info h4 {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 2px;
}
.social-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.social-arrow {
  font-size: 18px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.social-card:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
}

.social-stats {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
}

.social-card--email .social-icon { color: var(--gold); }

/* ════════════════════════════════════════════════════════
   FAQ SECTION
   ════════════════════════════════════════════════════════ */
.faq-section {
  padding: 140px 0;
  background: var(--black);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-header { position: sticky; top: 100px; }

.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question > span:first-child {
  font-family: var(--font-condensed);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.faq-question:hover > span:first-child { color: var(--gold); }

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
  margin-top: 2px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  padding-bottom: 28px;
}
.faq-answer p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ════════════════════════════════════════════════════════
   BOOKING / CONTACT SECTION
   ════════════════════════════════════════════════════════ */
.booking-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.booking-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.booking-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.97) 55%,
    rgba(8,8,8,0.7) 100%
  );
}

.booking-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-info .section-title { margin-bottom: 24px; }
.booking-info .body-text { margin-bottom: 40px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 14px;
  margin: 0 -14px;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition), transform var(--transition);
  -webkit-tap-highlight-color: transparent; /* sauberes Tippen auf Mobile */
}
.contact-item:hover {
  background: rgba(200, 168, 75, 0.07);
  transform: translateX(5px);
}
.contact-item:hover .contact-icon { color: var(--gold-light); }
.contact-item:active { background: rgba(200, 168, 75, 0.12); }

.contact-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color var(--transition);
}
.contact-icon svg { width: 100%; height: 100%; }

.contact-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-value {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--transition);
  line-height: 1.4;
}
.contact-item:hover .contact-value { color: var(--white); }

/* Form */
.booking-form-wrap {
  background: var(--dark);
  border: 1px solid var(--border-subtle);
  padding: 48px;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  padding: 14px 18px;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group select option {
  background: var(--card);
  color: var(--text);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full svg {
  width: 16px;
  height: 16px;
}

.form-success {
  display: none;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 16px;
  border: 1px solid var(--border);
  background: rgba(200,168,75,0.06);
}
.form-success.show { display: block; }

.form-error {
  display: none;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #e07070;
  padding: 16px;
  border: 1px solid rgba(220,80,80,0.25);
  background: rgba(220,80,80,0.06);
  margin-top: 12px;
}
.form-error.show { display: block; }

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border-subtle);
}

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 64px;
  mix-blend-mode: screen;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-heading {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav li a:hover { color: var(--white); }

.site-footer address { font-style: normal; }
.site-footer address p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.site-footer address a { color: var(--text-muted); }
.site-footer address a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.footer-legal a:hover { color: var(--text-muted); }

/* ════════════════════════════════════════════════════════
   RESPONSIVE – TABLET (≤ 1024px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-top: 1px solid var(--border-subtle); }
  .stat-card:nth-child(4) { border-top: 1px solid var(--border-subtle); border-right: none; }

  .legacy-grid { grid-template-columns: 1fr; gap: 60px; }
  .legacy-image { order: -1; }
  .legacy-image-wrap { aspect-ratio: 4/3; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .records-inner { grid-template-columns: 1fr; gap: 60px; }

  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-header { position: static; }

  .booking-grid { grid-template-columns: 1fr; gap: 60px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 48px;
  }
  .footer-brand { grid-column: span 2; }

  .social-hub-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE (≤ 768px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-section { padding-bottom: 14vh; }
  .hero-title { font-size: clamp(4rem, 18vw, 6rem); }
  .hero-stats { gap: 0; flex-wrap: nowrap; }
  .hero-glass-bar { padding: 14px 16px; }
  .hero-glass-bar .hero-stat { padding: 0 14px; }
  .hero-glass-bar .hero-stat:first-child { padding-left: 0; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-eyebrow { font-size: 10px; }
  .hero-cta { gap: 10px; }
  .hero-brand-watermark { display: none; }
  .hero-content::before { display: none; }
  .scroll-indicator { display: none; }
  /* Mobile: Video läuft auch auf kleinen Screens */
  .hero-bg-video { display: block; }
  /* Mute-Button auf Mobile anzeigen */
  .hero-video-mute { display: flex; }

  /* Stats */
  .stats-section { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Legacy */
  .legacy-section { padding: 80px 0; }

  /* Services */
  .services-section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }

  /* Records */
  .records-section { padding: 80px 0; }

  /* Gallery */
  .media-section { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .gallery-item--large {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }

  .video-grid { grid-template-columns: 1fr; }

  /* Social */
  .social-section { padding: 80px 0; }
  .social-hub-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-section { padding: 80px 0; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Booking */
  .booking-section { padding: 80px 0; }
  .booking-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { padding: 60px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Quote */
  .quote-section { padding: 60px 0; }

  /* Section spacing */
  .section-header { margin-bottom: 40px; }
}

/* ════════════════════════════════════════════════════════
   ACCESSIBILITY
   ════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── SELECTION COLOR ───────────────────────────────────── */
::selection {
  background: rgba(200,168,75,0.3);
  color: var(--white);
}

/* ════════════════════════════════════════════════════════
   ✦ LIQUID GLASS – iOS 26 STYLE SYSTEM
   Glassmorphism · Specular Highlights · Depth Layers
   ════════════════════════════════════════════════════════ */

/* ─── GLASS MIXINS (BASE TOKENS) ─────────────────────────── */
:root {
  --glass-bg:           rgba(255, 255, 255, 0.04);
  --glass-bg-gold:      rgba(200, 168, 75, 0.07);
  --glass-border:       rgba(255, 255, 255, 0.09);
  --glass-border-gold:  rgba(200, 168, 75, 0.22);
  --glass-shine:        rgba(255, 255, 255, 0.12);
  --glass-blur:         blur(28px) saturate(200%);
  --glass-blur-heavy:   blur(48px) saturate(220%) brightness(1.05);
  --glass-shadow:       0 8px 40px rgba(0,0,0,0.5),
                        0 2px 12px rgba(0,0,0,0.3),
                        inset 0 1px 0 rgba(255,255,255,0.08);
  --glass-shadow-gold:  0 8px 40px rgba(0,0,0,0.5),
                        0 0 32px rgba(200,168,75,0.08),
                        inset 0 1px 0 rgba(200,168,75,0.18);
}

/* ─── HEADER – LIQUID GLASS NAV ─────────────────────────── */
.site-header.scrolled {
  background: rgba(8, 8, 8, 0.6) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border-bottom: 1px solid var(--glass-border-gold) !important;
  box-shadow: 0 1px 0 rgba(200,168,75,0.1),
              0 8px 32px rgba(0,0,0,0.4);
}

/* Shine line at bottom of nav */
.site-header.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200,168,75,0.3) 30%,
    rgba(200,168,75,0.5) 50%,
    rgba(200,168,75,0.3) 70%,
    transparent
  );
}

/* ─── MOBILE MENU – GLASS ───────────────────────────────── */
.mobile-menu {
  background: rgba(8, 8, 8, 0.85) !important;
  backdrop-filter: var(--glass-blur-heavy) !important;
  -webkit-backdrop-filter: var(--glass-blur-heavy) !important;
}

/* ─── STATS CARDS – LIQUID GLASS ────────────────────────── */
.stats-section {
  background: transparent !important;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  z-index: 0;
}
.stats-grid { position: relative; z-index: 1; }

.stat-card {
  background: var(--glass-bg-gold) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-gold) !important;
  box-shadow: var(--glass-shadow-gold);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
/* Specular top-shine per card */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--glass-shine), transparent);
  pointer-events: none;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse at 30% 0%, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6),
              0 0 40px rgba(200,168,75,0.12),
              inset 0 1px 0 rgba(200,168,75,0.25);
}

/* ─── SERVICE CARDS – LIQUID GLASS ──────────────────────── */
.services-grid {
  background: transparent !important;
  gap: 12px !important;
  border: none !important;
}

.service-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition) !important;
}
/* Top specular line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--glass-shine), transparent);
  pointer-events: none;
}
/* Gold corner glow */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(200,168,75,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.service-card:hover {
  background: rgba(200,168,75,0.08) !important;
  border-color: var(--glass-border-gold) !important;
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-gold);
}

/* ─── SOCIAL CARDS – LIQUID GLASS ───────────────────────── */
.social-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--glass-shine), transparent);
  pointer-events: none;
  z-index: 1;
}
.social-card:hover {
  background: var(--glass-bg-gold) !important;
  border-color: var(--glass-border-gold) !important;
  box-shadow: var(--glass-shadow-gold);
}
/* Override the bottom line effect to be gold glow instead */
.social-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 1;
}
.social-card:hover::after { transform: scaleX(1); }
/* Remove old ::before from JS-driven pseudo */
.social-card.reveal-up::before { all: revert; }

/* ─── BOOKING FORM – LIQUID GLASS ───────────────────────── */
.booking-form-wrap {
  background: rgba(8, 8, 8, 0.55) !important;
  backdrop-filter: var(--glass-blur-heavy) !important;
  -webkit-backdrop-filter: var(--glass-blur-heavy) !important;
  border: 1px solid var(--glass-border-gold) !important;
  box-shadow: var(--glass-shadow-gold) !important;
  position: relative;
  overflow: hidden;
}
.booking-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,168,75,0.4), transparent);
  pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(200, 168, 75, 0.06) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(200,168,75,0.12);
}

/* ─── FAQ ITEMS – LIQUID GLASS ──────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  transition: background var(--transition);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq-item.open {
  background: var(--glass-bg-gold);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--glass-border-gold) !important;
  padding: 0 16px;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--glass-border-gold);
}

/* ─── RECORD ITEMS – GLASS HOVER ───────────────────────── */
.record-item {
  transition: background var(--transition), border-color var(--transition), padding var(--transition) !important;
  border-radius: var(--radius);
  padding-left: 0;
  padding-right: 0;
}
.record-item:hover {
  background: var(--glass-bg-gold);
  backdrop-filter: blur(8px);
  padding-left: 16px;
  padding-right: 16px;
}

/* ─── BADGE – GLASS STYLE ───────────────────────────────── */
.badge {
  background: rgba(200,168,75,0.08) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(200,168,75,0.25) !important;
}

/* ─── HERO LOGO OVERLAY BADGE ───────────────────────────── */
.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(200,168,75,0.25);
  padding: 10px 20px 10px 12px;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(200,168,75,0.15),
              0 4px 20px rgba(0,0,0,0.4);
}
.hero-logo-badge img {
  height: 40px;
  mix-blend-mode: screen;
}
.hero-logo-badge span {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ─── PRELOADER – GLASS PANEL ───────────────────────────── */
.preloader-inner {
  background: rgba(8,8,8,0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-gold);
  padding: 48px 64px;
  box-shadow: var(--glass-shadow-gold);
  position: relative;
}
.preloader-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,168,75,0.5), transparent);
}

/* ─── FOOTER BRAND – GLASS PANEL ───────────────────────── */
.footer-brand {
  position: relative;
}

/* ─── TICKER – GLASS GOLD GRADIENT ─────────────────────── */
.ticker-wrap {
  background: linear-gradient(to right,
    var(--gold-dark),
    var(--gold),
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  ) !important;
  position: relative;
  overflow: hidden;
}
.ticker-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── BUTTONS – GLASS EFFECT ────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(200,168,75,0.25),
              inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(200,168,75,0.4),
              inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-ghost {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.04) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ─── LEGACY IMAGE – GLASS FRAME ────────────────────────── */
.legacy-image-wrap {
  box-shadow: 0 24px 80px rgba(0,0,0,0.6),
              0 0 0 1px rgba(200,168,75,0.1),
              inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ─── SCROLL INDICATOR – GLASS ──────────────────────────── */
.scroll-indicator {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 12px 10px;
  border-radius: 2px;
}

/* ─── NAV CTA BUTTON – GLASS ────────────────────────────── */
.nav-cta {
  box-shadow: 0 4px 20px rgba(200,168,75,0.2),
              inset 0 1px 0 rgba(255,255,255,0.2) !important;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}

/* ─── GRAIN OVERLAY (SUBTLE DEPTH) ──────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
}

/* ─── GLOW AMBIENT (SECTIONS) ───────────────────────────── */
.legacy-section::after,
.social-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.legacy-section { position: relative; overflow: hidden; }
.legacy-section::after { top: -200px; right: -200px; }
.social-section { position: relative; overflow: hidden; }
.social-section::after { bottom: -200px; left: -200px; }
.legacy-section .container,
.social-section .container { position: relative; z-index: 1; }

/* ─── QUOTE SECTION – GLASS ─────────────────────────────── */
.quote-section {
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(200,168,75,0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ─── FOOTER – GLASS TOP BORDER ─────────────────────────── */
.site-footer {
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(200,168,75,0.3) 30%,
    rgba(200,168,75,0.6) 50%,
    rgba(200,168,75,0.3) 70%,
    transparent
  );
}

/* ─── VIDEO PLACEHOLDERS – GLASS ────────────────────────── */
.video-placeholder {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--glass-shine), transparent);
}
.video-placeholder:hover {
  border-color: var(--glass-border-gold) !important;
  box-shadow: var(--glass-shadow-gold);
}


/* ════════════════════════════════════════════════════════
   ✦ ERWEITERTE NAVIGATION – ALLE ELEMENTE
   ════════════════════════════════════════════════════════ */

/* ─── SCROLL PROGRESS BAR ───────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 10000;
  background: rgba(200,168,75,0.1);
}
.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(200,168,75,0.6);
}

/* ─── SECTION BREADCRUMB ────────────────────────────────── */
.section-breadcrumb {
  position: fixed;
  left: 32px;
  bottom: 40px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 8px 14px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
  pointer-events: none;
}
.section-breadcrumb.visible {
  opacity: 1;
  transform: translateX(0);
}
.breadcrumb-home,
.breadcrumb-current {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.breadcrumb-home { color: var(--text-dim); }
.breadcrumb-sep  { color: var(--gold); font-size: 10px; }
.breadcrumb-current { color: var(--gold); }

/* ─── DROPDOWN NAV ──────────────────────────────────────── */
.nav-item { position: relative; }
.nav-arrow {
  font-size: 8px;
  margin-left: 3px;
  display: inline-block;
  transition: transform var(--transition);
  vertical-align: middle;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-gold);
  box-shadow: var(--glass-shadow-gold), 0 0 0 1px rgba(200,168,75,0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
}
.dropdown-link:last-child { border-bottom: none; }
.dropdown-link:hover {
  color: var(--gold);
  background: rgba(200,168,75,0.07);
  padding-left: 24px;
}
.dropdown-icon {
  font-size: 6px;
  color: var(--gold);
  opacity: 0.5;
}

/* ─── SEARCH BUTTON ─────────────────────────────────────── */
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  padding: 4px;
}
.nav-search-btn svg { width: 18px; height: 18px; }
.nav-search-btn:hover { color: var(--gold); }

/* ─── SEARCH OVERLAY ────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-out);
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-inner {
  width: 100%;
  max-width: 720px;
  padding: 0 32px;
  position: relative;
}
.search-close {
  position: absolute;
  top: -60px;
  right: 32px;
  font-size: 20px;
  color: var(--text-muted);
  padding: 8px;
  transition: color var(--transition);
}
.search-close:hover { color: var(--gold); }

.search-form {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 16px;
  margin-bottom: 40px;
}
#search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--white);
  letter-spacing: 0.05em;
}
#search-input::placeholder { color: rgba(255,255,255,0.15); }
.search-form button[type="submit"] {
  color: var(--gold);
  padding: 8px;
}
.search-form button[type="submit"] svg { width: 32px; height: 32px; }

.search-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.search-tag-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}
.search-tag {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.search-tag:hover {
  background: var(--glass-bg-gold);
  border-color: var(--glass-border-gold);
  color: var(--gold);
}

/* ─── BACK TO TOP BUTTON ────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 32px;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--glass-bg-gold);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-gold);
  box-shadow: var(--glass-shadow-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  cursor: pointer;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 32px rgba(200,168,75,0.4);
}

/* ─── SITEMAP / INTERNAL TAG CLOUD (FOOTER ENHANCEMENT) ─── */
.footer-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.footer-tag {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  background: rgba(200,168,75,0.05);
  border: 1px solid rgba(200,168,75,0.12);
  color: var(--text-dim);
  transition: all var(--transition);
  text-transform: uppercase;
}
.footer-tag:hover {
  color: var(--gold);
  border-color: var(--glass-border-gold);
}

/* Responsive for new nav elements */
@media (max-width: 768px) {
  .section-breadcrumb { display: none; }
  .nav-dropdown { display: none; }
  .nav-search-btn { display: none; }
}

/* ════════════════════════════════════════════════════════
   ✦ VIDEO SYSTEM – Banner, Cards, Modal, GIF
   ════════════════════════════════════════════════════════ */

/* ─── HERO VIDEO BANNER ─────────────────────────────────── */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1; /* Über dem Fallback-Bild */
  /* Kein transform/animation auf video – ruckelt auf iOS Safari */
  opacity: 0;
  transition: opacity 1s ease;
}
/* Zeige Video wenn es wirklich spielt */
.hero-bg-video.playing {
  opacity: 1;
}
/* Wenn kein Video da: Fallback-Bild (bereits im HTML als img.hero-bg-img) bleibt sichtbar */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0; /* Unter dem Video */
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

/* ─── HERO VIDEO MUTE BUTTON ────────────────────────────── */
.hero-video-mute {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  opacity: 0; /* Nur sichtbar wenn Video läuft */
}
.hero-video-mute.visible {
  opacity: 1;
}
.hero-video-mute:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-video-mute svg {
  width: 16px;
  height: 16px;
}

/* ─── VIDEO SECTION HEADER ──────────────────────────────── */
.video-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.video-section-header .section-tag {
  display: block;
  margin-bottom: 12px;
}
.video-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  color: var(--white) !important;
  margin-bottom: 12px !important;
}
.video-subtitle {
  color: var(--text-muted);
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ─── VIDEO GRID ────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ─── VIDEO CARD ────────────────────────────────────────── */
.video-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.video-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--glass-shine), transparent);
  pointer-events: none;
  z-index: 2;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-gold);
  box-shadow: var(--glass-shadow-gold);
}

/* Thumbnail Container */
.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--card);
}
.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.video-card:hover .video-thumb-img {
  transform: scale(1.06);
}

/* Overlay */
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.video-card:hover .video-card-overlay {
  background: rgba(0,0,0,0.5);
}

/* Play Button */
.video-play-btn {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 0 0 rgba(200,168,75,0.4),
              inset 0 1px 0 rgba(255,255,255,0.25);
}
.video-play-btn svg {
  width: 22px;
  height: 22px;
  color: var(--black);
  margin-left: 3px;
}
.video-card:hover .video-play-btn {
  transform: scale(1.05);
  box-shadow: 0 0 0 12px rgba(200,168,75,0.2),
              inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Duration / Type Badge */
.video-duration {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,168,75,0.3);
  color: var(--gold);
}

/* Card Info */
.video-card-info {
  padding: 20px 20px 22px;
}
.video-card-info h4 {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.video-card-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── GIF CARD VARIANT ──────────────────────────────────── */
.video-card--gif .gif-overlay {
  background: rgba(0,0,0,0.2);
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px;
}
.gif-badge {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--black);
  animation: gifPulse 2s ease-in-out infinite;
}
@keyframes gifPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

/* ─── VIDEO MODAL ───────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  padding: 20px;
}
.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-inner {
  width: 100%;
  max-width: 1100px;
  position: relative;
  animation: modalSlideIn 0.4s var(--ease-out);
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.96) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 22px;
  color: rgba(255,255,255,0.6);
  padding: 8px 12px;
  z-index: 2;
  transition: color var(--transition);
}
.video-modal-close:hover { color: var(--gold); }

.video-modal-title {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-left: 2px;
}

/* Responsive Video Container (16:9) */
.video-modal-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: var(--black);
  border: 1px solid var(--glass-border-gold);
  box-shadow: var(--glass-shadow-gold),
              0 0 60px rgba(200,168,75,0.1);
}
.video-modal-player iframe,
.video-modal-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── RESPONSIVE VIDEO EMBED UTILITY ───────────────────── */
/* Verwendung: <div class="video-embed"><iframe ...></iframe></div> */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-embed iframe,
.video-embed video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ─── GIF INTEGRATION UTILITIES ────────────────────────── */
/* GIF-Bild das loop läuft */
.gif-loop {
  display: block;
  width: 100%;
  height: auto;
}
/* GIF in einer Card */
.gif-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border-gold);
}
.gif-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* GIF-Overlay Text */
.gif-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ─── VIDEO SECTION RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-modal-inner { max-width: 100%; }
  .video-modal { padding: 12px; }
  .video-modal-close { top: -44px; }
  .hero-video-mute { display: none; }
}


/* ════════════════════════════════════════════════════════
   ✦ LOGO SYSTEM – Premium Integration
   ════════════════════════════════════════════════════════ */

/* ─── HERO LOGO ──────────────────────────────────────────── */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-logo-main {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  display: block;
  mix-blend-mode: screen;  /* Schwarz wird transparent – Logo schwebt */
  filter: brightness(1.1) contrast(1.05);
  position: relative;
  z-index: 2;
  animation: logoReveal 1s 0.4s var(--ease-out) both;
  transition: filter var(--transition), transform var(--transition);
}
.hero-logo-main:hover {
  filter: brightness(1.25) contrast(1.1);
  transform: scale(1.03);
}

/* Gold-Glow hinter dem Logo */
.hero-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 168, 75, 0.18) 0%,
    rgba(200, 168, 75, 0.08) 40%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.85) translateY(-10px); filter: brightness(0); }
  to   { opacity: 1; transform: scale(1) translateY(0);        filter: brightness(1.1) contrast(1.05); }
}

/* ─── NAV LOGO ───────────────────────────────────────────── */
.nav-logo img {
  height: 60px !important;
  width: auto !important;
  mix-blend-mode: screen;
  filter: brightness(1.05);
  transition: filter var(--transition), transform var(--transition) !important;
}
.nav-logo:hover img {
  filter: brightness(1.3) !important;
  transform: scale(1.06) !important;
}

/* ─── FOOTER LOGO ────────────────────────────────────────── */
.footer-logo img {
  height: 80px !important;
  width: auto !important;
  mix-blend-mode: screen;
  filter: brightness(0.9);
  transition: filter var(--transition), transform var(--transition);
}
.footer-logo:hover img {
  filter: brightness(1.2) !important;
}

/* ─── LOGO WATERMARK (Dekorativer Hintergrund in Sections) ─ */
.logo-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  mix-blend-mode: screen;
}
.logo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ════════════════════════════════════════════════════════
   ✦ BUSINESS BANNER – Booking Fokus
   ════════════════════════════════════════════════════════ */
.business-banner {
  background: var(--dark);
  border-top: 1px solid var(--glass-border-gold);
  border-bottom: 1px solid var(--glass-border-gold);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.business-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200,168,75,0.03) 0%,
    transparent 50%,
    rgba(200,168,75,0.02) 100%
  );
  pointer-events: none;
}

.business-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.business-banner-tag {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.business-banner-services {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.business-banner-services span {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
}
.business-banner-services .sep {
  color: var(--gold);
  opacity: 0.5;
  padding: 0 10px;
  font-size: 10px;
}

.business-banner-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.business-email {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.business-email:hover { color: var(--gold); }

.business-cta {
  padding: 12px 28px !important;
  font-size: 12px !important;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════
   ✦ SOCIAL PROOF – TV-Logos / Trust Badges
   ════════════════════════════════════════════════════════ */
.social-proof {
  margin: 24px 0;
}
.social-proof-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.tv-badge {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: default;
}
.tv-badge:hover {
  background: rgba(200,168,75,0.08);
  border-color: rgba(200,168,75,0.25);
  color: var(--gold);
}
.tv-badge--guinness {
  border-color: rgba(200,168,75,0.2);
  color: var(--gold);
  background: rgba(200,168,75,0.06);
}
.tv-badge--fr { color: rgba(255,255,255,0.4); }

/* ─── LEGACY DUAL CTAs ───────────────────────────────────── */
.legacy-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ════════════════════════════════════════════════════════
   ✦ SEO-OPTIMIERTE H1/H2 HEADING STRUKTUR
   ════════════════════════════════════════════════════════ */

/* Verbesserte Keyword-Dichte durch sichtbare Alt-H2 unter Hero */
.hero-seo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .business-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .business-banner-services { gap: 0; }
  .business-banner-right {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .hero-logo-main { width: clamp(100px, 30vw, 150px); }
  .social-proof-logos { gap: 6px; }
  .tv-badge { font-size: 10px; padding: 5px 10px; }
}

