/* AlbMax · Your Prime Time – Stylesheet */

/* ============= Lokal gehostete Schriften (DSGVO-konform) ============= */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('../fonts/montserrat-200.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/montserrat-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-600.woff2') format('woff2');
}

:root {
  --dark: #0e0d0c;
  --dark-2: #161412;
  --dark-3: #1f1c19;
  --gold: #e0b259;
  --gold-light: #f1cb7e;
  --gold-deep: #b8893d;
  --gold-soft: rgba(224,178,89,0.22);
  --gold-glow: 0 0 18px rgba(224,178,89,0.45);
  --gold-glow-soft: 0 0 12px rgba(224,178,89,0.28);
  --cream: #efe7d6;
  --grey: #b2a99e;
  --grey-2: #6b655d;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 200;
  width: 0%;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px var(--gold);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 12px;
  color: #fff;
}

p { color: var(--grey); margin-bottom: 16px; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
  text-shadow: var(--gold-glow-soft);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}

/* ---------- Scroll-Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { transform: translateX(-50px); }
.reveal-left.is-visible { transform: translateX(0); }
.reveal-right { transform: translateX(50px); }
.reveal-right.is-visible { transform: translateX(0); }
.reveal-scale { transform: scale(0.95); }
.reveal-scale.is-visible { transform: scale(1); }

/* Stagger delays for children */
.stagger > * { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }
.stagger > *:nth-child(7) { transition-delay: 0.6s; }
.stagger > *:nth-child(8) { transition-delay: 0.7s; }

/* ---------- Navigation (zentrierter Logo-Salon-Stil) ---------- */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px 24px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
nav.top.scrolled {
  background: rgba(14,13,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 40px 16px;
}

nav.top .inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.nav-left, .nav-right {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 38px;
  margin: 0;
  padding: 0;
}
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.logo-link {
  display: block;
  text-align: center;
  position: relative;
}
.logo-img {
  height: 104px;
  width: auto;
  display: block;
  transition: height 0.4s;
  shape-rendering: geometricPrecision;
}
nav.top.scrolled .logo-img { height: 70px; }
/* Goldlinien neben dem Logo komplett deaktiviert */
.logo-link::before,
.logo-link::after { display: none; }

/* (Alte Goldlinien-Definition bleibt zur Sicherheit inaktiv) */
.logo-link-old-deco::before,
.logo-link-old-deco::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(224,178,89,0.85));
  opacity: 0;
  transition: opacity 0.6s, width 0.6s;
}
.logo-link::before { right: 100%; margin-right: 12px; }
.logo-link::after {
  left: 100%; margin-left: 12px;
  background: linear-gradient(to left, transparent, rgba(224,178,89,0.85));
  box-shadow: 0 0 8px rgba(224,178,89,0.35);
}
nav.top.scrolled .logo-link::before,
nav.top.scrolled .logo-link::after { opacity: 1; }

/* Menüpunkte: Sans-Serif Versalien in Gold (gleicher Stil wie Eyebrow, aber kompakter) */
nav.top ul a {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding: 8px 2px;
  transition: color 0.3s, text-shadow 0.3s;
  text-shadow: var(--gold-glow-soft);
}
nav.top ul a:not(.nav-cta):hover { text-shadow: var(--gold-glow); }

/* Sanfte Goldlinie, die beim Hover unter dem Buchstaben "fließt" */
nav.top ul a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: width 0.5s cubic-bezier(.4,.2,.2,1);
}
nav.top ul a:hover { color: var(--gold-light); }
nav.top ul a:hover::after { width: 130%; }

/* "Anfragen" wird wie die anderen Menüpunkte behandelt - kein Rahmen mehr */
.nav-cta {
  border: none;
  padding: 8px 2px;
  background: transparent;
}
.nav-cta:hover { background: transparent; }

/* Mobile-Buttons standardmäßig unsichtbar */
.mobile-cta,
.mobile-burger { display: none; }
.mobile-menu { display: none; }

/* Mobile */
@media (max-width: 900px) {
  nav.top { padding: 14px 20px; }
  nav.top.scrolled { padding: 10px 20px; }
  nav.top .inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
  }
  .nav-left, .nav-right { display: none; }
  .logo-img { height: 56px; }
  nav.top.scrolled .logo-img { height: 44px; }
  nav.top::after,
  .logo-link::before,
  .logo-link::after { display: none; }

  /* Anfrage-Icon links */
  .mobile-cta {
    display: flex;
    align-items: center;
    justify-self: start;
    color: var(--gold);
    padding: 8px;
    transition: color 0.3s;
    text-shadow: var(--gold-glow-soft);
  }
  .mobile-cta svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 0 6px rgba(224,178,89,0.4));
  }
  .mobile-cta:active { color: var(--gold-light); }

  /* Burger-Menü rechts */
  .mobile-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    background: transparent;
    border: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 0;
    gap: 6px;
  }
  .mobile-burger span {
    display: block;
    width: 26px;
    height: 1.4px;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(.4,.2,.2,1), opacity 0.3s;
    box-shadow: 0 0 6px rgba(224,178,89,0.4);
  }
  .mobile-burger.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
  .mobile-burger.open span:nth-child(2) { opacity: 0; }
  .mobile-burger.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

  /* Vollbild Mobile-Menü */
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse at top, rgba(200,160,99,0.10), transparent 60%),
      rgba(14,13,12,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(.4,.2,.2,1);
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .mobile-menu li {
    margin: 22px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .mobile-menu.open li { opacity: 1; transform: translateY(0); }
  .mobile-menu.open li:nth-child(1) { transition-delay: 0.10s; }
  .mobile-menu.open li:nth-child(2) { transition-delay: 0.18s; }
  .mobile-menu.open li:nth-child(3) { transition-delay: 0.26s; }
  .mobile-menu.open li:nth-child(4) { transition-delay: 0.34s; }
  .mobile-menu.open li:nth-child(5) { transition-delay: 0.42s; }
  .mobile-menu.open li:nth-child(6) { transition-delay: 0.50s; }

  .mobile-menu a {
    font-family: var(--sans);
    font-size: 0.95rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: var(--gold-glow-soft);
    transition: color 0.3s, text-shadow 0.3s;
  }
  .mobile-menu a:hover,
  .mobile-menu a:active {
    color: var(--gold-light);
    text-shadow: var(--gold-glow);
  }

  .mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: transparent;
    border: 1px solid rgba(200,160,99,0.3);
    color: var(--gold);
    cursor: pointer;
    padding: 8px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, background 0.3s;
  }
  .mobile-menu-close:hover {
    border-color: var(--gold);
    background: rgba(200,160,99,0.1);
  }
  .mobile-menu-close svg {
    width: 22px;
    height: 22px;
  }

  /* Wenn Menü offen, body nicht scrollen */
  body.menu-open { overflow: hidden; }
}

/* ---------- HERO SLIDER ---------- */
.hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 32px 240px;
}
@media (max-width: 900px) {
  .hero { min-height: 100vh; padding: 120px 24px 160px; }
}

/* Slider images stacked, fade in/out via JS */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0;
  transition: opacity 1.6s ease-in-out, transform 9s ease-out;
  transform: scale(1.08);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-1 { background-image: url('../images/albmax-haus-mit-pool-tag.webp'); }
.hero-slide-2 { background-image: url('../images/albmax-pool-aussenbereich.webp'); }
.hero-slide-3 { background-image: url('../images/albmax-terrasse-mit-pool.webp'); }
.hero-slide-4 { background-image: url('../images/albmax-bad-mit-freistehender-wanne.webp'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Langer & wirkungsvoller Fade: ab 40 % subtil, ab 60 % deutlich, ab 90 % dunkel */
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 35%,
      rgba(14, 13, 12, 0.10) 45%,
      rgba(14, 13, 12, 0.22) 55%,
      rgba(14, 13, 12, 0.40) 65%,
      rgba(14, 13, 12, 0.60) 75%,
      rgba(14, 13, 12, 0.78) 83%,
      rgba(14, 13, 12, 0.90) 90%,
      rgba(22, 20, 18, 0.97) 96%,
      var(--dark-2) 100%
    ),
    rgba(33, 33, 33, 0.10);
  z-index: 1;
}

/* Zusätzlicher Top-Fade in der Story-Sektion für nahtlosen Übergang */
.story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 320px;
  background: linear-gradient(
    180deg,
    var(--dark-2) 0%,
    rgba(22, 20, 18, 0.90) 25%,
    rgba(22, 20, 18, 0.60) 55%,
    rgba(22, 20, 18, 0.25) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Zentrierte dunkle Glas-Box: von ganz oben bis 240px über dem Hero-Ende */
.hero-panel {
  position: absolute;
  top: 0;
  bottom: 240px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1180px;
  background: rgba(20,18,16,0.78);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-panel {
    bottom: 160px;
    width: calc(100% - 32px);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero h1 br + em,
.hero h1 em,
.hero h1 .line1 { white-space: nowrap; display: inline-block; }
.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 0 30px rgba(224,178,89,0.5), 0 4px 30px rgba(0,0,0,0.5);
}

.hero .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-ghost {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 38px;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  font-weight: 400;
  display: inline-block;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 24px -4px rgba(224,178,89,0.45);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(224,178,89,0.7), 0 0 36px -2px rgba(224,178,89,0.5);
}
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Slider controls */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 14px;
}
.hero-dot {
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}
.hero-dot.active { background: var(--gold); transform: scaleY(2); }
.hero-dot:hover { background: var(--gold-light); }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  animation: bounce 2.4s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- Section Defaults ---------- */
section { padding: 110px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }

/* ---------- Story ---------- */
.story {
  position: relative;
  background: var(--dark-2);
  padding-top: 0;
  overflow: hidden;
}
/* Goldglow nur am unteren Ende der Story-Sektion (nicht oben am Video) */
.story::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 65%;
  height: 50%;
  background: radial-gradient(ellipse at bottom left, rgba(224,178,89,0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.story-video {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 1040px;
  margin: 30px auto 0;
  overflow: hidden;
  background: var(--dark-2);
  cursor: pointer;
  z-index: 10;
  /* Nur zarter Goldrand + Schatten, kein dunkler Frame mehr */
  box-shadow:
    0 0 0 1px rgba(200,160,99,0.25),
    0 30px 80px -20px rgba(0,0,0,0.7);
  transition: transform 0.4s;
}
.story-video:hover { transform: translateY(-4px); }
@media (max-width: 900px) {
  .story-video {
    margin-top: 20px;
    box-shadow:
      0 0 0 1px rgba(200,160,99,0.25),
      0 16px 50px -16px rgba(0,0,0,0.7);
  }
}
.story-video::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(200,160,99,0.4);
  z-index: 4;
  pointer-events: none;
  transition: inset 0.4s;
}
.story-video:hover::before { inset: 8px; }

.story-video video,
.story-video img.poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-video img.poster {
  z-index: 2;
  transition: opacity 0.4s;
}
.story-video.playing img.poster { opacity: 0; pointer-events: none; }

.story-video .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(200,160,99,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s;
  box-shadow: 0 0 0 0 rgba(200,160,99,0.5);
  animation: pulse 2.4s infinite;
}
.story-video:hover .play-btn {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}
.story-video.playing .play-btn { opacity: 0; pointer-events: none; }
.story-video .play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--dark);
  margin-left: 4px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,160,99,0.5); }
  70% { box-shadow: 0 0 0 24px rgba(200,160,99,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,160,99,0); }
}

/* Video text overlay - stronger #212121 wash */
.story-video::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(33,33,33,0.65) 0%, rgba(33,33,33,0.25) 35%, rgba(33,33,33,0.25) 60%, rgba(33,33,33,0.85) 100%),
    rgba(33,33,33,0.25);
  pointer-events: none;
  transition: opacity 0.4s;
}
.story-video.playing::after { opacity: 0; }

.story-video .video-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 5;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 14px;
  border: 1px solid var(--gold);
  background: rgba(14,13,12,0.55);
  backdrop-filter: blur(4px);
  transition: opacity 0.4s;
}
.story-video .video-caption {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  z-index: 5;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.4s;
}
.story-video .video-caption .top {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.story-video .video-caption .main {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.7);
}
.story-video.playing .video-tag,
.story-video.playing .video-caption { opacity: 0; }

/* ============= FULL-BLEED ATMOSPHÄRE-SEKTIONEN ============= */
.bleed-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px;
  overflow: hidden;
  background-color: var(--dark);
}
.bleed-section .bleed-bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}
.bleed-section .bleed-overlay {
  position: absolute;
  inset: 0;
  /* Oben heller starten, damit Übergang von voriger Section nahtlos ist */
  background: linear-gradient(180deg,
    rgba(14,13,12,0.20) 0%,
    rgba(14,13,12,0.35) 20%,
    rgba(14,13,12,0.50) 45%,
    rgba(14,13,12,0.55) 65%,
    rgba(14,13,12,0.80) 100%
  );
  z-index: 2;
}
.bleed-section .bleed-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
}
.bleed-section .bleed-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.bleed-section .bleed-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 32px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.7);
}
.bleed-section .bleed-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto;
}
.bleed-section .bleed-divider {
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 36px auto;
}

/* Bleed-1: between Story and Pakete */
.bleed-1 .bleed-bg { background-image: url('../images/albmax-pool-atmosphaere.webp'); }

/* Bleed-2: between Pakete and Ausstattung */
.bleed-2 .bleed-bg { background-image: url('../images/albmax-3.webp'); }

/* Bleed-3: between Ausstattung and Galerie */
.bleed-3 .bleed-bg { background-image: url('../images/albmax-interieur-detail.webp'); }

/* Bleed-4: between Tagesablauf and Stimmen */
.bleed-4 .bleed-bg { background-image: url('../images/albmax-designer-kueche-wohnraum.webp'); }

/* Mobile: disable fixed-attachment (iOS perf) */
@media (max-width: 900px) {
  .bleed-section .bleed-bg { background-attachment: scroll; }
  .bleed-section { min-height: 50vh; padding: 80px 24px; }
}

/* Decorative corner brackets in bleed sections */
.bleed-section .bleed-content::before,
.bleed-section .bleed-content::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  opacity: 0.6;
}
.bleed-section .bleed-content::before {
  top: -28px; left: -28px;
  border-right: 0;
  border-bottom: 0;
}
.bleed-section .bleed-content::after {
  bottom: -28px; right: -28px;
  border-left: 0;
  border-top: 0;
}
@media (max-width: 900px) {
  .bleed-section .bleed-content::before,
  .bleed-section .bleed-content::after { display: none; }
}

.story-text {
  text-align: center;
  max-width: 760px;
  margin: 90px auto 0;
}
.story-text p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--cream);
}
.story-text .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 40px;
}
.story-text .divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
}

/* ---------- Pakete (3 Premium Events) ---------- */
.pakete {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(224,178,89,0.12), transparent 65%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(224,178,89,0.09), transparent 65%),
    var(--dark);
  padding-bottom: 60px;
}

.event-rows { display: flex; flex-direction: column; gap: 140px; }
@media (max-width: 900px) { .event-rows { gap: 80px; } }

.event-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.event-row.reversed { grid-template-columns: 1fr 1.15fr; }
.event-row.reversed .event-image-wrap { order: 2; }
.event-row.reversed .event-content { order: 1; }

.event-image-wrap { position: relative; }

/* ----- Wedding Special: smarter Sondersatz (breiter + AM-Monogramm) ----- */
.event-row.reversed {
  padding: 80px 90px;
  margin: 0 -90px;
  background:
    radial-gradient(ellipse at top, rgba(200,160,99,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(200,160,99,0.05) 0%, rgba(200,160,99,0.015) 100%);
  border-top: 1px solid rgba(200,160,99,0.28);
  border-bottom: 1px solid rgba(200,160,99,0.28);
}

/* AM-Monogramm oben — freistehend mit flankierenden Goldlinien */
.event-row.reversed::before {
  content: '';
  position: absolute;
  top: -36px;
  left: 50%;
  width: 380px;
  height: 72px;
  transform: translateX(-50%);
  z-index: 3;
  background-image:
    url('../images/AM.png'),
    linear-gradient(to right, transparent, rgba(200,160,99,0.55) 90%),
    linear-gradient(to right, rgba(200,160,99,0.55) 10%, transparent);
  background-position:
    center center,
    left center,
    right center;
  background-size:
    auto 64px,
    140px 1px,
    140px 1px;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

/* AM-Monogramm unten — gespiegelt */
.event-row.reversed::after {
  content: '';
  position: absolute;
  bottom: -36px;
  left: 50%;
  width: 380px;
  height: 72px;
  transform: translateX(-50%);
  z-index: 3;
  background-image:
    url('../images/AM.png'),
    linear-gradient(to right, transparent, rgba(200,160,99,0.55) 90%),
    linear-gradient(to right, rgba(200,160,99,0.55) 10%, transparent);
  background-position:
    center center,
    left center,
    right center;
  background-size:
    auto 64px,
    140px 1px,
    140px 1px;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

@media (max-width: 900px) {
  .event-row.reversed { padding: 60px 32px; margin: 0 -32px; }
  .event-row.reversed::before,
  .event-row.reversed::after {
    width: 280px; height: 56px;
    background-size: auto 50px, 90px 1px, 90px 1px;
  }
  .event-row.reversed::before { top: -28px; }
  .event-row.reversed::after { bottom: -28px; }
}

@media (max-width: 900px) {
  .event-row, .event-row.reversed { grid-template-columns: 1fr; gap: 40px; }
  .event-row.reversed .event-image,
  .event-row.reversed .event-content { order: unset; }
}

/* Image side */
.event-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark-3);
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
}
.event-image:hover img { transform: scale(1.05); }

/* Slider innerhalb der Event-Image */
.event-slider .event-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.event-slider .event-slide.active { opacity: 1; }
.event-slider:hover .event-slide.active { transform: scale(1.05); }

.event-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.event-dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.event-dot.active {
  background: var(--gold);
  transform: scaleY(2.2);
  box-shadow: 0 0 8px rgba(224,178,89,0.6);
}
.event-dot:hover { background: var(--gold-light); }
.event-image::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200,160,99,0.4);
  z-index: 3;
  pointer-events: none;
  transition: inset 0.6s;
}
.event-image:hover::before { inset: 12px; }

/* Big golden number (sits outside the image so it's not clipped) */
.event-number {
  position: absolute;
  top: -40px;
  font-family: var(--serif);
  font-size: clamp(7rem, 12vw, 11rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 0.85;
  letter-spacing: -0.04em;
  z-index: 4;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  pointer-events: none;
  display: block;
}
.event-row:not(.reversed) .event-number { left: -28px; }
.event-row.reversed .event-number { right: -28px; }

@media (max-width: 900px) {
  .event-number { font-size: 6rem; top: -28px; }
  .event-row:not(.reversed) .event-number,
  .event-row.reversed .event-number { left: -8px; right: auto; }
}

/* Content side */
.event-content { padding: 0 10px; }

.event-label {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

.event-content h3 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 14px;
  color: #fff;
}

.event-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Time window badge */
.time-window {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 18px 30px;
  border: 1px solid var(--gold);
  background: rgba(200,160,99,0.08);
  margin-bottom: 32px;
}
.time-window .moment { text-align: center; }
.time-window .day {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}
.time-window .time {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  text-shadow: var(--gold-glow-soft);
}
.time-window .arrow {
  width: 28px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Highlights row above time-window */
.event-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}
.event-highlights .pill {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid rgba(200,160,99,0.3);
  background: rgba(200,160,99,0.05);
}

/* Features list */
.event-features {
  list-style: none;
  margin-bottom: 36px;
}
.event-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: var(--cream);
  line-height: 1.5;
}
.event-features li::before {
  content: '';
  position: absolute;
  left: 4px; top: 10px;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(224, 178, 89, 0.45);
}
.event-features li::after {
  content: '';
  position: absolute;
  left: 6px; top: 12px;
  width: 4px; height: 4px;
  background: var(--dark-1);
  transform: rotate(45deg);
}

/* Bonus block (used for Foto-Location in Business) */
.event-bonus {
  margin: 0 0 36px;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: var(--dark-2);
}
.event-bonus .bonus-label {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.event-bonus .bonus-headline {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}
.event-bonus p {
  font-size: 0.92rem;
  color: var(--grey);
  margin-bottom: 12px;
}
.event-bonus .bonus-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
}

/* Price + CTA bottom */
.event-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(200,160,99,0.2);
  padding-top: 28px;
  flex-wrap: wrap;
}
.event-price {
  display: flex;
  flex-direction: column;
}
.event-price .amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  text-shadow: var(--gold-glow-soft);
}
.event-price .unit {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-top: 6px;
}

.event-cta {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  text-align: center;
}
.event-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(200,160,99,0.5);
}

/* ---------- Galerie (cool re-mastered) ---------- */
.galerie {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(224,178,89,0.12), transparent 65%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(224,178,89,0.09), transparent 65%),
    var(--dark-2);
}

/* Filter-Tabs */
.galerie-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -40px 0 50px;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(200,160,99,0.25);
  padding: 12px 22px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.4,.2,.2,1);
}
.filter-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  text-shadow: none;
  box-shadow: 0 0 18px -2px rgba(224,178,89,0.5);
}

/* Masonry Grid */
.galerie-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
@media (max-width: 900px) { .galerie-masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 10px; } }
@media (max-width: 600px) { .galerie-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 8px; } }

.g-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
  transition: opacity 0.4s, transform 0.4s;
}
.g-item.hidden { display: none; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter 0.5s;
  filter: brightness(0.92) saturate(1.05);
}
.g-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.15);
}

/* Span variations */
.g-item.span-2 { grid-column: span 2; }
.g-item.tall { grid-row: span 2; }
.g-item.tall.span-2 { grid-row: span 2; grid-column: span 2; }

@media (max-width: 600px) {
  .g-item.span-2 { grid-column: span 2; }
  .g-item.tall { grid-row: span 2; }
}

/* Hover-Caption mit Goldlinie */
.g-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 22px;
  background: linear-gradient(to top, rgba(14,13,12,0.92) 0%, rgba(14,13,12,0.55) 60%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
  z-index: 2;
}
.g-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.g-item .g-cat {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  text-shadow: var(--gold-glow-soft);
}
.g-item .g-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* Decorative Gold-Eckklammern beim Hover */
.g-item::before,
.g-item::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: all 0.4s 0.1s cubic-bezier(.4,.2,.2,1);
  z-index: 3;
  pointer-events: none;
}
.g-item::before {
  top: 12px; left: 12px;
  border-right: 0;
  border-bottom: 0;
  transform: translate(-6px, -6px);
}
.g-item::after {
  bottom: 12px; right: 12px;
  border-left: 0;
  border-top: 0;
  transform: translate(6px, 6px);
}
.g-item:hover::before,
.g-item:hover::after {
  opacity: 0.8;
  transform: translate(0, 0);
}

/* ============= LIGHTBOX ============= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 6, 0.97);
  z-index: 250;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lb-stage {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#lbImage {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  box-shadow:
    0 0 0 1px rgba(200,160,99,0.35),
    0 30px 100px -10px rgba(0,0,0,0.8),
    0 0 80px -20px rgba(224,178,89,0.3);
  display: block;
}
.lb-caption {
  margin-top: 24px;
  text-align: center;
}
.lb-cat {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: var(--gold-glow-soft);
}
.lb-title {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 6px;
}
.lb-counter {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-2);
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(200,160,99,0.4);
  color: var(--gold);
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 5;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(200,160,99,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 18px -2px rgba(224,178,89,0.4);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 22px; height: 22px; }

@media (max-width: 700px) {
  .lb-close { top: 14px; right: 14px; width: 42px; height: 42px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-prev, .lb-next { width: 42px; height: 42px; }
  #lbImage { max-height: 64vh; }
}

/* ---------- Ausstattung (warmer Ton mit dezenten Gold-Glow als Set-Off) ---------- */
.austattung {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at top, rgba(200,160,99,0.10), transparent 70%),
    radial-gradient(ellipse 80% 60% at bottom, rgba(200,160,99,0.06), transparent 70%),
    linear-gradient(180deg, #211c17 0%, #1c1814 100%);
}
.austattung::before,
.austattung::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 80%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,160,99,0.35), transparent);
}
.austattung::before { top: 0; }
.austattung::after { bottom: 0; }

.austattung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-top: 70px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.4s;
}
.feature:hover { transform: translateY(-6px); }
.feature .icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,160,99,0.35);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  background: rgba(200,160,99,0.05);
}
.feature .icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--gold);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s;
}
.feature:hover .icon {
  border-color: var(--gold);
  background: rgba(200,160,99,0.12);
  box-shadow: 0 14px 36px -10px rgba(200,160,99,0.45);
}
.feature:hover .icon svg { transform: scale(1.1); }
.feature h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature p { font-size: 0.92rem; color: var(--grey); }

/* ============= HUNDE-HIGHLIGHT-CARD (spannt 2 Spalten) ============= */
.feature-dogs {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  text-align: left;
  padding: 0;
  background:
    radial-gradient(ellipse at right, rgba(224,178,89,0.10), transparent 70%),
    var(--dark-3);
  border: 1px solid rgba(224,178,89,0.40);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 18px 50px -18px rgba(0,0,0,0.65),
    0 0 60px -14px rgba(224,178,89,0.22);
  transition: box-shadow 0.5s ease, transform 0.4s ease;
}
.feature-dogs:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 60px -14px rgba(0,0,0,0.7),
    0 0 90px -8px rgba(224,178,89,0.38);
}
.feature-dogs .dogs-photo {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.feature-dogs .dogs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.feature-dogs:hover .dogs-photo img {
  transform: scale(1.05);
}
.feature-dogs .dogs-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(31, 28, 25, 0.6) 100%);
}
.feature-dogs .dogs-text {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-dogs .dogs-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-shadow: var(--gold-glow-soft);
}
.feature-dogs h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}
.feature-dogs p {
  font-size: 0.96rem;
  color: var(--cream);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 800px) {
  .feature-dogs {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .feature-dogs .dogs-photo {
    min-height: 220px;
    aspect-ratio: 4/3;
  }
  .feature-dogs .dogs-text { padding: 32px 28px; }
}

/* ============= FEATURE-HIGHLIGHT (z.B. Wellness Pool & Sauna alleine) ============= */
.event-features li.feature-highlight {
  background: linear-gradient(90deg, rgba(224,178,89,0.10), transparent 80%);
  border-left: 2px solid var(--gold);
  padding-left: 32px;
  margin-left: -10px;
  border-radius: 2px;
  position: relative;
}
.event-features li.feature-highlight::before {
  left: 8px;
}
.event-features li.feature-highlight::after {
  left: 10px;
}

/* ============= "Keine Cookies"-Callout im Datenschutz ============= */
.no-cookies-block {
  position: relative;
  margin: 50px 0 60px;
  padding: 64px 56px 60px 72px;
  background: linear-gradient(180deg, #1a1212 0%, #110b0b 100%);
  border-left: 4px solid #d8443a;
  overflow: hidden;
  color: var(--cream);
}
.ncb-watermark {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #d8443a;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.ncb-inner { position: relative; z-index: 1; }
.ncb-icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: #d8443a;
}
.ncb-icon svg { width: 64px; height: 64px; filter: drop-shadow(0 0 16px rgba(216,68,58,0.4)); }
.ncb-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d8443a;
  margin-bottom: 14px;
  font-weight: 500;
}
.ncb-headline {
  font-family: var(--sans);
  font-weight: 700 !important;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  letter-spacing: -0.01em;
}
.ncb-highlight {
  color: #d8443a;
  display: inline-block;
}
.ncb-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--cream);
  margin: 0 0 28px;
  max-width: 640px;
  line-height: 1.5;
}
.ncb-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.ncb-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
  padding: 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.55;
}
.ncb-list li::before {
  content: none !important;
  display: none !important;
}
.ncb-x {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 1.5rem;
  color: #d8443a;
  line-height: 1;
  font-weight: 600;
  width: 24px;
  text-align: center;
}
.ncb-list strong {
  color: #fff;
  font-weight: 600;
}
.ncb-footnote {
  border-top: 1px solid rgba(216,68,58,0.25);
  padding-top: 22px;
  font-size: 0.92rem;
  color: var(--grey);
  margin: 0;
  font-style: normal;
  font-family: var(--sans);
}
@media (max-width: 700px) {
  .no-cookies-block { padding: 44px 24px 40px 32px; }
  .ncb-icon svg { width: 48px; height: 48px; }
  .ncb-watermark { font-size: 4rem; }
}

/* ---------- Ein Tag im AlbMax (Scroll-Jacking Timeline) ---------- */
.tagesablauf {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at top, rgba(200,160,99,0.10), transparent 70%),
    radial-gradient(ellipse 80% 60% at bottom, rgba(200,160,99,0.06), transparent 70%),
    linear-gradient(180deg, #211c17 0%, #1c1814 100%);
  padding-top: 110px;
  padding-bottom: 0;
}
/* Sanfter Ausklang am Ende der Tagesablauf-Sektion zur nächsten Bleed-Section */
.tagesablauf .t-note {
  padding-bottom: 40px;
}
.tagesablauf::before,
.tagesablauf::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 80%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,160,99,0.35), transparent);
  z-index: 5;
}
.tagesablauf::before { top: 0; }
.tagesablauf::after { bottom: 0; }

/* Outer wrapper hat die Höhe für scroll-jacking, sticky innen */
.timeline-wrapper {
  position: relative;
  /* Breche aus der Container-Begrenzung aus für Full-Bleed Timeline */
  margin: 60px calc(50% - 50vw) 0;
  width: 100vw;
  max-width: 100vw;
}
.timeline-sticky {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0 80px;
  overflow: hidden;
}
.timeline-track {
  display: flex;
  gap: 36px;
  /* Erste Karte beginnt bündig zum Container-Padding, rechts auslaufender Whitespace */
  padding: 0 8vw 0 max(32px, calc((100vw - 1240px) / 2 + 32px));
  will-change: transform;
  transition: none;
  align-self: flex-start;
}
.timeline-progress { align-self: center; }

/* Auf Desktop: Sticky + scroll-jacking */
@media (min-width: 900px) and (pointer: fine) {
  .timeline-wrapper {
    height: 320vh;
  }
  .timeline-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    justify-content: center;
  }
}

/* Auf Mobile/Touch: horizontaler Swipe-Scroll */
@media (max-width: 899px), (pointer: coarse) {
  .timeline-sticky { overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .timeline-track { padding: 0 24px; }
  .timeline-sticky::-webkit-scrollbar { height: 4px; }
  .timeline-sticky::-webkit-scrollbar-track { background: rgba(200,160,99,0.08); }
  .timeline-sticky::-webkit-scrollbar-thumb { background: rgba(200,160,99,0.4); }
}

/* Karten mit Bild oben */
.t-step {
  flex: 0 0 560px;
  background: var(--dark-3);
  border: 1px solid rgba(200,160,99,0.18);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s, border-color 0.4s;
}
.t-step:hover {
  transform: translateY(-6px);
  border-color: rgba(200,160,99,0.5);
}
.t-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark-3);
}
.t-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.t-step:hover .t-image img { transform: scale(1.05); }
.t-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,13,12,0.5) 100%);
  pointer-events: none;
}

.t-meta {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.t-time {
  display: none;
}

/* Progress-Bar unter der Timeline */
.timeline-progress {
  position: relative;
  margin: 40px auto 0;
  width: min(80%, 600px);
  height: 1px;
  background: rgba(200,160,99,0.15);
  overflow: visible;
}
.timeline-progress-bar {
  position: absolute;
  top: -1px;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, transparent, var(--gold));
  box-shadow: 0 0 14px rgba(224,178,89,0.5);
  transition: width 0.1s linear;
}
@media (max-width: 899px), (pointer: coarse) {
  .t-step { flex: 0 0 340px; }
  .t-meta { padding: 22px 24px 28px; }
  .timeline-progress { display: none; }
}

/* ============= Galerie Mehr-Laden ============= */
.galerie-masonry .g-item.collapsed { display: none; }

.galerie-more {
  text-align: center;
  margin-top: 50px;
}
.galerie-more-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-shadow: var(--gold-glow-soft);
}
.galerie-more-btn:hover {
  background: var(--gold);
  color: var(--dark);
  text-shadow: none;
  box-shadow: 0 0 24px -4px rgba(224,178,89,0.5);
}
.galerie-more-btn .gmb-count {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.7;
  font-style: italic;
}

/* ============= Flatpickr Custom Theme (Gold + Dark) ============= */
.flatpickr-calendar {
  background: var(--dark-2) !important;
  border: 1px solid rgba(200,160,99,0.35) !important;
  box-shadow:
    0 30px 80px -10px rgba(0,0,0,0.8),
    0 0 30px -10px rgba(224,178,89,0.3) !important;
  border-radius: 0 !important;
  font-family: var(--sans) !important;
}
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after { border-bottom-color: rgba(200,160,99,0.35) !important; }
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after { border-top-color: rgba(200,160,99,0.35) !important; }

.flatpickr-months { padding-top: 8px; }
.flatpickr-current-month { color: var(--gold) !important; }
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  font-family: var(--serif) !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: var(--gold) !important;
  background: transparent !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months option { background: var(--dark) !important; color: var(--cream) !important; }
.flatpickr-monthDropdown-months:hover { background: rgba(200,160,99,0.1) !important; }
.numInputWrapper:hover { background: rgba(200,160,99,0.1) !important; }
.numInputWrapper span.arrowUp::after { border-bottom-color: var(--gold) !important; }
.numInputWrapper span.arrowDown::after { border-top-color: var(--gold) !important; }

.flatpickr-prev-month, .flatpickr-next-month {
  fill: var(--gold) !important;
  color: var(--gold) !important;
  padding: 8px !important;
}
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: var(--gold) !important; }
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg { fill: var(--gold-light) !important; }

.flatpickr-weekdays { background: transparent !important; }
.flatpickr-weekday {
  color: var(--gold) !important;
  font-family: var(--sans) !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  background: transparent !important;
}

.flatpickr-days { background: transparent !important; }
.dayContainer { padding: 4px !important; }

.flatpickr-day {
  color: var(--cream) !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 0 !important;
  font-family: var(--sans) !important;
  font-size: 0.85rem !important;
  max-width: 44px !important;
  height: 38px !important;
  line-height: 38px !important;
  transition: all 0.2s !important;
}
.flatpickr-day:hover {
  background: rgba(200,160,99,0.12) !important;
  border-color: rgba(200,160,99,0.4) !important;
  color: var(--gold) !important;
}
.flatpickr-day.today {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--dark) !important;
  box-shadow: 0 0 14px -2px rgba(224,178,89,0.5) !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(200,160,99,0.15) !important;
  background: transparent !important;
  border-color: transparent !important;
  cursor: not-allowed !important;
}
.flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay { color: var(--grey-2) !important; }

.t-content {
  padding-left: 0;
}

.t-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  text-shadow: var(--gold-glow-soft);
}

.t-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.t-content p {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  max-width: 540px;
}

.t-note {
  text-align: center;
  margin-top: 30px;
  color: var(--grey);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.t-scroll-hint {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

/* ---------- Stimmen ---------- */
.stimmen {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(224,178,89,0.12), transparent 65%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(224,178,89,0.09), transparent 65%),
    var(--dark);
}

.stimmen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.stimme {
  background: var(--dark-2);
  border-left: 2px solid var(--gold);
  padding: 36px 32px;
  transition: transform 0.4s, border-left-color 0.4s;
}
.stimme:hover {
  transform: translateY(-4px);
  border-left-color: var(--gold-light);
}
.stimme .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 20px;
}
.stimme .stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 8px; font-size: 0.9rem; }
.stimme .author { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-2); }

/* ---------- Anfrage ---------- */
.anfrage {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(224,178,89,0.14), transparent 65%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(224,178,89,0.10), transparent 65%),
    linear-gradient(rgba(14,13,12,0.92), rgba(14,13,12,0.92)),
    url('../images/albmax-anwesen-aussenansicht.webp');
  background-size: cover, cover, cover, cover;
  background-attachment: scroll, scroll, scroll, fixed;
  background-position: center;
}

.anfrage form {
  max-width: 780px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse at top, rgba(200,160,99,0.08), transparent 70%),
    linear-gradient(180deg, var(--dark-2), var(--dark-3));
  padding: 72px 64px;
  border: 1px solid rgba(200,160,99,0.25);
  position: relative;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.7),
    0 0 60px -20px rgba(224,178,89,0.15);
}

/* Dekorative Gold-Ecken */
.anfrage form::before,
.anfrage form::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.anfrage form::before {
  top: -1px; left: -1px;
  border-right: 0;
  border-bottom: 0;
}
.anfrage form::after {
  bottom: -1px; right: -1px;
  border-left: 0;
  border-top: 0;
}

@media (max-width: 700px) {
  .anfrage form { padding: 50px 28px; }
  .anfrage form::before,
  .anfrage form::after { width: 24px; height: 24px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-row.full { grid-template-columns: 1fr; }

label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  text-shadow: var(--gold-glow-soft);
}

input, select, textarea {
  width: 100%;
  background: rgba(14,13,12,0.5);
  border: 1px solid rgba(200,160,99,0.18);
  border-radius: 0;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
input::placeholder, textarea::placeholder {
  color: var(--grey-2);
  font-style: italic;
}
input:hover, select:hover, textarea:hover {
  border-color: rgba(200,160,99,0.4);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(14,13,12,0.7);
  box-shadow: 0 0 0 1px rgba(224,178,89,0.2), 0 0 18px -4px rgba(224,178,89,0.3);
}
textarea { resize: vertical; min-height: 130px; padding: 16px; }
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0b259' stroke-width='1.5'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
select option { background: var(--dark); color: var(--cream); padding: 12px; }

/* Form Hinweise und Validierung */
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.85;
  min-height: 1em;
}
.form-hint.error {
  color: #d6735c;
}
/* Honeypot-Feld: für Menschen unsichtbar, für Bots ein Köder */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-validation {
  text-align: center;
  margin: 18px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d6735c;
  min-height: 1em;
}
.form-validation.success {
  color: var(--gold);
  background: rgba(224, 178, 89, 0.08);
  border: 1px solid rgba(224, 178, 89, 0.35);
  padding: 16px 20px;
  border-radius: 4px;
  font-weight: 500;
}
.form-validation.error {
  color: #f1a497;
  background: rgba(214, 115, 92, 0.10);
  border: 1px solid rgba(214, 115, 92, 0.35);
  padding: 14px 18px;
  border-radius: 4px;
}
.form-validation.pending {
  color: var(--cream);
  opacity: 0.75;
}

/* Button disabled-State */
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Datum-Picker edler styling */
.date-field {
  position: relative;
}
.date-field input[type="date"] {
  padding-right: 56px;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.date-field input[type="date"]:invalid { color: var(--grey-2); }
.date-field::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0b259' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='16' rx='1'/><path d='M3 10h18'/><path d='M8 3v4'/><path d='M16 3v4'/><circle cx='8' cy='14' r='0.5' fill='%23e0b259'/><circle cx='12' cy='14' r='0.5' fill='%23e0b259'/><circle cx='16' cy='14' r='0.5' fill='%23e0b259'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(224,178,89,0.4));
  z-index: 2;
}

/* Native Browser Indicator unsichtbar machen, aber Click-Bereich groß lassen */
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  opacity: 0;
  cursor: pointer;
}
input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}
input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  color: var(--cream);
}
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
  padding: 0 2px;
}
input[type="date"]::-webkit-datetime-edit-text {
  color: var(--gold);
  padding: 0 4px;
}
input[type="date"]:not(:focus):invalid::-webkit-datetime-edit { color: var(--grey-2); }

.form-submit {
  margin-top: 30px;
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 20px;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(200,160,99,0.5);
}

.contact-direct { text-align: center; margin-top: 50px; font-size: 0.95rem; color: var(--grey); }
.contact-direct a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* ---------- Footer ---------- */
footer {
  background: var(--dark-3);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(200,160,99,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-logo { height: 90px; width: auto; margin-bottom: 20px; }

footer h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

footer ul { list-style: none; }
footer li { margin-bottom: 10px; font-size: 0.88rem; color: #c8c0b6; }
footer a { color: #c8c0b6; }
footer a:hover { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; max-width: 320px; color: #c8c0b6; }

.footer-bottom {
  border-top: 1px solid rgba(200,160,99,0.15);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #b2a99e;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: #b2a99e; margin: 0 12px; }
.footer-bottom a:hover { color: var(--gold); }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-slide, * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============= Rechts-Seiten (Impressum, Datenschutz) ============= */
.page-hero {
  position: relative;
  padding: 220px 32px 90px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(14,13,12,0.55), rgba(22,20,18,0.95)),
    radial-gradient(ellipse at top, rgba(200,160,99,0.08), transparent 60%),
    var(--dark-2);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 1px;
  background: var(--gold);
}
.page-hero .eyebrow { display: inline-block; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin: 12px 0 0;
}

.legal-content {
  background: var(--dark);
  padding: 90px 0 130px;
}
.legal-content .container { max-width: 920px; }
.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: #fff;
  margin: 68px 0 18px;
  line-height: 1.3;
  font-weight: 400;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(200,160,99,0.18);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin: 36px 0 14px;
  font-weight: 400;
}
.legal-content h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 12px;
  font-weight: 500;
}
.legal-content p {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.78;
  margin: 0 0 18px;
}
.legal-content p strong { color: #fff; font-weight: 500; }
.legal-content a {
  color: var(--gold);
  border-bottom: 1px solid rgba(200,160,99,0.35);
  transition: border-color 0.3s, color 0.3s;
  word-break: break-word;
}
.legal-content a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }
.legal-content ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.legal-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--cream);
  line-height: 1.7;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.legal-content .address {
  font-style: normal;
  display: block;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 22px;
}
.legal-content .upper-emphasis {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
}
@media (max-width: 700px) {
  .page-hero { padding: 180px 24px 60px; }
  .legal-content { padding: 70px 0 90px; }
  .legal-content h2 { font-size: 1.5rem; margin-top: 56px; }
  .legal-content h3 { font-size: 1.18rem; margin-top: 30px; }
}

/* ================================================================
   GOLD-LUXE-FRAME — edler Goldglow für alle Bildkarten
   Event-Slider · Galerie · Storyboard
   ================================================================ */

/* Event-Slider (Pakete) */
.event-image {
  box-shadow:
    0 0 0 1px rgba(224, 178, 89, 0.30),
    0 20px 60px -20px rgba(0, 0, 0, 0.70),
    0 0 80px -18px rgba(224, 178, 89, 0.20);
  transition: box-shadow 0.6s cubic-bezier(.2,.8,.2,1), transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.event-image:hover {
  box-shadow:
    0 0 0 1px rgba(224, 178, 89, 0.65),
    0 26px 70px -14px rgba(0, 0, 0, 0.78),
    0 0 110px -8px rgba(224, 178, 89, 0.38);
}

/* Galerie-Items */
.g-item {
  box-shadow:
    0 0 0 1px rgba(224, 178, 89, 0.22),
    0 14px 40px -16px rgba(0, 0, 0, 0.60),
    0 0 55px -14px rgba(224, 178, 89, 0.14);
  transition: box-shadow 0.5s cubic-bezier(.2,.8,.2,1), transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.g-item:hover {
  box-shadow:
    0 0 0 1px rgba(224, 178, 89, 0.60),
    0 22px 55px -12px rgba(0, 0, 0, 0.72),
    0 0 90px -6px rgba(224, 178, 89, 0.34);
  transform: translateY(-4px);
}

/* Storyboard / Timeline-Bilder — nur Goldglow, kein Innenrahmen */
.t-image {
  box-shadow:
    0 18px 50px -18px rgba(0, 0, 0, 0.65),
    0 0 70px -14px rgba(224, 178, 89, 0.22);
  transition: box-shadow 0.6s cubic-bezier(.2,.8,.2,1);
}
.t-step:hover .t-image {
  box-shadow:
    0 24px 65px -12px rgba(0, 0, 0, 0.75),
    0 0 100px -6px rgba(224, 178, 89, 0.38);
}

/* Mobile: Effekt etwas dezenter */
@media (max-width: 900px) {
  .event-image,
  .g-item {
    box-shadow:
      0 0 0 1px rgba(224, 178, 89, 0.22),
      0 14px 36px -16px rgba(0, 0, 0, 0.55),
      0 0 50px -16px rgba(224, 178, 89, 0.14);
  }
  .t-image {
    box-shadow:
      0 14px 36px -16px rgba(0, 0, 0, 0.55),
      0 0 50px -14px rgba(224, 178, 89, 0.16);
  }
}

/* ============= PERFORMANCE & A11Y HELPERS ============= */

/* Skip-to-content für Tastatur-Nutzer */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: #0e0d0c;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Event-Beschreibungen (vorher Inline-Style) */
.event-description {
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Gold-Akzent inline (vorher Inline-Style) */
.gold-accent { color: var(--gold); }

/* Tap-Targets: alle Dots bekommen virtuelle Größe via ::before */
.hero-dot,
.event-dot {
  position: relative;
}
.hero-dot::before,
.event-dot::before {
  content: '';
  position: absolute;
  inset: -18px -8px;
}

/* Form-Hint Kontrast verbessern */
.form-hint {
  opacity: 1;
  color: #f1cb7e;
}

/* Anfrage-Form: background-attachment fixed nur Desktop, nicht Mobile */
@media (max-width: 900px) {
  .anfrage {
    background:
      radial-gradient(ellipse 60% 50% at 100% 0%, rgba(224,178,89,0.14), transparent 65%),
      radial-gradient(ellipse 60% 50% at 0% 100%, rgba(224,178,89,0.10), transparent 65%),
      linear-gradient(rgba(14,13,12,0.92), rgba(14,13,12,0.92)),
      url('../images/albmax-anwesen-aussenansicht.webp');
    background-attachment: scroll;
    background-size: cover;
  }
}
