/* ============================================================
   MUSIKVEREIN LINDERN
   Palette: Uniform-Navy · Messing-Gold · Wappen-Rot · Pergament
   ============================================================ */

:root {
  /* Navy — aus der Uniform (dunkles Nachtblau) */
  --navy:        #1a2038;
  --navy-mid:    #232d52;
  --navy-light:  #2d3d72;
  --navy-dark:   #0d1122;

  /* Gold/Beige — gedämpftes Messing, passend zu den Cremehintergründen */
  --gold:        #b89a6a;
  --gold-light:  #cdb080;
  --gold-pale:   #ede0c4;
  --gold-dim:    #8a7250;
  --gold-bright: #d4bc90;

  /* Rot — aus den Wappenstreifen */
  --crimson:     #b02828;
  --crimson-lt:  #d03838;

  /* Pergament-Hintergründe */
  --cream:       #f7f3ea;
  --cream-dark:  #ece5d2;
  --cream-mid:   #e2d8c2;

  /* Text */
  --text:        #1a1810;
  --text-mid:    #4a4230;
  --text-light:  #7a7060;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', sans-serif;

  --shadow:    0 4px 28px rgba(26, 32, 56, 0.10);
  --shadow-md: 0 10px 48px rgba(26, 32, 56, 0.18);
  --shadow-lg: 0 20px 80px rgba(26, 32, 56, 0.24);
  --radius:    3px;
  --ease:      0.28s ease;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='1.5' cy='1.5' r='0.6' fill='%23c8a030' fill-opacity='0.06'/%3E%3C/svg%3E");
  line-height: 1.75;
  overflow-x: hidden;
}

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

/* === Layout === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.75rem; }
.container--narrow { max-width: 780px; }
.section { padding: 5.5rem 0; }

/* === Ornaments === */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.ornament--center {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}
.ornament-sym { font-size: 1rem; color: var(--gold); flex-shrink: 0; }

/* === Section Labels === */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1.5px solid rgba(200, 160, 48, 0.3);
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  background: rgba(13, 17, 34, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.75rem;
  height: 74px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  transition: transform var(--ease);
}
.logo:hover .logo-img { transform: scale(1.05); }

.logo-emblem {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(200, 160, 48, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--ease);
}
.logo:hover .logo-emblem { border-color: var(--gold-light); }
.logo-icon { font-size: 1.4rem; color: var(--gold); line-height: 1; }

.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav */
.main-nav { display: flex; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 0; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--ease);
  position: relative;
}
.nav-link:hover { color: var(--gold-light); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
.nav-link:hover::after { transform: scaleX(1); }
.arrow { font-size: 0.65rem; opacity: 0.6; }

/* Dropdown */
.has-dropdown { position: relative; }

/* Bridge the gap so hover doesn't break when moving into the dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
  z-index: 99;
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 196px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  list-style: none;
  border-top: 2px solid var(--gold);
  overflow: hidden;
  z-index: 100;
  /* Animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0s linear 0.22s;
}
.dropdown li a {
  display: block;
  padding: 0.72rem 1.4rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background var(--ease), color var(--ease), padding-left var(--ease);
  border-bottom: 1px solid var(--cream-dark);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: var(--navy);
  color: var(--gold-light);
  padding-left: 1.8rem;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0s linear 0s;
}

/* Social nav */
.social-nav {
  display: flex;
  gap: 0.15rem;
  margin-left: 0.75rem;
  border-left: 1px solid rgba(200, 160, 48, 0.2);
  padding-left: 0.75rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: color var(--ease), background var(--ease);
}
.social-link:hover { color: var(--gold-light); background: rgba(200, 160, 48, 0.12); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
  transform-origin: center;
}
/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

.hero-image-wrap { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 28px,
      rgba(0,0,0,0.03) 28px,
      rgba(0,0,0,0.03) 29px
    ),
    linear-gradient(
      160deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.52) 55%,
      rgba(0, 0, 0, 0.65) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.75rem;
  max-width: 780px;
  opacity: 0;
  animation: heroReveal 1.1s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  margin-bottom: 1.75rem;
  animation: heroReveal 1.1s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-badge::before, .hero-badge::after {
  content: '◆';
  font-size: 0.48rem;
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 600;
  line-height: 1.03;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
  animation: heroReveal 1.1s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-title-accent { color: var(--gold-light); font-style: italic; }

.hero-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  animation: heroReveal 1.1s 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-rule::before, .hero-rule::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.hero-rule-sym { color: var(--gold); font-size: 0.8rem; }

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.6;
  animation: heroReveal 1.1s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroReveal 1.1s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-cta .btn {
  min-width: 210px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: scrollPulse 3s 2s infinite;
  opacity: 0;
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  30%  { opacity: 0.6; }
  70%  { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(8px); }
}
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); }
.hero-scroll-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

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

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 160, 48, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-navy {
  background: var(--navy);
  color: var(--gold-light);
  border-color: rgba(200, 160, 48, 0.35);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-size: 0.82rem;
  padding: 1rem 2.6rem;
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 160, 48, 0.5);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--navy);
  border-top: 2px solid var(--gold-dim);
  border-bottom: 2px solid var(--gold-dim);
}

.stats-band-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.stat-block {
  text-align: center;
  padding: 3rem 2rem;
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.stat-plus {
  font-size: 60%;
  vertical-align: super;
  color: var(--gold);
}

.stat-rule {
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 0.75rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
}

.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(200, 160, 48, 0.18);
}

/* ============================================================
   MISSION STATEMENT
   ============================================================ */
.mission-section {
  background: var(--cream);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '♩';
  position: absolute;
  font-size: 20rem;
  color: rgba(200, 160, 48, 0.04);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: var(--font-display);
  line-height: 1;
}

.mission-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.mission-ornament span:not(.mission-sym) {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.mission-ornament span:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.mission-sym { font-size: 1.1rem; color: var(--gold); }

.mission-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
  position: relative;
}
.mission-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -1.8rem;
  margin-right: 0.15em;
  font-style: normal;
  opacity: 0.6;
}

.mission-attr {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  background: var(--navy-dark);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 32px,
      rgba(255,255,255,0.015) 32px,
      rgba(255,255,255,0.015) 33px
    );
  padding: 6rem 0;
  position: relative;
}

.features-header {
  max-width: 580px;
  margin-bottom: 4rem;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0.4rem 0 1.25rem;
}

.features-intro {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(200, 160, 48, 0.12);
  border: 1.5px solid rgba(200, 160, 48, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.75rem 2.5rem;
  transition: background var(--ease);
}
.feature-card:hover { background: rgba(200, 160, 48, 0.07); }

.feature-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  opacity: 0.7;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}

.feature-card p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--gold-dim);
  border-bottom: 2px solid var(--gold-dim);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 28px,
      rgba(200, 160, 48, 0.035) 28px,
      rgba(200, 160, 48, 0.035) 29px
    );
}

.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0.4rem 0 1rem;
}

.cta-band-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  max-width: 460px;
}

.cta-band-action {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   FACEBOOK FEED
   ============================================================ */
.feed-section {
  background: var(--cream-dark);
  padding: 5.5rem 0;
}

.feed-header {
  margin-bottom: 3rem;
}

.feed-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0.4rem 0 0.6rem;
}

.feed-subtitle {
  font-size: 0.96rem;
  color: var(--text-light);
  margin: 0;
}

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

.feed-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--cream-mid);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  color: inherit;
}
.feed-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feed-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream-dark);
}
.feed-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feed-card:hover .feed-card-img img { transform: scale(1.04); }

.feed-card-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.feed-card-noimg {
  font-size: 3rem;
  color: rgba(200,160,48,0.3);
}

.feed-card-body {
  flex: 1;
  padding: 1.25rem 1.4rem 0.75rem;
}

.feed-card-date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.65rem;
}

.feed-card-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.feed-card-footer {
  padding: 0.75rem 1.4rem 1.25rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: 0.75rem;
}

.feed-card-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  transition: color var(--ease);
}
.feed-card:hover .feed-card-link { color: var(--gold); }

.feed-more {
  text-align: center;
}

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

/* ============================================================
   SOCIAL SECTION
   ============================================================ */
.social-section {
  background: var(--cream);
  border-top: 1px solid var(--cream-mid);
  padding: 3rem 0;
}

.social-bar-label {
  margin-bottom: 1.5rem;
}

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

.social-bar-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius);
  color: var(--navy);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.social-bar-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.social-bar-item:hover .social-bar-arrow {
  color: var(--gold);
  transform: translateX(4px);
}
.social-bar-item svg { flex-shrink: 0; color: var(--gold-dim); transition: color var(--ease); }
.social-bar-item:hover svg { color: var(--gold); }

.social-bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.social-bar-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.social-bar-handle {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.social-bar-arrow {
  font-size: 1rem;
  color: var(--cream-mid);
  transition: color var(--ease), transform var(--ease);
  flex-shrink: 0;
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  margin-top: 74px;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  overflow: hidden;
}

.page-banner.has-image {
  background-image: var(--banner-img);
  background-size: cover;
  background-position: center 30%;
  min-height: 260px;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 10, 20, 0.78) 0%,
    rgba(14, 18, 38, 0.62) 55%,
    rgba(8, 10, 20, 0.80) 100%
  );
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
  padding-bottom: 2rem;
  width: 100%;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}
.page-breadcrumb a { color: rgba(255, 255, 255, 0.55); transition: color var(--ease); }
.page-breadcrumb a:hover { color: var(--gold-light); }
.page-breadcrumb span { color: var(--gold); }

.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.page-banner-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  margin-top: .75rem;
  font-style: italic;
}

/* Keep old .page-title working */
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* ============================================================
   PROSE
   ============================================================ */
.prose { font-size: 1.05rem; line-height: 1.85; color: var(--text); }

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold-pale);
  letter-spacing: -0.01em;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.75rem 0 0.75rem;
}
.prose p { margin-bottom: 1.25rem; color: var(--text-mid); }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.4rem; color: var(--text-mid); }
.prose strong { color: var(--navy); font-weight: 700; }
.prose a { color: var(--gold-dim); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }

.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.96rem; }
.prose th {
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 700;
}
.prose td { padding: 0.75rem 1.25rem; border-bottom: 1px solid var(--cream-dark); color: var(--text-mid); }
.prose tr:nth-child(even) td { background: var(--cream-dark); }

/* ============================================================
   VORSTAND CARDS
   ============================================================ */
.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.vorstand-card {
  background: var(--white);
  border: 1px solid var(--cream-mid);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.vorstand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.vorstand-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.vorstand-card .role {
  font-size: 0.7rem;
  color: var(--gold-dim);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}
.vorstand-card p { font-size: 0.88rem; color: var(--text-mid); margin: 0; line-height: 1.6; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.kontakt-card {
  background: var(--white);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease);
}
.kontakt-card:hover { box-shadow: var(--shadow-md); }

.kontakt-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold-pale);
}
.kontakt-card p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0.6rem; line-height: 1.7; }
.kontakt-card a { color: var(--gold-dim); transition: color var(--ease); }
.kontakt-card a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding-top: 4.5rem;
  border-top: 2px solid var(--gold-dim);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.75rem 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200, 160, 48, 0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: all var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(200, 160, 48, 0.18);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--ease), padding-left var(--ease);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.footer-contact a { color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(200, 160, 48, 0.1);
  padding: 1.5rem 1.75rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  max-width: 1140px;
  margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,0.38); margin: 0 0.3rem; transition: color var(--ease); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .stat-sep { display: none; }
  .stat-block { border-bottom: 1px solid rgba(200,160,48,0.12); }

  .features-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-text p { margin: 0 auto; }
  .cta-band-action { flex-direction: row; justify-content: center; }

  .social-bar { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .social-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  /* Mobile nav — animate with opacity+transform, NOT display */
  .main-nav {
    display: flex !important;   /* always in DOM */
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: rgba(10, 13, 26, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(200,160,48,0.2);
    border-bottom: 2px solid var(--gold-dim);
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.32s ease,
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.36s;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.32s ease,
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0s;
  }

  /* Nav list — override desktop align-items:center which centers li's horizontally */
  .nav-list { flex-direction: column; width: 100%; gap: 0; align-items: stretch; }
  .nav-list > li { width: 100%; }

  .nav-link {
    padding: 0.9rem 0.5rem;
    border-bottom: 1px solid rgba(200,160,48,0.08);
    font-size: 0.9rem;
    width: 100%;
    justify-content: flex-start;
  }
  .nav-link .arrow { margin-left: auto; }
  .nav-link::after { display: none; }

  /* Mobile dropdown — max-height animation, no display toggle (no jump) */
  .has-dropdown::after { display: none; }

  .has-dropdown:hover .dropdown {
    /* disable desktop hover trigger on mobile */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
  }

  .dropdown {
    /* Reset all desktop positioning */
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-left: 2px solid rgba(200,160,48,0.25) !important;
    background: transparent !important;
    margin: 0 0 0 0.5rem !important;
    padding: 0 !important;
    z-index: auto !important;
    /* Smooth height animation */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .has-dropdown.open .dropdown {
    max-height: 240px;
  }

  .dropdown li a {
    display: block;
    padding: 0.75rem 0.75rem 0.75rem 1.25rem !important;
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.83rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    background: transparent !important;
    transition: color var(--ease), padding-left var(--ease) !important;
  }
  .dropdown li:last-child a { border-bottom: none !important; }
  .dropdown li a:hover {
    color: var(--gold-light) !important;
    padding-left: 1.6rem !important;
    background: transparent !important;
  }

  .social-nav {
    margin: 1rem 0 0;
    border-left: none;
    border-top: 1px solid rgba(200,160,48,0.15);
    padding: 1rem 0 0;
    justify-content: center;
  }

  .features-section { padding: 4rem 0; }
  .mission-section { padding: 4rem 0; }
  .mission-quote { font-size: clamp(1.3rem, 4vw, 1.8rem); }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .vorstand-grid { grid-template-columns: 1fr; }
  .social-cards { max-width: 100%; }
  .cta-band-action { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; justify-content: center; max-width: 280px; min-width: 0; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .cta-band-action { flex-direction: column; align-items: stretch; }
  .cta-band-action .btn { justify-content: center; }
  .social-bar { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NEUIGKEITEN ARCHIVE PAGE
   ============================================================ */

/* Filter bar */
.archive-filters {
  display: none;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.archive-filters.is-visible { display: flex; }

.archive-period-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius);
  padding: .5rem 2rem .5rem .85rem;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238a8780' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .6rem center;
  transition: border-color .2s;
}
.archive-period-select:focus { outline: none; border-color: var(--gold); }

.archive-tag-btn {
  font-size: .7rem;
  font-weight: 600;
  padding: .28rem .65rem;
  border-radius: 99px;
  border: 1px solid var(--cream-mid);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all .15s ease;
}
.archive-tag-btn:hover { border-color: var(--gold); color: var(--gold-dim); }
.archive-tag-btn.is-active { background: var(--navy); color: var(--gold-pale); border-color: var(--navy); }

.archive-no-results { text-align: center; color: var(--text-light); font-size: .9rem; padding: 2rem 0; }

/* Pagination */
.archive-paged { display: none !important; }
.archive-load-more-wrap { text-align: center; padding: 1.5rem 0 .5rem; }
.archive-load-more {
  background: var(--white);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius);
  padding: .65rem 1.75rem;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: .04em;
  transition: border-color .2s, background .2s;
}
.archive-load-more:hover { border-color: var(--gold); background: var(--cream); }
.archive-load-more span { color: var(--text-light); font-weight: 400; }

/* Year accordion */
.feed-archive { margin-top: 0; }
.archive-year-group { margin-bottom: .5rem; }
.archive-year-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--cream-mid);
  padding: .85rem 0;
  cursor: pointer;
  transition: opacity .2s;
}
.archive-year-toggle:hover { opacity: .7; }
.archive-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.archive-year-chevron { color: var(--text-light); transition: transform .25s ease; display: flex; }
.archive-year-group.is-open .archive-year-chevron { transform: rotate(180deg); }
.archive-year-content { display: none; padding-top: .25rem; }
.archive-year-group.is-open .archive-year-content { display: block; }

.archive-month {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-mid);
  margin: 0 0 .25rem;
  padding: 1.5rem 0 .5rem;
  border-bottom: 1px solid var(--cream-mid);
}
.archive-month:first-child { padding-top: .5rem; }

/* Archive card */
.archive-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  padding: 1.25rem .75rem;
  border-bottom: 1px solid var(--cream-mid);
  cursor: pointer;
  transition: background .18s;
  border-radius: var(--radius);
  margin: 0 -.75rem;
}
.archive-card:not(:has(.archive-card-image)) {
  grid-template-columns: 1fr;
  border-left: 3px solid var(--gold-pale);
  padding-left: 1.1rem;
}
.archive-card:not(:has(.archive-card-image)):hover {
  border-left-color: var(--gold);
}
.archive-card:hover { background: var(--cream); }
.archive-card:last-child { border-bottom: none; }
.archive-card:has(+ .archive-month) { border-bottom: none; }

.archive-card-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  grid-row: 1;
}
.archive-card-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.archive-card-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  grid-row: 1;
}
.archive-card-content time {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .4rem;
}
.archive-card-text {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.archive-card-text p, .archive-detail-text p { margin: 0; padding: 0; }
.archive-expand-hint {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-dim);
  margin-top: auto;
  padding-top: .5rem;
  transition: color .2s;
  letter-spacing: .03em;
}
.archive-card:hover .archive-expand-hint { color: var(--navy); }

/* Expanded detail */
.archive-card-detail {
  grid-column: 1 / -1;
  display: none;
  padding-top: .75rem;
  border-top: 1px solid var(--cream-mid);
  margin-top: .5rem;
}
.archive-card.is-expanded .archive-card-detail { display: block; }
.archive-card.is-expanded .archive-card-text { display: none; }
.archive-card.is-expanded .archive-expand-hint { color: var(--text-light); }

.archive-detail-text { font-size: .87rem; color: var(--text-mid); line-height: 1.6; }
.archive-card-detail .archive-detail-text p { margin: 0 0 .35rem; }
.archive-card-detail .archive-detail-text p:last-child { margin-bottom: 0; }

/* Gallery */
.archive-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
  margin: 1.25rem 0;
}
.archive-gallery img { width: 100%; border-radius: var(--radius); display: block; }

/* Actions */
.archive-card-actions {
  display: flex;
  align-items: center;
  margin-top: .75rem;
  gap: 1rem;
}
.archive-fb-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-dim);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .18s;
}
.archive-fb-link:hover { color: var(--navy); }
.share-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--text-light);
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .18s;
  margin-left: auto;
}
.share-whatsapp:hover { color: #25D366; }

/* Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin: .25rem 0 .4rem; }
.post-tag {
  display: inline-block;
  font-size: .63rem;
  font-weight: 700;
  line-height: 1;
  padding: .2rem .55rem;
  border-radius: 99px;
  background: var(--cream);
  color: var(--gold-dim);
  border: 1px solid var(--gold-pale);
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .archive-card { grid-template-columns: 100px 1fr; gap: 1rem; }
  .archive-gallery { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .archive-period-select { width: 100%; }
}

/* Gallery cursor */
.archive-gallery a { cursor: zoom-in; }

/* Lightbox */
#archive-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 13, 22, 0.96);
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#archive-lightbox.is-open { display: flex; }

.lb-img-wrap {
  max-width: calc(100vw - 8rem);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  display: block;
}

.lb-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: .25rem .5rem;
  transition: color .18s;
}
.lb-close:hover { color: var(--white); }

.lb-prev, .lb-next {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 3rem;
  cursor: pointer;
  padding: .5rem;
  line-height: 1;
  transition: color .18s;
  flex-shrink: 0;
  user-select: none;
}
.lb-prev:hover, .lb-next:hover { color: var(--white); }

@media (max-width: 600px) {
  .lb-img-wrap { max-width: 100vw; }
  .lb-prev, .lb-next { font-size: 2rem; padding: .25rem; }
}

/* ============================================================
   COMPATIBILITY — keep old class names working
   ============================================================ */
.about-strip { display: none; } /* replaced by .stats-band */
.highlight-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,160,48,0.15); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 1.4rem 1.6rem; transition: transform var(--ease); }
.highlight-card:hover { transform: translateX(5px); }
.highlight-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.highlight-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin: 0; }
