/* ==========================================================================
   Finest Cologne – Main Stylesheet
   ========================================================================== */

@import url('variables.css');


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: var(--lh-tight);
  color: var(--fc-text);
  letter-spacing: var(--ls-tight);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h5 { font-size: clamp(1.1rem, 1.5vw, 1.375rem); }
h6 { font-size: 1.125rem; }

/* Display – editorial hero headline */
.display-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fc-text);
}

.display-title em,
.display-title i {
  font-style: italic;
  font-weight: 300;
  color: var(--fc-gold);
}

/* Subtitle – label above headings */
.subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--fc-text-muted);
}

/* Lead – elegant intro paragraph */
.lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: var(--lh-relaxed);
  color: var(--fc-text-muted);
}

/* Link defaults */
a {
  color: var(--fc-gold);
  text-decoration: none;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

a:hover {
  color: var(--fc-gold-dark);
  text-decoration: underline;
  text-decoration-color: var(--fc-gold-light);
  text-underline-offset: 3px;
}

/* Section label – small serif label */
.section-label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--fc-gold);
  display: block;
  margin-bottom: var(--space-4);
}

/* Heading with decorative underline */
.heading-decorated {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-4);
}

.heading-decorated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 1px;
  background: var(--fc-gold);
}


/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.container {
  max-width: var(--container-max);
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.container--narrow {
  max-width: var(--container-narrow);
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.section--sm {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section--warm {
  background-color: var(--fc-bg-warm);
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-muted  { color: var(--fc-text-muted); }
.text-light  { color: var(--fc-text-light); }
.text-gold   { color: var(--fc-gold); }

.font-serif  { font-family: var(--font-serif); }
.font-sans   { font-family: var(--font-sans); }
.italic      { font-style: italic; }

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

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--fc-border);
  margin: var(--space-12) 0;
}

.divider--sm {
  margin: var(--space-6) 0;
}


/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollHint {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Fade-in with Intersection Observer */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.fade-in-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-children.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.fade-in-children.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.fade-in-children.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.fade-in-children.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.fade-in-children.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.fade-in-children.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.875rem 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-fast),
              box-shadow var(--transition-base);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--fc-gold);
  color: var(--fc-white);
  border-color: var(--fc-gold);
}

.btn-primary:hover {
  background-color: var(--fc-gold-dark);
  border-color: var(--fc-gold-dark);
  color: var(--fc-white);
  box-shadow: 0 4px 20px rgba(184, 152, 106, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--fc-gold);
  border-color: var(--fc-gold);
}

.btn-secondary:hover {
  background-color: var(--fc-gold);
  color: var(--fc-white);
  box-shadow: 0 4px 20px rgba(184, 152, 106, 0.25);
}

.btn-ghost {
  background-color: transparent;
  color: var(--fc-text);
  border-color: var(--fc-border);
}

.btn-ghost:hover {
  background-color: var(--fc-bg-warm);
  border-color: var(--fc-gold-light);
  color: var(--fc-text);
}

.btn--sm {
  font-size: var(--fs-xs);
  padding: 0.625rem 1.5rem;
}

.btn--lg {
  font-size: var(--fs-base);
  padding: 1.125rem 3rem;
  letter-spacing: 0.15em;
}


/* ==========================================================================
   SITE HEADER / NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.4s ease,
              box-shadow 0.4s ease,
              height 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--fc-border-light),
              0 4px 24px rgba(28, 28, 26, 0.06);
  height: calc(var(--header-height) - 10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0;
  line-height: 1;
}

.site-logo__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--fc-text);
  line-height: 1;
  transition: color var(--transition-base);
}

.site-logo__tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--fc-gold);
  margin-top: 3px;
  line-height: 1;
}

.site-logo:hover .site-logo__name {
  color: var(--fc-gold);
}

.site-logo:hover {
  text-decoration: none;
}

/* Primary Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.site-nav__link {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fc-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-base);
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--fc-gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav__link:hover,
.site-nav__link.active {
  color: var(--fc-gold);
  text-decoration: none;
}

.site-nav__link:hover::after,
.site-nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Header CTA */
.site-header__cta {
  margin-left: var(--space-6);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: var(--z-modal);
}

.nav-toggle__bar {
  display: block;
  height: 1px;
  background-color: var(--fc-text);
  border-radius: var(--radius-full);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.2s ease,
              width 0.3s ease;
}

.nav-toggle__bar:nth-child(1) { width: 28px; }
.nav-toggle__bar:nth-child(2) { width: 20px; }
.nav-toggle__bar:nth-child(3) { width: 24px; }

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 26px;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 26px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 100vw);
  background-color: var(--fc-bg-card);
  z-index: var(--z-overlay);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-16) var(--space-8) var(--space-8);
  box-shadow: -8px 0 40px rgba(28, 28, 26, 0.1);
  overflow-y: auto;
}

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

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(28, 28, 26, 0.4);
  z-index: calc(var(--z-overlay) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}

.mobile-nav__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__list {
  list-style: none;
  margin-top: var(--space-8);
}

.mobile-nav__item {
  border-bottom: 1px solid var(--fc-border-light);
}

.mobile-nav__link {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--fc-text);
  text-decoration: none;
  padding: var(--space-5) 0;
  letter-spacing: -0.01em;
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.mobile-nav__link:hover {
  color: var(--fc-gold);
  padding-left: var(--space-4);
  text-decoration: none;
}

.mobile-nav__footer {
  margin-top: auto;
  padding-top: var(--space-6);
}

.mobile-nav__tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--fc-text-light);
}

.mobile-nav__brand {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-nav__brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.mobile-nav__brand-tagline {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fc-gold);
  line-height: 1;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--fc-bg);
}

.hero--image {
  background-color: var(--fc-dark);
}

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

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(250, 250, 247, 0.92) 0%,
    rgba(243, 239, 232, 0.75) 50%,
    rgba(250, 250, 247, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: var(--space-8) var(--container-px);
}

.hero-text {
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-date {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--fc-gold);
  display: inline-block;
  margin-bottom: var(--space-6);
  animation: fadeInUp 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--fc-text);
  margin-bottom: var(--space-8);
  animation: fadeInUp 1s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title em {
  font-style: italic;
  color: var(--fc-gold);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--fc-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 640px;
  margin: 0 auto var(--space-10);
  animation: fadeInUp 1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  text-decoration: none;
}

.hero-scroll-hint__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--fc-text-light);
}

.hero-scroll-hint__arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--fc-gold);
  border-bottom: 1px solid var(--fc-gold);
  transform: rotate(45deg);
  animation: scrollHint 2s ease-in-out infinite;
}

.hero-scroll-hint:hover {
  text-decoration: none;
}


/* ==========================================================================
   PARTNER GRID (INDEX PAGE)
   ========================================================================== */

.partners-section {
  background-color: var(--fc-bg);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Partner Card */
.partner-card {
  background-color: var(--fc-bg-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: inherit;
}

/* Card Image */
.partner-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background-color: var(--fc-bg-warm);
}

.partner-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.partner-card:hover .partner-card__image img {
  transform: scale(1.05);
}

/* Logo Badge on card image – Halbkreis unten mittig */
.partner-card__logo {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
  background: #fff;
  border-radius: 60px 60px 0 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.10);
  padding: 8px 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.partner-card__logo img {
  display: block;
  max-width: 86px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Category Filter */
.partner-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  justify-content: center;
}

.partner-filter__btn {
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--fc-border);
  background: transparent;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fc-text-muted);
  cursor: pointer;
  border-radius: 100px;
  transition: border-color var(--transition-base), color var(--transition-base), background var(--transition-base);
}

.partner-filter__btn:hover {
  border-color: var(--fc-gold);
  color: var(--fc-gold);
}

.partner-filter__btn--active {
  background: var(--fc-dark);
  border-color: var(--fc-dark);
  color: #fff;
}

.partner-card--hidden {
  display: none !important;
}

/* Image placeholder */
.partner-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fc-bg-warm) 0%, var(--fc-border-light) 100%);
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--fc-gold-light);
  letter-spacing: 0.05em;
}

/* Card Body */
.partner-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.partner-card__category {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--fc-gold);
}

.partner-card__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: var(--ls-tight);
  color: var(--fc-text);
  line-height: var(--lh-snug);
  margin-top: var(--space-1);
}

.partner-card__description {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-sm);
  color: var(--fc-text-muted);
  line-height: var(--lh-base);
  flex: 1;
  margin-top: var(--space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-card__address {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-sm);
  color: var(--fc-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.partner-card__address svg {
  flex-shrink: 0;
}

.partner-card__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--fc-border-light);
}

.partner-card__cta {
  margin-left: auto;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--fc-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-base), color var(--transition-base);
}

.partner-card__map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
  padding: 2px;
}

.partner-card__map-link:hover {
  color: var(--fc-gold);
}

.partner-card:hover .partner-card__cta {
  color: var(--fc-gold-dark);
  gap: var(--space-3);
}

.partner-card:hover .partner-card__cta svg {
  transform: translateX(2px);
}

/* Category filter */
.partners-filter {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.filter-btn {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--fc-border);
  background: transparent;
  color: var(--fc-text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--fc-gold);
  color: var(--fc-gold);
  background-color: transparent;
}

.filter-btn.active {
  background-color: var(--fc-gold);
  color: var(--fc-white);
}


/* ==========================================================================
   PARTNER DETAIL PAGE
   ========================================================================== */

/* Partner Hero */
.partner-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--fc-dark);
}

.partner-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.partner-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.7;
}

.partner-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(28, 28, 26, 0.72) 0%,
      rgba(28, 28, 26, 0.25) 55%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(28, 28, 26, 0.65) 0%,
      rgba(28, 28, 26, 0.15) 40%,
      transparent 70%
    );
  z-index: 1;
}

.partner-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-16) var(--container-px) calc(var(--space-16) + 100px);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.partner-hero__logo {
  width: auto;
  height: 60px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: var(--space-5);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.partner-hero__category {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--fc-gold-light);
  margin-bottom: var(--space-4);
  display: block;
}

.partner-hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--fc-white);
  margin-bottom: var(--space-4);
}

.partner-hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}

/* Partner Content */
.partner-content {
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.partner-section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--fc-border-light);
}

.partner-section:last-of-type {
  border-bottom: none;
}

.partner-section__label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--fc-text-muted);
  border-left: 2px solid var(--fc-gold);
  padding-left: var(--space-3);
  display: block;
  margin-bottom: var(--space-6);
}

.partner-section__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: var(--ls-tight);
  color: var(--fc-text);
  margin-bottom: var(--space-5);
}

.partner-section__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--fc-text-muted);
}

/* Exclusive Offer Box */
.partner-offer-box {
  background-color: var(--fc-bg-warm);
  border-left: 3px solid var(--fc-gold);
  padding: var(--space-8) var(--space-8);
  margin: var(--space-8) 0;
  position: relative;
}

.partner-offer-box::before {
  content: '★ Exklusives Angebot';
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--fc-gold);
  display: block;
  margin-bottom: var(--space-4);
}

.partner-offer-box__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--fc-text);
  margin-bottom: var(--space-3);
}

.partner-offer-box__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--fc-text-muted);
}

/* Partner Gallery */
.partner-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.partner-gallery__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--fc-bg-warm);
}

.partner-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-gallery__item {
  cursor: zoom-in;
}

.partner-gallery__item:hover img {
  transform: scale(1.04);
}

.partner-gallery__caption {
  display: none;
}

.partner-gallery__credit {
  margin-top: var(--space-3);
  font-size: var(--fs-xs);
  color: var(--fc-text-light);
  font-style: italic;
}

/* Partner Testimonial */
.partner-testimonial {
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
  margin-top: var(--space-6);
}

.partner-testimonial__image-wrap {
  flex-shrink: 0;
  width: 240px;
}

.partner-testimonial__image {
  width: 240px;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-sm);
  display: block;
}

.partner-testimonial__quote {
  margin: 0;
  padding: 0;
  border: none;
}

.partner-testimonial__text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: var(--fc-text);
  margin: 0 0 var(--space-4);
}

.partner-testimonial__name {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 500;
  color: var(--fc-text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.partner-testimonial__position {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--fc-text-light);
}

@media (max-width: 600px) {
  .partner-testimonial {
    flex-direction: column;
    gap: var(--space-5);
  }

  .partner-testimonial__image-wrap {
    width: 90px;
  }

  .partner-testimonial__image {
    width: 90px;
    height: 120px;
  }
}

/* Lightbox */
.fc-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.fc-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fc-lightbox__img {
  max-width: min(1024px, 100%);
  max-height: 90vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.fc-lightbox__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.fc-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.fc-lightbox__caption {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Partner Info Grid */
.partner-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.partner-info-item__label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--fc-gold);
  display: block;
  margin-bottom: var(--space-2);
}

.partner-info-item__value {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-sm);
  color: var(--fc-text);
  line-height: var(--lh-snug);
}


/* ==========================================================================
   PARTNER DETAIL PAGE – ADDITIONAL STYLES
   ========================================================================== */

/* Breadcrumb inside hero – direkt unterhalb des Headers, gleiche linke Kante wie Logo */
.partner-hero .breadcrumb {
  position: absolute;
  top: calc(var(--header-height) + 1rem);
  left: calc(max(0px, (100vw - var(--container-max)) / 2) + var(--container-px));
  right: auto;
  z-index: 3;
  padding: 0;
  border-bottom: none;
  margin-bottom: 0;
  pointer-events: auto;
}

.partner-hero .breadcrumb__list {
  max-width: none;
  margin: 0;
  justify-content: flex-start;
}

.partner-hero .breadcrumb__item a,
.partner-hero .breadcrumb__item--current,
.partner-hero .breadcrumb__item--separator {
  color: rgba(255, 255, 255, 0.6);
}

.partner-hero .breadcrumb__item a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Logo Badge – Halbkreis unten mittig im Hero-Bild */
.partner-hero__logo-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fc-white);
  padding: 18px 32px 0;
  box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.18);
  z-index: 4;
  width: 280px;
  height: 140px;
  border-radius: 140px 140px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.partner-hero__logo-badge-img {
  max-width: 200px;
  max-height: 80px;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Logo placeholder (kein Bild hochgeladen) */
.partner-hero__logo-badge--placeholder {
  background: var(--fc-bg-warm);
}
.partner-hero__logo-badge-initial {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--fc-gold);
  line-height: 1;
}

/* Contact list */
.partner-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.partner-contact-list__item {
  display: grid;
  grid-template-columns: 24px 80px 1fr;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--fc-border-light);
}

.partner-contact-list__item:last-child {
  border-bottom: none;
}

.partner-contact-list__icon {
  color: var(--fc-gold);
  display: flex;
  align-items: center;
  padding-top: 2px;
}

.partner-contact-list__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--fc-text-muted);
  font-weight: 400;
}

.partner-contact-list__value {
  font-size: var(--fs-sm);
  color: var(--fc-text);
  font-style: normal;
  line-height: var(--lh-snug);
}

.partner-contact-list__value--link {
  color: var(--fc-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.partner-contact-list__value--link:hover {
  color: var(--fc-gold-dark);
  text-decoration: underline;
}

/* Contact + Map two-column layout */
.partner-contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  margin-top: var(--space-4);
  align-items: start;
}

.partner-contact-map-grid__contact .partner-contact-list {
  margin-top: var(--space-6);
}

.partner-contact-map-grid__map {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.partner-map-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--fc-border);
}

.partner-map {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

.partner-map__directions {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--fs-sm);
  color: var(--fc-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.partner-map__directions:hover {
  color: var(--fc-gold-dark);
  text-decoration: underline;
}

/* Responsive partner detail page */
@media (max-width: 768px) {
  .partner-hero__logo-badge {
    width: 220px;
    height: 110px;
    border-radius: 110px 110px 0 0;
    padding: 14px 24px 0;
  }

  .partner-contact-map-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .partner-contact-map-grid__map {
    position: static;
  }

  .partner-map {
    height: 260px;
  }

  .partner-contact-list__item {
    grid-template-columns: 24px 64px 1fr;
    gap: var(--space-2);
  }
}


/* ==========================================================================
   MAP SECTION
   ========================================================================== */

.map-section {
  width: 100%;
  border-top: 1px solid var(--fc-border-light);
}

.map-header {
  padding: var(--space-12) 0 var(--space-8);
}

.map-container {
  height: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#partners-map {
  width: 100%;
  height: 100%;
}

/* Google Maps InfoWindow override */
.gm-style .gm-style-iw-c {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 0 !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
}

.map-infowindow {
  font-family: var(--font-sans);
  max-width: 260px;
  padding: 0;
  border-radius: 3px;
  overflow: hidden;
}

.map-infowindow__header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 4px 8px;
}

.map-infowindow__header-logo img {
  max-width: 120px;
  max-height: 36px;
  object-fit: contain;
  display: block;
}

.map-infowindow__header-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--fc-text);
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 4px;
}

.map-infowindow__body {
  padding: 14px 14px 12px;
}

.map-infowindow__name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--fc-text);
  margin-bottom: 2px;
}

.map-infowindow__category {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fc-gold);
  margin-bottom: 6px;
}

.map-infowindow__address {
  font-size: 0.78rem;
  color: var(--fc-text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
}

.map-infowindow__link {
  font-size: 0.78rem;
  color: var(--fc-dark);
  text-decoration: none;
  font-weight: 500;
  display: block;
}

.map-infowindow__link:hover {
  color: var(--fc-gold);
}


/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-hero {
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-16);
  background-color: var(--fc-bg-warm);
  text-align: center;
}

.about-hero__label {
  display: inline-block;
  margin-bottom: var(--space-5);
}

.about-hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--fc-text);
  margin-bottom: var(--space-6);
}

.about-hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--fc-text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

.about-content {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.about-content p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--fc-text-muted);
}

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: var(--space-12);
  margin-bottom: var(--space-5);
}


/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-page {
  padding-top: calc(var(--header-height) + var(--space-16));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: var(--ls-tight);
  color: var(--fc-text);
  margin-bottom: var(--space-6);
}

.contact-info__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--fc-text-muted);
  margin-bottom: var(--space-8);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.contact-detail__item {
  display: flex;
  gap: var(--space-4);
}

.contact-detail__label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--fc-gold);
  min-width: 80px;
  padding-top: 2px;
}

.contact-detail__value {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-sm);
  color: var(--fc-text-muted);
  line-height: var(--lh-snug);
}

/* Contact Form */
.contact-form {
  padding: var(--space-10);
  background-color: var(--fc-bg-card);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-8);
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fc-text-muted);
  margin-bottom: var(--space-3);
  transition: color var(--transition-base);
}

.form-group:focus-within .form-label {
  color: var(--fc-gold);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.875rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--fc-border);
  border-radius: 0;
  outline: none;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-base);
  color: var(--fc-text);
  transition: border-color var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-bottom-color: var(--fc-gold);
}

.form-control::placeholder {
  color: var(--fc-text-light);
  font-style: italic;
  font-weight: 300;
}

.form-control.error-state {
  border-bottom-color: #C0392B;
}

.form-error {
  display: none;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  color: #C0392B;
  margin-top: var(--space-2);
  letter-spacing: 0.02em;
}

.form-control.error-state + .form-error {
  display: block;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
  line-height: var(--lh-base);
}

.form-submit {
  margin-top: var(--space-8);
}

/* Success message */
.form-success {
  display: none;
  padding: var(--space-6);
  background-color: #F0F7F0;
  border-left: 3px solid #4A9462;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-sm);
  color: #2D6B3E;
}

.form-success.is-visible {
  display: block;
}


/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--fc-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--space-16);
  padding-bottom: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

.site-footer a:hover {
  color: var(--fc-gold-light);
  text-decoration: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand__logo {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--fc-white);
  display: block;
  margin-bottom: var(--space-2);
}

.footer-brand__tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--fc-gold-light);
  display: block;
  margin-bottom: var(--space-6);
}

.footer-brand__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.75);
  max-width: 300px;
}

.footer-col__title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-5);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-base), padding-left var(--transition-base);
  display: block;
}

.footer-nav a:hover {
  color: var(--fc-gold-light);
  padding-left: var(--space-2);
}

.footer-stadtmarketing {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
  line-height: var(--lh-relaxed);
}

.footer-stadtmarketing a {
  color: rgba(255, 255, 255, 0.35);
}

.footer-stadtmarketing a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom Bar */
.footer-bottom {
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom__links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom__links a {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom__links a:hover {
  color: rgba(255, 255, 255, 0.6);
}


/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-toast);
  background-color: var(--fc-white);
  box-shadow: 0 -4px 32px rgba(28, 28, 26, 0.12);
  padding: var(--space-5) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  border-top: 1px solid var(--fc-border-light);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-sm);
  color: var(--fc-text-muted);
  line-height: var(--lh-snug);
  max-width: 640px;
}

.cookie-banner__text a {
  color: var(--fc-gold);
  text-decoration: underline;
  text-decoration-color: var(--fc-gold-light);
  text-underline-offset: 2px;
}

.cookie-banner__buttons {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}


/* ==========================================================================
   SECTION: INTRO / EDITORIAL
   ========================================================================== */

.editorial-section {
  text-align: center;
}

.editorial-section__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-5);
}

.editorial-section__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.025em;
  line-height: var(--lh-tight);
  color: var(--fc-text);
  max-width: 800px;
  margin: 0 auto var(--space-6);
}

.editorial-section__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--fc-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}


/* ==========================================================================
   SECTION: STATS / NUMBERS
   ========================================================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  text-align: center;
  padding: var(--space-10) 0;
  border-top: 1px solid var(--fc-border-light);
  border-bottom: 1px solid var(--fc-border-light);
}

.stat-item__number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--fc-text);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--fc-text-light);
}


/* ==========================================================================
   SECTION: FEATURES / WHY
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
}

.feature-item__icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  color: var(--fc-gold);
}

.feature-item__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--fc-text);
  margin-bottom: var(--space-3);
}

.feature-item__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-sm);
  color: var(--fc-text-muted);
  line-height: var(--lh-relaxed);
}


/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

.breadcrumb {
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--fc-border-light);
  margin-bottom: var(--space-8);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-xs);
  color: var(--fc-text-light);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.breadcrumb__item a {
  color: var(--fc-text-light);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumb__item a:hover {
  color: var(--fc-gold);
  text-decoration: none;
}

.breadcrumb__separator {
  color: var(--fc-border);
  font-size: 0.6rem;
  margin: 0 var(--space-1);
}

.breadcrumb__item--current {
  color: var(--fc-text-muted);
}


/* ==========================================================================
   LOADING SKELETON
   ========================================================================== */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--fc-bg-warm) 25%,
    var(--fc-border-light) 50%,
    var(--fc-bg-warm) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}


/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

/* Tablet: 768px – 1024px */
@media (max-width: 1024px) {
  :root {
    --container-px: 1.5rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

  .map-container {
    height: 480px;
  }

  .partner-info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
  :root {
    --container-px: 1.25rem;
    --header-height: var(--header-height-mobile);
  }

  /* Navigation */
  .site-nav {
    display: none;
  }

  .site-header__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Partner Filter Buttons – kompakter auf Mobile */
  .partner-filter__btn {
    font-size: 0.65rem;
    padding: 0.3rem 0.9rem;
    min-height: 44px;
    letter-spacing: 0.06em;
  }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  /* Partners */
  .partners-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  /* Partner Detail */
  .partner-hero {
    min-height: 70vh;
  }

  /* Partner Hero – Mobil */
  .partner-hero__logo-badge {
    width: 180px;
    height: 90px;
    border-radius: 90px 90px 0 0;
    padding: 12px 20px 0;
  }

  .partner-hero .breadcrumb {
    top: calc(var(--header-height) + 0.75rem);
    left: var(--container-px);
  }

  .partner-hero__logo-badge-img {
    max-height: 40px;
    max-width: 110px;
  }

  .partner-gallery {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-nav a {
    text-align: center;
  }

  .footer-nav a:hover {
    padding-left: 0;
  }

  .footer-social {
    align-items: center;
  }

  .footer-brand__copy {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3);
  }

  /* Cookie Banner */
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-5);
    padding: var(--space-5) var(--space-5);
  }

  .cookie-banner__buttons {
    flex-direction: column;
  }

  /* Stats */
  .stats-row {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  /* Map */
  .map-container {
    height: 400px;
  }

  /* Sections */
  .section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  /* Contact */
  .contact-form {
    padding: var(--space-6);
  }

  /* Buttons */
  .btn-group {
    flex-direction: column;
  }
}

/* Large screens */
@media (min-width: 1440px) {
  :root {
    --container-px: 3rem;
  }
}


/* ==========================================================================
   HERO SPLIT – Flexify-Style Split Layout
   ========================================================================== */

.hero-split {
  display: flex;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Linke Seite – Text */
.hero-split__text {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  background-color: var(--fc-bg-warm);
  padding: 8rem 5vw 6rem;
  position: relative;
  z-index: 2;
}

.hero-split__text-inner {
  max-width: 560px;
}

/* Eyebrow Label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fc-gold);
  margin-bottom: 2rem;
  animation: fadeInUp 0.9s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fc-gold);
  flex-shrink: 0;
}

/* Haupt-Titel */
.hero-split__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(4.5rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fc-text);
  margin: 0 0 1.5rem;
  animation: fadeInUp 0.9s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-split__title-line {
  display: block;
}

.hero-split__title-line--italic {
  font-style: italic;
  color: var(--fc-gold);
  font-weight: 300;
}

/* Tagline */
.hero-split__tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fc-text-muted);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0;
}

.hero-split__tagline span {
  white-space: nowrap;
}

.hero-split__tagline span + span::before {
  content: '\00a0\00b7\00a0';
  color: var(--fc-gold);
}

/* Beschreibungstext */
.hero-split__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--fc-text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-br { display: none; }
@media (min-width: 1100px) { .hero-br { display: inline; } }

/* Buttons */
.hero-split__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Rechte Seite – Bild */
.hero-split__image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.hero-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.03);
  animation: heroImageReveal 1.4s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-split__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250, 250, 247, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

@keyframes heroImageReveal {
  from { transform: scale(1.12); opacity: 0.6; }
  to   { transform: scale(1.03); opacity: 1; }
}

/* Scroll-Indikator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 25%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fc-text-muted);
  z-index: 10;
  animation: fadeInUp 1.2s 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-scroll:hover { color: var(--fc-gold); text-decoration: none; }

.hero-scroll__line {
  width: 1px;
  height: 50px;
  background: currentColor;
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top center;
}

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

.hero-scroll__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

/* HERO MOBILE */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    min-height: auto;
  }
  .hero-split__text {
    flex: none;
    padding: 3rem 1.5rem 3rem;
    order: 2;
  }
  .hero-split__image {
    flex: none;
    height: 55vw;
    min-height: 380px;
    order: 1;
  }
  .hero-split__title {
    font-size: clamp(3.5rem, 12vw, 5.5rem);
  }
  .hero-scroll {
    display: none;
  }
}

/* Nav weiß wenn über Hero-Bild (desktop) */
.site-header--over-hero:not(.scrolled) .site-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.site-header--over-hero:not(.scrolled) .site-nav__link:hover,
.site-header--over-hero:not(.scrolled) .site-nav__link.active {
  color: #fff;
}
.site-header--over-hero:not(.scrolled) .site-logo__name {
  color: var(--fc-text);
}

/* Mobile Header – immer sichtbarer Hintergrund */
@media (max-width: 767px) {
  .site-header:not(.scrolled) {
    background-color: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}


/* ==========================================================================
   INTRO SECTION
   ========================================================================== */

.section--intro {
  background: var(--fc-bg);
}

.intro-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 1rem 0 1.5rem;
}

.intro-heading em {
  font-style: italic;
  color: var(--fc-gold);
}

.intro-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--fc-text-muted);
}

.intro-feature__icon {
  color: var(--fc-gold);
  font-size: 0.6rem;
}


/* ==========================================================================
   PARTNER GRID – Überarbeitete Kacheln
   ========================================================================== */

.section--partners {
  background: var(--fc-bg-warm);
}

.section-header {
  margin-bottom: 4rem;
}

.section-intro {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--fc-text-muted);
  margin-top: 0.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .partners-grid { grid-template-columns: 1fr; }
}

.partner-card {
  background: var(--fc-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
  box-shadow: 0 2px 12px rgba(28, 28, 26, 0.06);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(28, 28, 26, 0.12);
}

.partner-card__image-link {
  display: block;
  overflow: hidden;
}

.partner-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.partner-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-card:hover .partner-card__image img {
  transform: scale(1.06);
}

.partner-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--fc-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--fc-gold-light);
}

.partner-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.partner-card__category {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fc-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.partner-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
}

.partner-card__name a {
  color: var(--fc-text);
  text-decoration: none;
}
.partner-card__name a:hover { color: var(--fc-gold); text-decoration: none; }

.partner-card__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--fc-text-muted);
  margin: 0 0 1rem;
}

.partner-card__offer {
  background: var(--fc-bg-warm);
  border-left: 2px solid var(--fc-gold-light);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  flex: 1;
}

.partner-card__offer-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fc-gold);
  display: block;
  margin-bottom: 0.3rem;
}

.partner-card__offer-text {
  font-size: 0.875rem;
  color: var(--fc-text-muted);
  line-height: 1.5;
  margin: 0;
}

.partner-card__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--fc-border-light);
}

.partner-card__cta {
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fc-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  text-decoration: none;
}
.partner-card__cta:hover { color: var(--fc-gold-dark); text-decoration: none; }
.partner-card__cta svg { transition: transform 0.2s ease; }
.partner-card__cta:hover svg { transform: translateX(3px); }


/* ==========================================================================
   MAP SECTION
   ========================================================================== */

.section--map {
  background: var(--fc-bg);
  padding-bottom: 0;
}

.map-header {
  padding-bottom: 3rem;
}

.map-container {
  width: 100%;
  height: 580px;
  position: relative;
  overflow: hidden;
}

#partners-map {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--fc-bg-warm);
}

@media (max-width: 768px) {
  .map-container { height: 380px; }
}


/* ==========================================================================
   CTA BLOCK
   ========================================================================== */

.section--cta {
  background: var(--fc-text);
  color: var(--fc-bg);
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-block__content {
  flex: 1;
  min-width: 280px;
}

.cta-block__content .section-label {
  color: var(--fc-gold-light);
}

.cta-block__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--fc-white);
  margin: 0.5rem 0 1rem;
}

.cta-block__title em {
  font-style: italic;
  color: var(--fc-gold-light);
}

.cta-block__content p {
  color: rgba(250, 250, 247, 0.7);
  font-size: 0.95rem;
  max-width: 480px;
}

.cta-block__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.section--cta .btn--outline {
  border-color: rgba(250, 250, 247, 0.4);
  color: var(--fc-bg);
}
.section--cta .btn--outline:hover {
  background: rgba(250, 250, 247, 0.1);
  border-color: var(--fc-bg);
}

@media (max-width: 768px) {
  .cta-block { flex-direction: column; }
  .cta-block__actions { width: 100%; }
}


/* ==========================================================================
   BUTTON VARIANTS (Ergänzung)
   ========================================================================== */

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(28, 28, 26, 0.25);
  color: var(--fc-text);
}
.btn--ghost:hover {
  border-color: var(--fc-text);
  background: rgba(28, 28, 26, 0.04);
  color: var(--fc-text);
}


/* ==========================================================================
   HEADER SCROLL BEHAVIOR – Nach-Hero-Einblenden
   ========================================================================== */

/* Standard: sichtbar und transparent oben */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: transparent;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.4s ease,
              box-shadow 0.4s ease,
              height 0.3s ease;
}

/* Im Hero-Bereich: versteckt */
.site-header.is-hidden {
  transform: translateY(-100%);
}

/* Nach dem Hero: eingeblendet mit Hintergrund */
.site-header.scrolled {
  transform: translateY(0) !important;
  background-color: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--fc-border-light),
              0 4px 24px rgba(28, 28, 26, 0.06);
  height: calc(var(--header-height) - 10px);
}

/* Auf Seiten OHNE Hero: immer scrolled */
body.no-hero .site-header {
  transform: translateY(0) !important;
  background-color: rgba(250, 250, 247, 0.98);
  box-shadow: 0 1px 0 var(--fc-border-light);
}

/* Transparent-Zustand (ganz oben auf Hero-Seite):
   Logo bleibt dunkel (liegt über creme), Nav wird weiß (liegt über Bild) */
.site-header:not(.scrolled):not(.is-hidden) .site-nav__link {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8), 0 2px 12px rgba(0,0,0,0.5);
}

.site-header:not(.scrolled):not(.is-hidden) .site-nav__link:hover {
  color: rgba(255,255,255,0.75);
}

/* Dunkler Gradient am oberen Bildrand für Nav-Lesbarkeit */
.hero-split__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}


/* ==========================================================================
   MOBILE NAV – kleine Link-Variante + Divider
   ========================================================================== */

.mobile-nav__link--small {
  font-family: var(--font-sans);
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  padding: var(--space-3) 0 !important;
  min-height: 44px;
  display: flex !important;
  align-items: center;
  transition: color 0.2s ease !important;
}

.mobile-nav__link--small:hover {
  color: rgba(255, 255, 255, 0.95) !important;
  padding-left: 0 !important;
}

.mobile-nav__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: var(--space-4) 0;
  list-style: none;
}


/* ==========================================================================
   FOOTER – fehlende Klassen ergänzt
   ========================================================================== */

.footer-brand__copy {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-6);
  display: block;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color var(--transition-base);
}

.footer-social__link:hover {
  color: var(--fc-gold-light) !important;
  text-decoration: none;
}

.footer-social__note {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-top: var(--space-3);
}

.footer-organizer {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: var(--space-4) 0;
}

.footer-cookie-link {
  text-align: center;
  margin-top: var(--space-2);
}

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-link-btn:hover {
  color: rgba(255, 255, 255, 0.85);
}


/* ==========================================================================
   COOKIE BANNER – hidden → is-visible Toggle
   ========================================================================== */

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  display: flex !important;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.cookie-banner__text {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--fc-text-muted);
  flex: 1;
}

.cookie-banner__text a {
  color: var(--fc-gold);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}


/* ==========================================================================
   BTN outline Variante (für Cookie-Banner)
   ========================================================================== */

.btn--outline {
  background: transparent;
  border: 1px solid var(--fc-border);
  color: var(--fc-text-muted);
}

.btn--outline:hover {
  border-color: var(--fc-text);
  color: var(--fc-text);
  background: transparent;
}


/* ==========================================================================
   MOBILE NAV – Dunkles Panel
   ========================================================================== */

.mobile-nav {
  background-color: var(--fc-dark);
}

.mobile-nav__link {
  color: rgba(255, 255, 255, 0.85);
}

.mobile-nav__link:hover {
  color: #fff;
}

.mobile-nav__item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Logo weiß wenn Mobile-Nav geöffnet ist */
.mobile-nav.is-open ~ .site-header .site-logo__name,
.mobile-nav.is-open ~ .site-header .site-logo__tagline {
  color: #fff;
}

.mobile-nav__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.mobile-nav__close:hover {
  color: #fff;
}
