/* =====================================================
   GUT OLPENITZ – Hauptstylesheet
   Schrift: Arial (DSGVO-konform, keine externen Quellen)
   ===================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --color-bg:         #f7f3ed;
  --color-bg-alt:     #ede8de;
  --color-dark:       #1c1a16;
  --color-dark-soft:  #3a3630;
  --color-gold:       #8b7d52;
  --color-gold-light: #b09a6b;
  --color-gold-pale:  #d4c4a0;
  --color-cream:      #faf7f2;
  --color-white:      #ffffff;
  --color-text:       #2e2b24;
  --color-text-muted: #6b6456;

  /* Logo-Farben (Weiß, Rot, Blau) */
  --logo-white: #ffffff;
  --logo-red:   #9b2335;
  --logo-blue:  #1a3a6b;

  --font-main:    Arial, 'Helvetica Neue', Helvetica, sans-serif;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);

  --header-h: 80px;
  --radius:   4px;
  --radius-lg: 12px;

  --shadow-sm:  0 2px 12px rgba(28, 26, 22, 0.08);
  --shadow-md:  0 8px 32px rgba(28, 26, 22, 0.14);
  --shadow-lg:  0 24px 64px rgba(28, 26, 22, 0.22);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
}

/* ===== SELECTION ===== */
::selection {
  background: var(--color-gold-pale);
  color: var(--color-dark);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

em {
  font-style: italic;
  font-weight: 300;
}

p {
  max-width: 68ch;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}
.btn--primary:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
  border: 2px solid var(--color-dark);
  font-size: 0.75rem;
  padding: 0.7rem 1.6rem;
}
.btn--dark:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* ===== SECTION GLOBALS ===== */
.section {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  max-width: none;
}

.section-eyebrow--light { color: var(--color-gold-pale); }

.section-title {
  color: var(--color-dark);
  margin-bottom: 0;
}
.section-title--light { color: var(--color-white); }
.section-title em { color: var(--color-gold-light); }
.section-title--light em { color: var(--color-gold-pale); }

.divider {
  width: 50px;
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto 0;
}
.divider--light { background: rgba(255,255,255,0.4); }

.section-cta {
  text-align: center;
  margin-top: clamp(3rem, 5vw, 4rem);
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: #e8e2d6;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 1rem;
  pointer-events: none;
}

/* Show placeholder when image fails */
.img-missing .img-placeholder-overlay,
.img-missing > img { display: flex; }
.img-missing > img { opacity: 0; }

/* Hero specific placeholder */
.hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2620 0%, #1a1710 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.hero-placeholder-inner {
  text-align: center;
}
.placeholder-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  max-width: 70ch;
}
.cookie-banner a { color: var(--color-gold-pale); text-decoration: underline; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s, height 0.4s;
}

.site-header.scrolled {
  background: rgba(247, 243, 237, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 66px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* Logo – immer links */
.logo a {
  display: flex;
  align-items: center;
}

.logo-emblem,
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 0.1rem;
}

.logo-top {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--logo-red);
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--logo-blue);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.site-header:not(.scrolled) .logo-top { color: var(--logo-white); }
.site-header:not(.scrolled) .logo-main { color: var(--logo-white); }
.site-header:not(.scrolled) .logo-sub { color: rgba(255,255,255,0.5); }

/* Desktop nav – rechts neben Logo */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 0.9rem;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
  color: rgba(255,255,255,0.9);
}

.site-header.scrolled .nav-link {
  color: var(--color-dark-soft);
}

.nav-link:hover {
  color: var(--color-gold) !important;
}

/* Hamburger – rechts, immer sichtbar */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.site-header.scrolled .nav-toggle span { background: var(--color-dark); }

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== SIDEBAR NAV ===== */
/* Overlay hinter Sidebar */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
  backdrop-filter: blur(2px);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Sidebar */
.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  width: min(78vw, 360px);
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  overflow-y: auto;
}

.main-nav.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sidebar-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.sidebar-logo .logo-top { color: rgba(255,255,255,0.4); font-size: 0.55rem; letter-spacing: 0.3em; font-weight: 700; text-transform: uppercase; }
.sidebar-logo .logo-main { color: rgba(255,255,255,0.85); font-size: 1.3rem; font-style: italic; font-weight: 300; }
.sidebar-logo .logo-sub { color: rgba(255,255,255,0.25); font-size: 0.48rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 700; }

.sidebar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.5);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, border-color 0.2s;
}
.sidebar-close:hover { color: var(--color-white); border-color: rgba(255,255,255,0.3); }

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.5rem 0;
  flex: 1;
}

.main-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.05); }

.main-nav .nav-link {
  display: block;
  font-size: 0.82rem;
  padding: 1.1rem 2rem;
  color: rgba(255,255,255,0.65) !important;
  letter-spacing: 0.16em;
  border-radius: 0;
  transition: color 0.2s, padding-left 0.25s var(--ease-out), background 0.2s;
}
.main-nav .nav-link:hover {
  color: var(--color-white) !important;
  padding-left: 2.6rem;
  background: rgba(255,255,255,0.04);
}

.sidebar-cta {
  padding: 1.5rem 2rem 1rem;
}
.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}

.sidebar-footer {
  padding: 1rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sidebar-insta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.sidebar-insta:hover { color: var(--color-gold-pale); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Poster-Bild Fallback für Mobile / wenn kein Video */
.hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Wenn Video läuft, Poster ausblenden */
.hero-video.playing ~ .hero-poster,
.hero-video.playing ~ .hero-placeholder {
  opacity: 0;
  pointer-events: none;
}

/* Wenn kein Video vorhanden, Poster zeigen statt Placeholder */
.hero-video:not([src]):not(:has(source)) ~ .hero-poster {
  display: block;
}
.hero-video:not([src]):not(:has(source)) ~ .hero-placeholder {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 5, 0.55) 0%,
    rgba(10, 8, 5, 0.25) 50%,
    rgba(10, 8, 5, 0.65) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  max-width: 900px;
  margin-top: var(--header-h);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-pale);
  margin-bottom: 0.8rem;
  max-width: none;
}

.hero-title {
  color: var(--color-white);
  font-weight: 200;
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-weight: 300;
  color: var(--color-gold-pale);
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: none;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.6;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: var(--color-white);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ===== WAPPEN STRIP ===== */
.wappen-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  background: var(--color-cream);
}

.wappen-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold-pale));
  max-width: 400px;
}
.wappen-line:last-child {
  background: linear-gradient(to left, transparent, var(--color-gold-pale));
}

.wappen-emblem {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.wappen-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wappen-placeholder {
  width: 100%;
  height: 100%;
  border: 1px dashed var(--color-gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 0.5rem;
}

/* ===== ABOUT ===== */
.about {
  background: var(--color-cream);
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-image-wrap:hover .about-img {
  transform: scale(1.03);
}

.about-img-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(28, 26, 22, 0.75);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

.about-text p {
  margin-bottom: 1.2rem;
}
.about-text p:first-of-type { margin-top: 1.5rem; }

.about-facts {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-bg-alt);
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fact-number {
  font-size: 1.8rem;
  font-weight: 200;
  color: var(--color-gold);
  line-height: 1;
}

.fact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ===== EVENTS ===== */
.events {
  background: var(--color-dark);
  overflow: hidden;
}

.events-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(139, 125, 82, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.events-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.events-lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  max-width: none;
}

.events-text p {
  color: rgba(255,255,255,0.5);
  max-width: none;
}

/* Wedding Polaroid */
.wedding-image-block {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.wedding-polaroid {
  position: relative;
  background: var(--color-white);
  padding: 1rem 1rem 3.5rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  max-width: 360px;
  width: 100%;
  transition: transform 0.5s var(--ease-out);
}
.wedding-polaroid:hover {
  transform: rotate(0deg) scale(1.02);
}

.wedding-polaroid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.polaroid-caption {
  position: absolute;
  bottom: 1.1rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* Event Features – horizontale Nummerleiste */
.events-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(3rem, 5vw, 4rem);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.feature-item {
  padding: 2.5rem 2rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.35s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.03); }

.feature-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 200;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 0.8rem;
  font-style: italic;
  letter-spacing: -0.02em;
  transition: color 0.35s;
}
.feature-item:hover .feature-num { color: rgba(139,125,82,0.3); }

.feature-line {
  width: 28px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 1.2rem;
  transition: width 0.4s var(--ease-out);
}
.feature-item:hover .feature-line { width: 50px; }

.feature-item h3 {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.feature-item p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.4);
  max-width: 22ch;
  line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--color-bg);
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
  margin-top: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
  cursor: pointer;
}

.gallery-item--large {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
  aspect-ratio: 4/3;
}

.gallery-item--large img { aspect-ratio: unset; height: 100%; }

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
}

/* ===== ATMOSPHERE ===== */
.atmosphere {
  background: var(--color-cream);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.atmosphere-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.atmosphere-list {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.atmosphere-list li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  padding-left: 1.4rem;
  position: relative;
}

.atmosphere-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.atmosphere-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.atmosphere-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.atmosphere-frame:hover img { transform: scale(1.04); }

.atmosphere-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(28, 26, 22, 0.8);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.atmosphere-badge span {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.atmosphere-badge strong {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
}

/* ===== ÜBERNACHTUNGEN ===== */
.overnights {
  background: var(--color-bg);
  text-align: center;
}

.overnights-content {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.overnights-icon {
  color: var(--color-gold);
}
.overnights-icon svg {
  width: 60px;
  height: 60px;
}

.overnights-text {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.8;
  max-width: none;
  text-align: center;
}

/* ===== KONTAKT ===== */
.kontakt {
  background: var(--color-dark);
  overflow: hidden;
}

.kontakt-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(139, 125, 82, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.kontakt-intro {
  max-width: 60ch;
  margin: 1.5rem auto 0;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.kontakt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.kontakt-card {
  padding: 2.2rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.kontakt-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.kontakt-card--highlight {
  background: rgba(139, 125, 82, 0.14);
  border-color: rgba(139, 125, 82, 0.35);
}
.kontakt-card--highlight:hover {
  background: rgba(139, 125, 82, 0.22);
  border-color: rgba(139, 125, 82, 0.5);
}

.kontakt-card-icon {
  color: var(--color-gold-light);
  margin-bottom: 0.8rem;
  display: block;
}

.kontakt-role {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  max-width: none;
}

.kontakt-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  margin-top: 0.1rem;
  max-width: none;
}

.kontakt-value {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  transition: color 0.25s;
  word-break: break-all;
}
.kontakt-value:hover { color: var(--color-gold-pale); }

.kontakt-social {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s;
}
.social-link:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}

/* ===== CONTACT FORM ===== */
.kontakt-form-wrap {
  margin-top: clamp(3rem, 6vw, 5rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.form-title {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.92rem;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group select option {
  background: var(--color-dark);
  color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.07);
}

.form-group textarea { resize: vertical; }

.form-privacy {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  background: transparent;
  margin-top: 2px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.checkbox-label input:checked + .checkmark {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.checkbox-label input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg);
}

.checkbox-label a { color: var(--color-gold-pale); text-decoration: underline; }

.form-submit {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.form-message {
  text-align: center;
  font-size: 0.85rem;
  padding: 0.5rem;
  border-radius: var(--radius);
  min-height: 1.5rem;
}

.form-message.success {
  color: #7ec8a0;
  background: rgba(126, 200, 160, 0.1);
}

.form-message.error {
  color: #e07070;
  background: rgba(224, 112, 112, 0.1);
}

.form-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  max-width: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f0e0b;
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.footer-logo .logo-top,
.footer-logo .logo-sub { color: rgba(255,255,255,0.35); }
.footer-logo .logo-main { color: rgba(255,255,255,0.65); font-size: 1.3rem; }

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

.footer-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.8); }

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

.footer-legal a {
  color: rgba(255,255,255,0.35);
  transition: color 0.25s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  max-width: none;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s var(--ease-out), background 0.25s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--color-gold); }

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition-duration: 0.9s;
  transition-timing-function: var(--ease-out);
  transition-property: opacity, transform;
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out);
}
.lightbox.open .lightbox-img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--color-white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .events-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3), .feature-item:nth-child(4) { border-bottom: none; }
  .kontakt-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 860px) {
  .container--split,
  .atmosphere-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrap { aspect-ratio: 16/10; max-width: 100%; }
}

@media (max-width: 540px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .events-features {
    grid-template-columns: 1fr;
  }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .feature-item:last-child { border-bottom: none; }
  .about-facts { gap: 1.5rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .wappen-strip { gap: 1rem; }
}

/* ===== PRINT ===== */
@media print {
  .site-header,
  .hero-scroll,
  .back-to-top,
  .cookie-banner { display: none; }
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity 0.25s;
  /* Optional: weißes Logo auf dunklem Hintergrund */
  filter: brightness(0) invert(1);
}

.site-header.scrolled .logo-img {
  /* Farbe zurück wenn Header weiß wird */
  filter: none;
}

.logo-img:hover {
  opacity: 0.8;
}

/* Placeholder ausblenden wenn Poster-Bild gesetzt */
.hero-poster[style*="url("] ~ .hero-placeholder {
  display: none;
}

/* Poster immer als Basis sichtbar */
.hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.6s;
}

/* Poster ausblenden sobald Video läuft */
.hero-video.playing {
  z-index: 2;
}
.hero-video.playing ~ .hero-poster {
  opacity: 0;
}

/* ===== ULTRA-CLEAN MINIMAL SIDEBAR ===== */

/* Overlay - Nur ein ganz sanfter Glass-Effekt */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.nav-overlay.is-open { opacity: 1; pointer-events: all; }

/* Sidebar - Schmal und fokussiert */
.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  width: min(100vw, 400px);
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.main-nav.is-open { transform: translateX(0); }

/* Header - Logo & Close */
.sidebar-header {
  padding: 4rem 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  display: flex;
  flex-direction: column;
}
.sidebar-logo-main { 
  font-size: 1.5rem; 
  font-family: "Playfair Display", serif; 
  font-style: italic; 
  color: #fff; 
  letter-spacing: 0.02em;
}
.sidebar-logo-sub { 
  font-size: 0.5rem; 
  letter-spacing: 0.4em; 
  color: #d4af37; 
  text-transform: uppercase; 
  margin-top: 0.2rem;
}

.sidebar-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  transition: opacity 0.3s;
}
.sidebar-close:hover { opacity: 0.5; }

/* Navigation Links - Das Herzstück */
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertikal zentriert */
  padding-left: 3rem;
}

.main-nav .nav-link {
  display: inline-block;
  padding: 1.2rem 0;
  text-decoration: none;
  color: #fff !important;
  font-size: 1.8rem; /* Groß und präsent */
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
  opacity: 0.6;
}

.main-nav .nav-link:hover {
  opacity: 1;
  transform: translateX(15px);
  color: #d4af37 !important;
}

/* Sidebar Meta - Nur das Nötigste ganz dezent unten */
.sidebar-meta {
  padding: 3rem;
}

.sidebar-meta-item {
  margin-bottom: 0.5rem;
}

.sidebar-meta-value {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.sidebar-meta-value:hover { color: #fff; }

.sidebar-footer {
  padding: 0 3rem 4rem;
}

.sidebar-insta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sidebar-insta:hover { color: #d4af37; }

/* ===== CANVAS / TAPE EFFECT ===== */

.wedding-image-block {
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  perspective: 1000px; /* Gibt dem Ganzen etwas Tiefe */
}

.wedding-polaroid {
  position: relative;
  background: #fff;
  padding: 15px 15px 60px 15px; /* Breiterer Rand unten für den Galerie-Look */
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
  transform: rotate(-1deg); /* Leichte Schräglage für den "handgeklebten" Vibe */
  max-width: 500px;
  width: 100%;
  transition: transform 0.5s ease;
}

.wedding-polaroid:hover {
  transform: rotate(0deg) scale(1.02);
}

.wedding-polaroid img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(10%) contrast(105%); /* Ganz leichter Vintage-Touch */
}

/* Die Klebestreifen (Tape) */
.wedding-polaroid::before,
.wedding-polaroid::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 30px;
  background: rgba(255, 255, 255, 0.4); /* Halbtransparentes Tape */
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  z-index: 2;
}

/* Tape oben links */
.wedding-polaroid::before {
  top: -15px;
  left: -30px;
  transform: rotate(-35deg);
  border-left: 2px solid rgba(255,255,255,0.1); /* "Abgerissene" Kante Simulation */
  border-right: 2px solid rgba(255,255,255,0.1);
}

/* Tape oben rechts */
.wedding-polaroid::after {
  top: -10px;
  right: -35px;
  transform: rotate(40deg);
  background: rgba(255, 255, 255, 0.3);
}

/* Optional: Beschriftung unter dem Bild */
.polaroid-caption {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
}

/* ===== ANTIQUER GALERIE-RAHMEN MIT GOLD-VEREDLUNG ===== */

.about-image-wrap {
  position: relative;
  padding: 30px; /* Das Passepartout (Cremeweiß) */
  background: #fdfcf8; /* Ein leichtes Elfenbein/Off-White */
  
  /* 1. DER HAUPTRAHMEN (DUNKELHOLZ) */
  border: 20px solid #2c1e14;
  border-image: linear-gradient(
    to bottom right, 
    #2c1e14 0%, 
    #4a3325 25%, 
    #2c1e14 50%, 
    #3d2b1f 75%, 
    #1a110a 100%
  ) 20;

  /* 2. DIE GOLDENE INNENKANTE & TIEFE */
  /* Wir nutzen mehrlagige Box-Shadows für den Gold-Effekt und den 3D-Look */
  box-shadow: 
    /* Äußerer Wandschatten */
    0 30px 60px rgba(0,0,0,0.3),
    /* Der Gold-Falz (Innenseite des Rahmens) */
    inset 0 0 0 2px #d4af37,   /* Das Gold-Finish */
    inset 0 0 0 4px #8a6d3b,   /* Gold-Schatten */
    inset 0 0 15px rgba(0,0,0,0.5), /* Tiefe zum Passepartout */
    /* Die äußere Lichtkante des Holzes */
    0 0 0 1px rgba(255,255,255,0.1);

  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotate(-0.8deg); /* Organischer, "gehängter" Look */
}

/* 3. DIE ZIER-MASERUNG (SUBTILER GLANZ) */
.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
  z-index: 2;
}

/* 4. DIE GOLDENE PRÄGUNG FÜR DIE JAHRESZAHL */
.about-img-tag {
  position: absolute;
  bottom: 45px;
  right: 50px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  /* Goldener Text-Effekt */
  background: linear-gradient(to bottom, #f9e2af 0%, #d4af37 50%, #a67c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
  opacity: 0.9;
  letter-spacing: 0.05em;
  z-index: 10;
}

.about-img {
  display: block;
  width: 100%;
  height: auto;
  /* Das Bild selbst kriegt einen feinen Schatten, als läge es tief im Rahmen */
  box-shadow: inset 0 0 10px rgba(0,0,0,0.2), 0 0 5px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Hover-Interaktion: Das Gemälde "kommt dem Betrachter entgegen" */
.about-image-wrap:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.02);
  box-shadow: 
    0 40px 80px rgba(0,0,0,0.35),
    inset 0 0 0 2px #f9e2af, /* Gold leuchtet beim Hover auf */
    inset 0 0 0 4px #d4af37,
    inset 0 0 20px rgba(0,0,0,0.6);
}

/* ===== ANTIQUER RAHMEN (RESPONSIVE OPTIMIERT) ===== */

.about-image-wrap {
  position: relative;
  /* Benutze relative Einheiten (vw), damit der Rahmen auf dem Handy schmaler wird */
  padding: clamp(15px, 4vw, 30px); 
  background: #fdfcf8;
  
  /* Rahmenstärke skaliert mit der Bildschirmbreite */
  border: clamp(8px, 2.5vw, 20px) solid #2c1e14;
  border-image: linear-gradient(
    to bottom right, 
    #2c1e14 0%, 
    #4a3325 25%, 
    #2c1e14 50%, 
    #3d2b1f 75%, 
    #1a110a 100%
  ) 20;

  box-shadow: 
    0 20px 40px rgba(0,0,0,0.25),
    inset 0 0 0 1px #d4af37, 
    inset 0 0 15px rgba(0,0,0,0.5);

  /* Weniger Rotation auf Mobile, um Clipping zu vermeiden */
  transform: rotate(-0.5deg);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Verhindert, dass der Rahmen auf dem Handy zu breit wird */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.about-img {
  display: block;
  width: 100%;
  /* Erzwingt ein schönes Hochformat oder klassisches 4:3, damit es nicht "breit" wird */
  aspect-ratio: 4 / 5; 
  object-fit: cover; /* Schneidet das Bild perfekt zu, falls das Original querformatig ist */
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Jahreszahl-Tag für Mobile anpassen */
.about-img-tag {
  position: absolute;
  bottom: clamp(25px, 6vw, 45px);
  right: clamp(30px, 7vw, 50px);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1rem, 4vw, 1.5rem);
  background: linear-gradient(to bottom, #f9e2af 0%, #d4af37 50%, #a67c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 10;
}

/* Media Query für ganz kleine Handys */
@media (max-width: 480px) {
  .about-image-wrap {
    transform: rotate(0deg); /* Keine Rotation auf Kleinstgeräten */
    padding: 12px;
    border-width: 6px;
  }
}

/* ===== EXPERIENCE COLLAGE (3 BILDER) ===== */

.experience {
  overflow: hidden;
  padding: 8rem 0;
}

.experience-collage {
  position: relative;
  width: 100%;
  min-height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage-item {
  position: absolute;
  background: #fff;
  padding: 12px 12px 45px 12px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
  width: clamp(180px, 24vw, 260px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.collage-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* Positionen der 3 Bilder */

/* Herrenhaus (Oben Links) */
.collage-item--1 {
  top: 0;
  left: 0;
  transform: rotate(-10deg);
  z-index: 1;
}

/* Hochzeitspark (Oben Rechts) */
.collage-item--2 {
  top: 10%;
  right: 0;
  transform: rotate(12deg);
  z-index: 2;
}

/* Schlei (Unten Zentrum) */
.collage-item--3 {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 3;
  width: clamp(200px, 26vw, 300px); /* Das Hauptbild etwas größer */
}

/* Hover Effekt */
.collage-item:hover {
  z-index: 10;
  transform: scale(1.1) rotate(0deg) translateY(-15px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

/* Korrektur für Bild 3 beim Hover (wegen TranslateX) */
.collage-item--3:hover {
  transform: translateX(-50%) scale(1.1) rotate(0deg) translateY(-15px);
}

/* Responsive für Mobile */
@media (max-width: 900px) {
  .experience-collage {
    min-height: 500px;
    margin-top: 4rem;
  }
  .collage-item { width: 50%; }
  .collage-item--1 { top: 0; left: 5%; }
  .collage-item--2 { top: 15%; right: 5%; }
  .collage-item--3 { bottom: 0; width: 55%; }
}

@media (max-width: 480px) {
  .experience-collage { min-height: 420px; }
  .collage-item { width: 60%; }
}

#nav-toggle {
  transition: color 0.4s ease, transform 0.3s ease;
  z-index: 2000; /* Sicherstellen, dass er ganz oben liegt */
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              height 0.4s var(--ease-out);
}

/* Hero: transparent, weißes Burger-Menü */
.site-header[data-theme="hero"] {
  background: transparent;
  box-shadow: none;
}
.site-header[data-theme="hero"] .nav-toggle span { background: #fff; }
.site-header[data-theme="hero"] .logo-top        { color: rgba(255,255,255,0.5); }
.site-header[data-theme="hero"] .logo-main       { color: #fff; }
.site-header[data-theme="hero"] .logo-sub        { color: rgba(255,255,255,0.3); }

/* Dunkle Section: dunkler Header, weißes Burger-Menü */
.site-header[data-theme="dark"] {
  background: rgba(20, 18, 16, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  height: 66px;
}
.site-header[data-theme="dark"] .nav-toggle span { background: #fff; }
.site-header[data-theme="dark"] .logo-top        { color: rgba(255,255,255,0.45); }
.site-header[data-theme="dark"] .logo-main       { color: rgba(255,255,255,0.9); }
.site-header[data-theme="dark"] .logo-sub        { color: rgba(255,255,255,0.25); }

/* Helle Section: heller Header, dunkles Burger-Menü */
.site-header[data-theme="light"] {
  background: rgba(247, 243, 237, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(28,26,22,0.08);
  height: 66px;
}
.site-header[data-theme="light"] .nav-toggle span { background: var(--color-dark); }
.site-header[data-theme="light"] .logo-top        { color: var(--logo-red); }
.site-header[data-theme="light"] .logo-main       { color: var(--logo-blue); }
.site-header[data-theme="light"] .logo-sub        { color: var(--color-text-muted); }

/* .scrolled nicht mehr nötig – wird durch data-theme ersetzt */

/* ===== EVENT FEATURES – Editorial Layout ===== */
.events-features {
  margin-top: clamp(4rem, 7vw, 6rem);
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.feature-item {
  display: grid;
  grid-template-columns: 160px 1fr 1fr 60px;
  grid-template-rows: auto;
  align-items: center;
  gap: 0 3rem;
  padding: 2.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  cursor: default;
  transition: padding-left 0.5s var(--ease-out);
}

/* Goldene Linie links beim Hover */
.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 1px;
  height: 60%;
  background: var(--color-gold);
  transition: transform 0.4s var(--ease-out);
  transform-origin: center;
}
.feature-item:hover::before {
  transform: translateY(-50%) scaleY(1);
}
.feature-item:hover {
  padding-left: 1.2rem;
}

/* Tag – kleine Kategorie-Pille */
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(139,125,82,0.12);
  border: 1px solid rgba(139,125,82,0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
  width: fit-content;
  transition: background 0.3s, border-color 0.3s;
}
.feature-item:hover .feature-tag {
  background: rgba(139,125,82,0.2);
  border-color: rgba(139,125,82,0.5);
}

/* Großer kursiver Titel */
.feature-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 200;
  line-height: 1.05;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
  transition: color 0.35s;
}
.feature-item:hover .feature-title {
  color: rgba(255,255,255,1);
}
.feature-title em {
  font-style: italic;
  color: var(--color-gold-light);
  font-weight: 200;
}

/* Beschreibung */
.feature-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  max-width: 38ch;
  transition: color 0.35s;
}
.feature-item:hover .feature-desc {
  color: rgba(255,255,255,0.6);
}

/* Pfeil rechts */
.feature-arrow {
  display: flex;
  justify-content: flex-end;
  color: var(--color-gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.feature-item:hover .feature-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .feature-item {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem 2rem;
    padding: 2.2rem 0;
  }
  .feature-tag  { grid-column: 1; grid-row: 1; }
  .feature-title { grid-column: 1 / -1; grid-row: 2; font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .feature-desc  { grid-column: 1 / -1; grid-row: 3; }
  .feature-arrow { display: none; }
}

@media (max-width: 540px) {
  .feature-item {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }
  .feature-title { font-size: 1.8rem; }
  .feature-item:hover { padding-left: 0.8rem; }
}

/* ===== LAGEPLAN ANNOTATION ===== */
.lageplan-wrap {
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.lageplan-img-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.lageplan-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.9);
}

.lageplan-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Desktop: volle Annotationen */
.lageplan-svg--desktop { display: block; }
.lageplan-svg--mobile  { display: none;  }

@media (max-width: 640px) {
  .lageplan-svg--desktop { display: none;  }
  .lageplan-svg--mobile  { display: block; }
  .lageplan-img { aspect-ratio: 4/5; }
}

/* ─── Root Tokens ───────────────────────────────────────── */
:root {
  --c-bg:        #080808;
  --c-surface:   rgba(255,255,255,0.05);
  --c-surface-h: rgba(255,255,255,0.08);
  --c-border:    rgba(255,255,255,0.09);
  --c-border-h:  rgba(255,255,255,0.16);
  --c-text:      #f5f5f7;
  --c-muted:     rgba(255,255,255,0.55);
  --c-subtle:    rgba(255,255,255,0.3);
  --c-gold:      #b09a6b;
  --c-gold-l:    #d4c4a0;
  --c-gold-pale: rgba(212,196,160,0.35);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

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



/* ─── Section ───────────────────────────────────────────── */
.k-section {
  min-height: 100vh;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
}

/* Ambient glow */
.k-section::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(176, 154, 107, 0.09) 0%,
    rgba(176, 154, 107, 0.03) 50%,
    transparent 75%
  );
  pointer-events: none;
}

/* Bottom vignette */
.k-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
}

.k-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Header ────────────────────────────────────────────── */
.k-header {
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.k-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.4rem;
}

.k-eyebrow::before,
.k-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(176, 154, 107, 0.4);
}

.k-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 1.3rem;
}

.k-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-l) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.k-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.8;
  max-width: 52ch;
  margin: 0 auto;
}

/* ─── Contact Cards ─────────────────────────────────────── */
.k-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.k-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease),
              box-shadow 0.5s var(--ease),
              background 0.4s,
              border-color 0.4s;
}

/* Shine shimmer top edge */
.k-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.12) 30%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.12) 70%,
    transparent 100%
  );
}

.k-card:hover {
  transform: translateY(-6px);
  background: var(--c-surface-h);
  border-color: var(--c-border-h);
  box-shadow:
    0 0 0 1px rgba(176,154,107,0.12),
    0 24px 48px rgba(0,0,0,0.5),
    0 8px 20px rgba(0,0,0,0.3);
}

/* Highlight card */
.k-card--highlight {
  background: rgba(176,154,107,0.08);
  border-color: rgba(176,154,107,0.22);
}

.k-card--highlight::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(176,154,107,0.35) 50%,
    transparent
  );
}

.k-card--highlight:hover {
  background: rgba(176,154,107,0.14);
  border-color: rgba(176,154,107,0.38);
  box-shadow:
    0 0 0 1px rgba(176,154,107,0.2),
    0 24px 48px rgba(0,0,0,0.5),
    0 0 60px rgba(176,154,107,0.07);
}

.k-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(176,154,107,0.12);
  border: 1px solid rgba(176,154,107,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--c-gold);
  transition: background 0.3s, border-color 0.3s;
}

.k-card:hover .k-card-icon {
  background: rgba(176,154,107,0.2);
  border-color: rgba(176,154,107,0.3);
}

.k-card-role {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.35rem;
}

.k-card-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.k-card-value {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: -0.01em;
}

.k-card-value:hover { color: var(--c-gold-l); }

/* ─── Social ────────────────────────────────────────────── */
.k-social {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(4rem, 7vw, 5rem);
}

.k-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-subtle);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all 0.35s var(--ease);
}

.k-insta:hover {
  border-color: rgba(176,154,107,0.4);
  color: var(--c-gold);
  background: rgba(176,154,107,0.07);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ─── Form Wrap ─────────────────────────────────────────── */
.k-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: 32px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Top shine line */
.k-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15) 50%,
    transparent
  );
}

.k-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.k-form-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.k-form-sub {
  font-size: 0.88rem;
  color: var(--c-subtle);
  font-weight: 300;
}

/* ─── Form Fields ───────────────────────────────────────── */
.f-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.f-group { position: relative; }

.f-field {
  width: 100%;
  padding: 1.1rem 1.1rem 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.92rem;
  color: var(--c-text);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.f-field::placeholder { color: transparent; }

.f-field:focus {
  background: rgba(255,255,255,0.08);
  border-color: rgba(176,154,107,0.6);
  box-shadow: 0 0 0 3px rgba(176,154,107,0.1);
}

/* Floating label */
.f-label {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: var(--c-subtle);
  pointer-events: none;
  transition: all 0.22s var(--ease);
  font-weight: 400;
}

.f-field:focus ~ .f-label,
.f-field:not(:placeholder-shown) ~ .f-label {
  top: 0.55rem;
  transform: none;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* Textarea */
.f-field--area {
  padding-top: 1.4rem;
  resize: none;
  min-height: 110px;
  line-height: 1.65;
}

.f-group--area .f-label {
  top: 1.1rem;
  transform: none;
}

.f-field--area:focus ~ .f-label,
.f-field--area:not(:placeholder-shown) ~ .f-label {
  top: 0.45rem;
}

/* Select */
.f-select-wrap { position: relative; }

.f-select-wrap::after {
  content: '';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.25);
  pointer-events: none;
  transition: border-color 0.25s;
}

.f-select-wrap:focus-within::after {
  border-top-color: var(--c-gold);
}

.f-field--select {
  cursor: pointer;
  padding-top: 1.1rem;
  padding-bottom: 0.5rem;
  padding-right: 2.5rem;
  color: var(--c-text);
}

.f-field--select option {
  background: #161616;
  color: var(--c-text);
}

/* Privacy */
.f-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.5rem 0;
  cursor: pointer;
}

.f-privacy input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.f-check-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.22s var(--ease);
}

.f-privacy input:checked ~ .f-check-box {
  background: var(--c-gold);
  border-color: var(--c-gold);
}

.f-check-icon {
  opacity: 0;
  transform: scale(0.4) rotate(-15deg);
  transition: all 0.22s var(--ease);
}

.f-privacy input:checked ~ .f-check-box .f-check-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.f-privacy-text {
  font-size: 0.8rem;
  color: var(--c-subtle);
  line-height: 1.65;
}

.f-privacy-text a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.f-privacy-text a:hover { color: var(--c-gold-l); }

/* Submit Button */
.f-submit { padding-top: 0.5rem; }

.k-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(176,154,107,0.35);
  cursor: pointer;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-text);
  background: rgba(176,154,107,0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.k-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.k-btn:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(176,154,107,0.25), 0 4px 12px rgba(0,0,0,0.4);
}

.k-btn:active { transform: translateY(0); box-shadow: none; }

.k-btn-icon {
  transition: transform 0.35s var(--ease);
}

.k-btn:hover .k-btn-icon { transform: translateX(4px); }

/* Form Message */
.f-message {
  text-align: center;
  font-size: 0.82rem;
  padding: 0.6rem;
  border-radius: 10px;
  min-height: 2rem;
  transition: all 0.3s;
}

.f-message.success {
  color: #5ccb8f;
  background: rgba(92,203,143,0.1);
  border: 1px solid rgba(92,203,143,0.18);
}

.f-message.error {
  color: #f47a7a;
  background: rgba(244,122,122,0.1);
  border: 1px solid rgba(244,122,122,0.18);
}

.f-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 1.2rem;
  line-height: 1.6;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ─── Scroll Reveal ─────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.rv.in    { opacity: 1; transform: none; }
.rv-d1   { transition-delay: 0.1s; }
.rv-d2   { transition-delay: 0.2s; }
.rv-d3   { transition-delay: 0.3s; }
.rv-d4   { transition-delay: 0.4s; }
.rv-d5   { transition-delay: 0.5s; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 860px) {
  .k-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .f-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .k-form-wrap { padding: 2rem 1.4rem; }
}

.about-facts {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 2.8rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--color-bg-alt);
}

.fact {
  flex: 1;
  padding: 0.4rem 1.4rem 0.4rem 0;
  position: relative;
  transition: transform 0.4s var(--ease-out);
}
.fact:first-child { padding-left: 0; }
.fact:hover { transform: translateY(-3px); }

.fact-sep {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-gold-pale) 30%,
    var(--color-gold-pale) 70%,
    transparent
  );
  margin: 0 1.4rem;
  flex-shrink: 0;
}

.fact-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.fact-number {
  font-size: 2.4rem;
  font-weight: 200;
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: -0.03em;
  font-style: italic;
  flex-shrink: 0;
  transition: color 0.3s;
}
.fact:hover .fact-number { color: var(--color-gold-light); }

.fact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.2rem;
}

.fact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
}

.fact-sub {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ===== LOGO WORDMARK ===== */
.logo a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-wordmark {
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--color-white);
  white-space: nowrap;

  /* Versteckt wenn im Hero */
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), color 0.4s;
  pointer-events: none;
}

/* Einblenden sobald Header nicht mehr im Hero-Modus */
.site-header[data-theme="dark"] .logo-wordmark,
.site-header[data-theme="light"] .logo-wordmark {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Farbe je nach Hintergrund */
.site-header[data-theme="dark"] .logo-wordmark {
  color: rgba(255, 255, 255, 0.9);
}

.site-header[data-theme="light"] .logo-wordmark {
  color: var(--color-dark);
}

.hero-content--centered {
  text-align: left;
  align-items: flex-start;
}

.hero-content--centered .hero-eyebrow {
  text-align: left;
}

.hero-content--centered .hero-subtitle {
  text-align: left;
}

.hero-content--centered {
  text-align: center;
  align-items: center;
}

.hero-content--centered .hero-eyebrow,
.hero-content--centered .hero-subtitle {
  text-align: center;
}

.hero-content--centered .hero-actions {
  justify-content: center;
}

.logo-wordmark {
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;

  /* Versteckt im Hero */
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), color 0.4s;
  pointer-events: none;
}

.site-header[data-theme="dark"] .logo-wordmark,
.site-header[data-theme="light"] .logo-wordmark {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.site-header[data-theme="dark"] .logo-wordmark {
  color: var(--color-gold-pale);
  text-shadow: 0 0 30px rgba(212, 196, 160, 0.4);
}

.site-header[data-theme="light"] .logo-wordmark {
  color: var(--color-gold);
}

.hero-content--centered .hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 1.8rem;
  color: var(--color-white);
}

.hero-content--centered .hero-title em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold-pale);
  letter-spacing: 0.01em;
}

/* ===== HERO – ZENTRIERT FIX ===== */
.hero {
  justify-content: center;
}

.hero-content--centered {
  max-width: 100%;
  width: 100%;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: var(--header-h);
}

.hero-content--centered .hero-eyebrow,
.hero-content--centered .hero-subtitle {
  text-align: center;
}

.hero-content--centered .hero-actions {
  justify-content: center;
}

/* ===== FORMULAR – LADE & ERFOLG ===== */

/* Spinner-Animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.k-btn-spinner {
  display: none;
  animation: spin 0.8s linear infinite;
}

.k-btn--loading .k-btn-text,
.k-btn--loading .k-btn-icon {
  display: none;
}

.k-btn--loading .k-btn-spinner {
  display: block;
}

.k-btn--loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Erfolgs-Box */
.f-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.f-success--visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.f-success-icon {
  width: 72px;
  height: 72px;
  color: var(--c-gold);
}

.f-success-icon svg {
  width: 100%;
  height: 100%;
}

/* Kreis-Animation */
.f-success-circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s var(--ease) 0.1s forwards;
}

/* Haken-Animation */
.f-success-check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.4s var(--ease) 0.65s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.f-success h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-text);
}

.f-success p {
  font-size: 0.92rem;
  color: var(--c-muted);
  max-width: 44ch;
  line-height: 1.75;
}

.f-success-name {
  font-size: 0.82rem;
  color: var(--c-gold);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ===== FACTS – EDITORIAL STATEMENTS ===== */
.about-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--color-bg-alt);
}

.fact-statement {
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Riesige Ghost-Zahl im Hintergrund */
.fact-statement-bg {
  position: absolute;
  right: -0.1em;
  top: 50%;
  transform: translateY(-50%);
  font-family: Georgia, serif;
  font-size: 7rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.fact-statement:hover .fact-statement-bg {
  opacity: 0.09;
  transform: translateY(-50%) scale(1.05);
}

/* Inhalt */
.fact-statement-content {
  position: relative;
  z-index: 1;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

/* Goldene Linie die sich beim Hover verlängert */
.fact-statement-line {
  width: 0;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 1.1rem;
  transition: width 0.7s var(--ease-out);
}

.fact-statement:hover .fact-statement-line,
.fact-statement.in-view .fact-statement-line {
  width: 40px;
}

/* Body */
.fact-statement-body {
  display: flex;
  align-items: baseline;
  gap: 1.8rem;
}

/* Zahl / Wert */
.fact-statement-value {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1;
  min-width: 5rem;
  flex-shrink: 0;
  transition: color 0.3s, transform 0.4s var(--ease-out);
  display: block;
}

.fact-statement:hover .fact-statement-value {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

/* Text-Block */
.fact-statement-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fact-statement-text strong {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  font-style: normal;
}

.fact-statement-text span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.55;
  max-width: 32ch;

  /* Einblenden beim Hover */
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s var(--ease-out) 0.05s,
              transform 0.4s var(--ease-out) 0.05s;
}

.fact-statement:hover .fact-statement-text span {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-Reveal: Linie zieht beim Einblenden rein */
.fact-statement.in-view .fact-statement-line {
  width: 28px;
}

/* Responsive */
@media (max-width: 480px) {
  .fact-statement-bg  { font-size: 5rem; }
  .fact-statement-value { font-size: 1.8rem; min-width: 4rem; }
  .fact-statement-body  { gap: 1.2rem; }
}

/* ===== LOGO FIX – immer natürliche Farbe ===== */
.logo-img {
  filter: none !important;
}