/* Layout: Preview-Banner, Header, Hero, Toolbar, Main-Grid, Footer */

/* Vorschau-Banner */
.preview-banner {
  background: linear-gradient(90deg, var(--brand-orange) 0%, var(--brand-orange-soft) 50%, var(--brand-orange) 100%);
  color: var(--color-on-accent);
  text-align: center;
  padding: 10px var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(245, 197, 24, 0.35);
  position: relative;
  z-index: 1;
}

.preview-banner .dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--color-on-accent);
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(74, 51, 0, 0.55);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(74, 51, 0, 0.55);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 6px rgba(74, 51, 0, 0);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--brand-navy);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header-inner {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.logo-img {
  height: 64px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.header-nav a {
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  padding: var(--sp-2) 0;
  position: relative;
  transition: color var(--dur-fast) var(--ease-std);
}

/* Hover/Active-Akzent: gelbe Unterstreichung wie ein Bahn-Hinweis-Strich */
.header-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-fast) var(--ease-std);
}
.header-nav a:not(.btn):hover,
.header-nav a:not(.btn):focus-visible {
  color: var(--brand-orange);
}
.header-nav a:not(.btn):hover::after,
.header-nav a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}
/* Aktive Seite: gelb + dauerhafter Unterstrich */
.header-nav a[aria-current="page"] {
  color: var(--brand-orange);
}
.header-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-nav .btn {
  margin-left: var(--sp-2);
}

/* Header-CTA "Veranstalter werden": dunkle Schrift (Roestbraun) auf Gold-Hintergrund explizit erzwingen,
   plus mehr horizontales Padding fuer ruhigen Rahmen um den Text und sichtbare Abtrennung von den Nav-Links. */
.header-nav .btn--primary,
.header-nav .btn--primary:hover,
.header-nav .btn--primary:focus {
  color: var(--color-on-accent);
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
  margin-left: var(--sp-6);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--dur-fast) var(--ease-std);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hamburger svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Mobile-Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--brand-navy-deep);
  z-index: 99;
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  border-bottom: 2px solid var(--color-accent);
  transform: translateY(-120%);
  opacity: 0;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med);
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a:last-child {
  border-bottom: none;
  color: var(--color-accent-hover);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
  padding: var(--sp-12) var(--sp-6) var(--sp-10);
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--color-accent-hover);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(245, 197, 24, 0.55);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  color: #fff;
  margin-bottom: var(--sp-4);
  max-width: 640px;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.hero h1 em {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-weight: 600;
  color: var(--color-accent-hover);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-lg);
  max-width: 540px;
  margin-bottom: var(--sp-8);
  line-height: var(--lh-normal);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-stat-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}

.hero-stat-num {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: #fff;
}

.hero-stat-label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero rechts: Gemeinde- und Kategorie-Quickfilter */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.hero-partners-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
/* hidden-Attribut auch bei Klassen mit eigener display-Property respektieren
   (sonst ueberschreibt display:flex die UA-Regel display:none) */
[hidden] {
  display: none !important;
}

.hero-partner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-std);
  text-align: left;
  width: 100%;
}

.hero-partner:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateX(2px);
}

.hero-partner-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hero-partner-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-partner-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-partner-meta {
  font-size: calc(0.7rem * var(--fs-scale));
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-partner-tier {
  font-size: calc(0.6rem * var(--fs-scale));
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}

.partner-badge.tier-premium,
.hero-partner-tier.tier-premium,
.tier-badge.tier-premium {
  background: linear-gradient(135deg, var(--brand-orange), #e8a50a);
  color: var(--color-on-accent);
  border: 1px solid rgba(184, 134, 11, 0.4);
}

.partner-badge.tier-standard,
.hero-partner-tier.tier-standard,
.tier-badge.tier-standard {
  background: linear-gradient(135deg, #e5e7eb, #b8bec9);
  color: #3d434f;
  border: 1px solid rgba(113, 120, 130, 0.4);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero rechts: Nächste Termine (schlank) */
.hero-next-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-next-head {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--brand-orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-4);
}

.hero-next-head svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand-orange-soft);
}

.hero-next-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.hero-next-event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3);
  align-items: center;
  padding: var(--sp-3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background var(--dur-fast) var(--ease-std),
              border-color var(--dur-fast) var(--ease-std),
              transform var(--dur-fast) var(--ease-std);
}

.hero-next-event:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 197, 24, 0.45);
  transform: translateX(2px);
}

.hero-next-date {
  width: 48px;
  text-align: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 5px 0;
}

/* Heute: dezenter Orange-Akzent nur als Kontur */
.hero-next-date.is-today {
  background: rgba(245, 197, 24, 0.14);
  border-color: rgba(245, 197, 24, 0.55);
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.18) inset;
}

.hero-next-date.is-today .hero-next-month {
  color: var(--brand-orange-soft);
}

.hero-next-day {
  font-size: calc(1.3rem * var(--fs-scale));
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
  display: block;
}

.hero-next-month {
  font-size: calc(0.6rem * var(--fs-scale));
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--fw-semi);
}

.hero-next-info {
  min-width: 0;
}

.hero-next-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-next-meta {
  display: flex;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
}

.hero-next-meta .dot {
  opacity: 0.5;
}

.hero-next-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--brand-orange-soft);
  text-decoration: none;
  padding: var(--sp-3) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-next-cta:hover { color: var(--brand-orange); }

.hero-next-cta span:last-child {
  transition: transform var(--dur-fast) var(--ease-std);
}

.hero-next-cta:hover span:last-child {
  transform: translateX(3px);
}

.hero-next-empty {
  padding: var(--sp-4);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
}

/* Dezenter Scroll-Indikator am unteren Bildschirmrand - rein dekoratives Signal.
   Frei stehender Gold-Chevron ohne Kreis, mit leichtem Schatten zur Kontrastsicherung.
   bottom-Wert grosszuegig, damit der Pfeil auch auf iOS Safari ueber der dynamischen
   Browser-Toolbar sichtbar ist. */
.hero-scroll {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 110px);
  transform: translateX(-50%);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  opacity: 0.85;
  pointer-events: none; /* dekorativ, nicht anklickbar */
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

/* Auf groesseren Screens reicht ein kleiner Abstand zum Bildschirmrand */
@media (min-width: 769px) {
  .hero-scroll {
    bottom: max(var(--sp-4), env(safe-area-inset-bottom, 0px));
  }
}

.hero-scroll.is-hidden {
  opacity: 0;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}

@keyframes heroScrollBounce {
  0%, 20%, 100% { transform: translateY(0); opacity: 0.85; }
  50%           { transform: translateY(5px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll svg { animation: none; }
}

/* Sidebar-Variante der Beispiel-Partner-Karte im Navy-Design wie .card--spotlight.
   Spezifitaet .card.card--partner-showcase, damit die .card-Regel aus
   components.css (weisser Hintergrund) nicht gewinnt. */
.card.card--partner-showcase {
  background: linear-gradient(160deg, var(--brand-navy) 0%, var(--brand-navy-soft) 100%);
  border: none;
  padding: var(--sp-5) var(--sp-4);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.card.card--partner-showcase[hidden] {
  display: none;
}

/* Kicker "aus der Region" + Vorschau-Badge rechts */
.card.card--partner-showcase .partner-cta-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  width: 100%;
}

.card.card--partner-showcase .partner-cta-head {
  margin-bottom: var(--sp-3);
}

/* Partner-Showcase als Collapse-Toggle: Button-Defaults zuruecksetzen,
   Layout wie "Selbst Partner werden": Label-Kicker oben, Titel unten links, Chevron unten rechts.
   Hover-State auf hellem Weiss-Schimmer (Navy-Bg) statt surface-1. */
.card.card--partner-showcase .partner-cta-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "label   label"
    "title chevron";
  gap: var(--sp-2);
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 0 var(--sp-3) 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease-std);
}

.card.card--partner-showcase .partner-cta-toggle > .partner-cta-label  { grid-area: label; }
.card.card--partner-showcase .partner-cta-toggle > .partner-cta-title  { grid-area: title; }
.card.card--partner-showcase .partner-cta-toggle > .partner-cta-chevron { grid-area: chevron; }

.card.card--partner-showcase .partner-cta-toggle:hover {
  background: rgba(255, 255, 255, 0.04);
}

.card.card--partner-showcase .partner-cta-toggle:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

.card.card--partner-showcase .partner-cta-chevron {
  width: 18px;
  height: 18px;
  margin-left: auto;
  margin-top: 2px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
  transition: transform var(--dur-fast) var(--ease-std), color var(--dur-fast) var(--ease-std);
}

.card.card--partner-showcase .partner-cta-toggle[aria-expanded="true"] .partner-cta-chevron {
  transform: rotate(180deg);
  color: var(--brand-orange);
}

.card.card--partner-showcase .partner-cta-toggle:hover .partner-cta-chevron {
  color: #fff;
}

/* Wenn eingeklappt, kleinerer Bottom-Margin der Card-Kopf-Section */
.card.card--partner-showcase .partner-cta-toggle[aria-expanded="false"] {
  margin-bottom: 0;
}

.card.card--partner-showcase .hero-partners-list {
  margin-bottom: 0;
}

/* Toolbar */
.toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: var(--z-toolbar);
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-1);
  transition: box-shadow var(--dur-base) var(--ease-std);
}

.toolbar--compact {
  box-shadow: 0 6px 18px -12px rgba(15, 23, 42, 0.25);
}

.toolbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-2) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition:
    padding var(--dur-base) var(--ease-std),
    gap var(--dur-base) var(--ease-std);
}

.toolbar--compact .toolbar-inner {
  padding-top: 6px;
  padding-bottom: 6px;
  gap: var(--sp-2);
}

.toolbar-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toolbar-section-label {
  font-size: 0.68rem;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-left: 2px;
  max-height: 1.2em;
  overflow: hidden;
  opacity: 1;
  transition:
    max-height var(--dur-base) var(--ease-std),
    opacity var(--dur-fast) var(--ease-std),
    margin var(--dur-base) var(--ease-std);
}

.toolbar--compact .toolbar-section-label {
  max-height: 0;
  opacity: 0;
  margin: 0;
}

.toolbar-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.toolbar-row--between {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-4);
}

.toolbar-row--between > .segmented {
  justify-self: start;
}

.toolbar-row--between > .month-nav {
  justify-self: center;
}

.toolbar-scroll {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 0;
}

.toolbar-scroll::-webkit-scrollbar {
  display: none;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Main-Grid */
.main-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-6);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--sp-6);
}

.content {
  min-width: 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Footer */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--sp-12);
  position: relative;
  overflow: hidden;
}
/* Bahnlinie als Footer-Trenner: dünne Goldlinie mit 4 Stops = 4 Gemeinden */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background:
    radial-gradient(circle 5px at 14% 12px, var(--brand-orange) 4px, transparent 5px),
    radial-gradient(circle 5px at 38% 12px, var(--brand-orange) 4px, transparent 5px),
    radial-gradient(circle 5px at 62% 12px, var(--brand-orange) 4px, transparent 5px),
    radial-gradient(circle 5px at 86% 12px, var(--brand-orange) 4px, transparent 5px),
    linear-gradient(180deg, transparent 11px, rgba(245, 197, 24, 0.45) 11px, rgba(245, 197, 24, 0.45) 13px, transparent 13px);
  pointer-events: none;
  z-index: 1;
}
/* Subtile Kreis-Textur als Footer-Hintergrund */
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 1.5px);
  background-size: 28px 28px;
  z-index: 0;
}
.site-footer > * { position: relative; z-index: 2; }

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-6) var(--sp-10);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
}

.footer-brand .logo {
  margin-bottom: var(--sp-5);
}

.footer-brand .logo-img {
  height: 64px;
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  max-width: 320px;
}

/* Social Icons im Footer (Pattern angelehnt an net-pulse.com) */
.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.footer-social__link {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  color: var(--brand-orange);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
  background: var(--brand-orange);
  color: var(--brand-orange-on);
  transform: translateY(-1px);
}

.footer-social__link:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

.footer-social__link svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.01em;
}

.footer-col li {
  margin-bottom: var(--sp-3);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
}
@media (min-width: 720px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
    gap: var(--sp-5);
  }
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: var(--color-accent-hover);
}

.footer-credits {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.footer-credits .sep {
  color: rgba(255, 255, 255, 0.2);
}
