:root {
  --c-bg: #0e0e0e;
  --c-bg-2: #1a1a1a;
  --c-gold: #c9a84c;
  --c-gold-light: #e8d5a3;
  --c-text: #f0ede8;
  --c-muted: #8a8a8a;
  --c-line: #2a2a2a;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Lato", system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.8;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  body.has-cursor {
    cursor: none;
  }
}

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

a {
  color: var(--c-gold-light);
  text-decoration: none;
  transition: color 0.45s var(--ease);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Scroll progress —— */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 9998;
  pointer-events: none;
  background: transparent;
}

.scroll-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  transition: width 0.05s linear;
}

/* —— Nach oben —— */
.scroll-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 9990;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.65);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  color: var(--c-gold-light);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s,
    border-color 0.3s, background 0.3s;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: var(--c-gold);
  background: rgba(201, 168, 76, 0.12);
  color: var(--c-gold);
}

@media (min-width: 1024px) {
  .scroll-top {
    bottom: max(2rem, env(safe-area-inset-bottom));
    right: max(1.5rem, env(safe-area-inset-right));
    width: 52px;
    height: 52px;
  }
}

/* Über Cookie-Banner heben, wenn sichtbar */
body:has(.cookie-banner.is-visible) .scroll-top {
  bottom: max(6.75rem, calc(env(safe-area-inset-bottom) + 5.75rem));
}

@media (min-width: 1024px) {
  body:has(.cookie-banner.is-visible) .scroll-top {
    bottom: max(5.25rem, calc(env(safe-area-inset-bottom) + 4.25rem));
  }
}

/* —— Hero: EQ + Ton —— */
.hero-audio-dock {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(5.25rem, calc(env(safe-area-inset-bottom) + 4.25rem));
  z-index: 9989;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.55rem 0.45rem 0.65rem;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 3px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .hero-audio-dock {
    display: none;
  }
}

body:has(.cookie-banner.is-visible) .hero-audio-dock {
  bottom: max(7.25rem, calc(env(safe-area-inset-bottom) + 6.25rem));
}

@media (min-width: 1024px) {
  .hero-audio-dock {
    bottom: max(5.75rem, env(safe-area-inset-bottom));
  }

  body:has(.cookie-banner.is-visible) .hero-audio-dock {
    bottom: max(6.75rem, calc(env(safe-area-inset-bottom) + 5.5rem));
  }
}

#hero-eq-canvas {
  display: block;
  width: 132px;
  height: 42px;
  vertical-align: middle;
}

.hero-audio-mute {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  background: rgba(14, 14, 14, 0.6);
  color: var(--c-gold-light);
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s, color 0.3s;
}

.hero-audio-mute:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(201, 168, 76, 0.1);
}

.hero-audio-mute__icon {
  display: none;
}

.hero-audio-dock:not(.is-unlocked) .hero-audio-mute__icon--enable {
  display: block;
}

.hero-audio-dock.is-unlocked:not(.is-user-muted) .hero-audio-mute__icon--playing {
  display: block;
}

.hero-audio-dock.is-unlocked.is-user-muted .hero-audio-mute__icon--muted {
  display: block;
}

/* —— Preloader —— */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg);
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

#preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader .preloader-logo {
  width: min(280px, 70vw);
  animation: preloader-pulse 1.6s ease-in-out infinite;
}

#preloader .preloader-logo path {
  fill: var(--c-gold);
}

@keyframes preloader-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* —— Custom cursor —— */
#lux-cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: difference;
}

body.has-cursor #lux-cursor {
  opacity: 0.85;
}

#lux-cursor.is-pointer {
  transform: scale(1.25);
  background: rgba(201, 168, 76, 0.12);
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease), border-color 0.5s, backdrop-filter 0.5s;
}

.site-header.is-scrolled {
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.site-header__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

@media (min-width: 1024px) {
  .site-header__logo img {
    height: 40px;
  }
}

.site-header__phone {
  display: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

@media (min-width: 1024px) {
  .site-header__phone {
    display: block;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .nav-desktop a {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-text);
  }

  .nav-desktop a:hover {
    color: var(--c-gold);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--c-gold);
  background: transparent;
  color: var(--c-gold-light);
  cursor: pointer;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}

.btn:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}

.btn--ghost:hover {
  color: var(--c-bg);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: transparent;
  color: var(--c-gold);
  cursor: pointer;
  position: relative;
  z-index: 902;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  z-index: 901;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--c-text);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  background: var(--c-bg);
  overflow: hidden;
}

.hero__bg-wrap {
  position: absolute;
  inset: -5%;
  z-index: 0;
  overflow: hidden;
  animation: hero-bg-drift 32s ease-in-out infinite alternate;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  background: var(--c-bg);
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-wrap {
    animation: none;
    inset: 0;
  }
}

@keyframes hero-bg-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-0.8%, -0.5%, 0);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(42, 36, 24, 0.35) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(8, 8, 8, 0.75) 0%, transparent 42%),
    linear-gradient(to top, rgba(8, 8, 8, 0.88) 0%, transparent 48%),
    radial-gradient(ellipse 85% 70% at 50% 48%, rgba(6, 6, 6, 0.72) 0%, rgba(14, 14, 14, 0.35) 55%, transparent 78%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 2px;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow:
    0 4px 48px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero__logo {
  width: min(420px, 85vw);
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1) drop-shadow(0 4px 24px rgba(0, 0, 0, 0.85));
  opacity: 0;
  animation: hero-in 1.4s var(--ease) 0.2s forwards;
}

.hero__logo path {
  fill: var(--c-text);
}

.hero__tagline {
  font-size: clamp(13px, 2.2vw, 15px);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 2.5rem;
  line-height: 1.9;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
  opacity: 0;
  animation: hero-in 1.2s var(--ease) 0.5s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: hero-in 1.2s var(--ease) 0.75s forwards;
}

.hero__actions .btn {
  text-shadow: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
  opacity: 0;
  animation: hero-in 1s var(--ease) 1.1s forwards;
}

.hero__scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--c-gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}

/* —— Scroll canvas sections —— */
.scroll-anim-wrapper {
  position: relative;
}

.scroll-anim-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--c-bg);
}

.anim-canvas,
.scroll-anim-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.scroll-anim-video {
  object-fit: cover;
  pointer-events: none;
  background: var(--c-bg);
}

.anim-load-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 5;
  transition: opacity 0.5s;
}

.anim-load-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.anim-load-bar__fill {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: var(--c-gold);
  transition: transform 0.2s linear;
}

.anim-overlay {
  position: absolute;
  bottom: 10%;
  left: 6%;
  right: 6%;
  z-index: 10;
  max-width: 640px;
  opacity: 0;
  pointer-events: none;
}

.anim-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 1rem;
}

.anim-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--c-text);
}

.anim-sub {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--c-muted);
  max-width: 36ch;
}

/* —— Section shell —— */
.section {
  padding: clamp(4rem, 12vw, 8rem) 1.5rem;
  position: relative;
}

.section__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 1rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  margin: 0 0 1.5rem;
  color: var(--c-text);
}

/* —— Brands —— */
.brands {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}

.brands-marquee-wrap {
  overflow: hidden;
  margin-bottom: 3rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-marquee {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.brands-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brands-marquee img {
  height: clamp(44px, 5.5vw, 56px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.brands-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand-card {
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 2rem;
  background: rgba(26, 26, 26, 0.6);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.brand-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
}

.brand-card__logo {
  height: clamp(48px, 6vw, 64px);
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.brand-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-gold-light);
  margin: 0 0 1rem;
}

.brand-card__btn {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* —— Norbert —— */
.norbert-section {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .norbert-section {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .norbert-section .norbert-photo {
    order: 2;
  }

  .norbert-section .norbert-content {
    order: 1;
  }
}

.norbert-photo {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.norbert-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.norbert-content blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.35;
  color: var(--c-gold-light);
  margin: 0 0 1.5rem;
}

.norbert-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
}

.norbert-role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 1.25rem;
}

/* —— Product sliders —— */
.slider-section {
  background: var(--c-bg);
}

.slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.slider__viewport {
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 0.65s var(--ease);
}

.slider__slide {
  min-width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.slider__visual {
  height: min(52vh, 420px);
  border-radius: 2px;
  background: linear-gradient(135deg, #1a1610, #2a2418 50%, #0e0e0e);
  border: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: rgba(240, 237, 232, 0.35);
}

.slider__meta {
  margin-top: 1.5rem;
  text-align: center;
}

.slider__meta h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 0 0 0.35rem;
}

.slider__meta p {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.95rem;
}

.slider__bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 1.5rem;
}

.slider__bar-fill {
  height: 100%;
  width: 33.333%;
  background: var(--c-gold);
  transition: width 0.45s var(--ease);
}

.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(14, 14, 14, 0.6);
  color: var(--c-gold);
  cursor: pointer;
  z-index: 2;
}

.slider__nav--prev {
  left: -12px;
}

.slider__nav--next {
  right: -12px;
}

@media (max-width: 768px) {
  .slider__nav {
    display: none;
  }
}

.slider__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
}

.slider__dot.is-active {
  background: var(--c-gold);
}

/* —— Erbschmuck + audio —— */
.erbschmuck {
  background: var(--c-bg-2);
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 560px;
  margin: 2rem 0 0;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(14, 14, 14, 0.5);
}

.audio-player.is-unavailable {
  opacity: 0.5;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--c-gold);
  background: transparent;
  color: var(--c-gold);
  cursor: pointer;
  flex-shrink: 0;
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-name {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--c-muted);
}

.progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--c-gold);
}

/* —— Magazin —— */
.magazin-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

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

.magazine-cover {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1f1c16, #0e0e0e);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-gold-light);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
}

.newsletter-form button {
  align-self: flex-start;
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #252018, #121210);
  border: 1px solid rgba(201, 168, 76, 0.12);
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}

.gallery-item:hover {
  box-shadow: 0 0 0 1px var(--c-gold), 0 12px 40px rgba(0, 0, 0, 0.45);
  transform: scale(1.02);
}

/* —— Kontakt —— */
.kontakt-split {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.map-placeholder {
  min-height: 360px;
  background: #141414;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--c-muted);
}

.map-placeholder button {
  margin-top: 1rem;
}

.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: var(--c-bg-2);
  color: var(--c-text);
  font-family: var(--font-sans);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--c-muted);
}

.form-note {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 0.5rem;
}

/* —— Footer —— */
.site-footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--c-line);
  background: #0a0a0a;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__logo img {
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.footer-meta {
  font-size: 12px;
  color: var(--c-muted);
}

.legal-block {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.85rem;
  color: var(--c-muted);
}

.legal-block h3 {
  font-size: 1rem;
  color: var(--c-text);
  margin-top: 2rem;
}

/* —— Cookie banner —— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 1.25rem 1.5rem;
  background: rgba(10, 10, 10, 0.96);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: var(--c-muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions button {
  font-size: 11px;
}
