/* Lokale Schriftarten (DSGVO-konform / DSGVO-compliant) */
@font-face {
  font-family: 'Anton';
  src: url('assets/fonts/Anton-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Caveat';
  src: url('assets/fonts/Caveat-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-VariableFont.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  src: url('assets/fonts/Quicksand-VariableFont.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --paper: #fdfbf7; /* Weicherer, wärmerer Cremeton */
  --cream: #ebe7df;
  --signal: #e60000;
  --jeannie-gold: #e27d3b; /* Warmes Corgi-Mischlings-Gold */
  --warm-sun: #f7d070;     /* Sonniges, weiches Gelb */
  --heart-pink: #f5a8a8;   /* Herzliches Rosé-Pink */
  --muted: #555;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
}

/* Reset / Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Quicksand', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
p { margin: 0 0 1em; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; border-radius: 0 0 .5rem 0;
  font-weight: 700; z-index: 999;
}
.skip-link:focus { left: 0; outline: 2px solid var(--signal); outline-offset: 2px; }

:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; border-radius: 4px; }

/* Layout */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.section { margin-bottom: clamp(6rem, 12vw, 12rem); }

/* Typography helpers */
.font-display { font-family: 'Anton', 'Impact', sans-serif; font-weight: 400; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.font-script { font-family: 'Caveat', 'Brush Script MT', 'Georgia', serif; font-weight: 700; }
.text-signal { color: var(--signal); }
.text-ink { color: var(--ink); }
.text-paper { color: var(--paper); }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }

.text-huge {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 12vw, 15rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.text-display {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.75rem, 6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--signal);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
.eyebrow.center { justify-content: center; }
.eyebrow::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--signal);
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(253, 251, 247, 0.92); /* Passend zu --paper */
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--cream);
}
.site-header nav { display: flex; align-items: center; justify-content: space-between; height: 6rem; }
.brand-logo { display: inline-flex; align-items: center; gap: 0.75rem; font-family: 'Anton', sans-serif; font-size: 1.75rem; letter-spacing: -0.01em; }
.brand-logo .badge {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--signal); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px rgba(230, 0, 0, 0.45);
}
.brand-logo .badge svg { width: 1.25rem; height: 1.25rem; }

.main-nav { display: none; gap: 2rem; align-items: center; }
.nav-item {
  position: relative;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  padding: 0.75rem 0;
  transition: color 0.4s var(--ease-out-expo);
  display: inline-block;
}
.nav-item::before {
  content: ''; position: absolute; left: 0; bottom: 8px;
  width: 100%; height: 1px; background: var(--signal);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.6s var(--ease-out-expo);
}
.nav-item:hover, .nav-item:focus, .nav-item.active { color: var(--ink); }
.nav-item:hover::before, .nav-item:focus::before, .nav-item.active::before {
  transform: scaleX(1); transform-origin: left;
}

.header-actions { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  background: transparent; border: 0; color: var(--ink);
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-out-expo);
}
.hamburger svg { width: 1.5rem; height: 1.5rem; }
.hamburger:hover { transform: scale(1.08); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu .close-btn {
  position: absolute; top: 1.75rem; right: clamp(1rem, 4vw, 3rem);
  background: transparent; border: 0; color: var(--paper);
  width: 3rem; height: 3rem; transition: color 0.3s, transform 0.3s;
}
.mobile-menu .close-btn:hover { color: var(--signal); transform: scale(1.1); }
.mobile-menu a {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--paper); text-transform: uppercase; letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a:focus { color: var(--signal); }
.mobile-menu a.cta { color: var(--signal); margin-top: 1rem; }
.mobile-menu a.cta:hover { color: var(--paper); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  padding: 1.05rem 2.25rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.85rem;
  border-radius: 999px; border: 0;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
.btn--small { padding: 0.75rem 1.5rem; font-size: 0.78rem; }
.btn--full { width: 100%; }

.btn--primary { background: var(--signal); color: #fff; position: relative; overflow: hidden; }
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
}
.btn--primary:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(230, 0, 0, 0.45); }
.btn--primary:hover::before { transform: translateX(100%); }

.btn--outline { background: transparent; color: var(--ink); border: 2px solid rgba(10, 10, 10, 0.4); }
.btn--outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-4px); border-color: var(--ink); }

.btn--invert { background: #fff; color: var(--signal); }
.btn--invert:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2); }

/* Hero */
.hero { min-height: 85vh; display: flex; flex-direction: column; justify-content: center; padding-top: 8rem; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero h1 { font-size: clamp(4rem, 12vw, 12rem); margin-left: -0.05em; }
.hero-lede { font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 300; line-height: 1.55; color: rgba(10, 10, 10, 0.82); max-width: 36rem; margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; }

.hero-image-wrap { position: relative; }
.hero-image-frame {
  position: relative; border-radius: 2.5rem; overflow: hidden;
  box-shadow: 0 20px 50px rgba(226, 125, 59, 0.15);
  background: var(--paper);
}
.hero-image-frame img {
  position: relative;
  width: 100%; height: auto;
  filter: contrast(1.05) brightness(1.02);
  transition: transform 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo);
}
.hero-image-frame:hover img {
  transform: scale(1.02);
  filter: contrast(1.1) brightness(1.05);
}
.hero-tag {
  position: absolute; left: -1rem; bottom: -1rem;
  background: var(--paper); border: 2px solid var(--ink);
  padding: 0.85rem 1.25rem;
  transform: rotate(-4deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  font-family: 'Anton', sans-serif; font-size: 1.5rem; text-transform: uppercase;
  color: var(--ink); letter-spacing: 0.06em;
}

/* Countdown */
.countdown {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.cd-box {
  background: rgba(10, 10, 10, 0.04);
  padding: 1rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 1px solid transparent;
}
.cd-box.accent { border-color: var(--signal); }
.cd-num { font-family: 'Anton', sans-serif; font-size: clamp(1.85rem, 5vw, 3rem); line-height: 1; }
.cd-num.signal { color: var(--signal); }
.cd-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; opacity: 0.6; margin-top: 0.25rem; }
.cd-box.accent .cd-label { color: var(--signal); opacity: 1; }
#countdown-message:empty { display: none; }
.cd-final { color: var(--signal); font-family: 'Anton', sans-serif; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2.5rem; }

/* Marquee */
.marquee {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--signal); color: #fff;
  padding: 2rem 0;
  overflow: hidden;
  display: flex;
  transform: rotate(-2deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative; z-index: 20;
  margin-bottom: clamp(8rem, 14vw, 12rem);
}
.marquee.reveal {
  opacity: 0;
  transform: translateY(40px) rotate(-2deg) scale(1.05);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
  will-change: opacity, transform;
}
.marquee.reveal.in-view {
  opacity: 1;
  transform: translateY(0) rotate(-2deg) scale(1.05);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  flex-shrink: 0;
  width: max-content;
  will-change: transform;
  animation: marquee 25s linear infinite;
}
.marquee-track > span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  padding: 0 2rem;
  letter-spacing: 0.05em;
}
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.3333%, 0, 0);
  }
}


/* Section grids */
.split { display: grid; gap: clamp(2rem, 4vw, 4rem); }
.split.section-intro { grid-template-columns: 1fr; }
.split-text { font-size: clamp(1.15rem, 1.6vw, 1.5rem); font-weight: 300; line-height: 1.55; opacity: 0.9; }
.split-text p { margin-bottom: 1.5rem; }
.text-stroke {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1; text-transform: uppercase;
  -webkit-text-stroke: 1px var(--ink);
  color: transparent;
  margin: 2rem 0;
}
.text-stroke .filled { -webkit-text-stroke: 0; color: var(--signal); }

/* Bento card */
.bento-grid { display: grid; gap: 2rem; }
.bento-grid.two { grid-template-columns: 1fr; }
.bento-grid.three { grid-template-columns: 1fr; }
.bento-card {
  background: var(--paper);
  border: 1px solid var(--cream);
  border-radius: 2rem;
  padding: clamp(1.75rem, 3vw, 3rem);
  transition: transform 0.6s var(--ease-out-expo), background 0.6s, border-color 0.6s;
  display: flex; flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-8px);
  background: #fff;
  border-color: rgba(10, 10, 10, 0.15);
}
.bento-card.muted { background: rgba(10, 10, 10, 0.04); border: 0; }
.bento-card.signal { background: var(--signal); color: #fff; border: 0; box-shadow: 0 20px 50px rgba(230, 0, 0, 0.3); }
.bento-card.accent-top { border-top: 4px solid var(--signal); }
.bento-card h3 { font-family: 'Anton', sans-serif; font-size: clamp(1.85rem, 3vw, 2.5rem); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 1rem; line-height: 1.05; }
.bento-card p { font-size: 1.05rem; line-height: 1.6; opacity: 0.86; font-weight: 300; }
.bento-card .country { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.bento-card .country span:first-child { font-size: 2.25rem; }
.bento-card .source-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--signal); margin-bottom: 1.25rem; }
.bento-card.signal .source-tag { color: rgba(255, 255, 255, 0.85); }

.manifest-card { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
.manifest-num { font-family: 'Anton', sans-serif; font-size: clamp(4rem, 9vw, 7rem); line-height: 0.85; color: var(--signal); opacity: 0.85; }
.bento-card.signal .manifest-num { color: rgba(255, 255, 255, 0.55); opacity: 1; }
.manifest-body h3 { font-size: clamp(1.85rem, 3.5vw, 3rem); }
.manifest-body p { font-size: clamp(1.05rem, 1.4vw, 1.25rem); }

.action-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
}
.action-icon.tinted { background: rgba(230, 0, 0, 0.1); color: var(--signal); }
.action-icon.dark { background: rgba(10, 10, 10, 0.06); color: var(--ink); }
.action-icon.light { background: rgba(255, 255, 255, 0.2); color: #fff; }
.action-icon svg { width: 1.5rem; height: 1.5rem; }

.action-card { flex: 1; }
.action-card .card-cta { margin-top: auto; }

/* Final CTA */
.final-cta { max-width: 60rem; margin: 0 auto clamp(4rem, 8vw, 8rem); padding-inline: var(--pad-x); text-align: center; }
.final-cta .lede { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 300; opacity: 0.8; max-width: 40rem; margin: 0 auto 3rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Footer */
.site-footer { background: var(--ink); color: var(--paper); padding: 5rem 0 3rem; position: relative; z-index: 10; }
.footer-grid { display: grid; gap: 3rem; margin-bottom: 4rem; }
.footer-grid h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--signal); margin-bottom: 1.25rem; }
.footer-grid ul li { margin-bottom: 0.85rem; font-size: 0.92rem; opacity: 0.8; }
.footer-grid ul a { transition: color 0.3s; }
.footer-grid ul a:hover, .footer-grid ul a:focus { color: #fff; }
.footer-blurb { font-size: 0.92rem; opacity: 0.6; max-width: 28rem; line-height: 1.6; font-weight: 300; }
.footer-bottom {
  border-top: 1px solid rgba(245, 243, 238, 0.1);
  padding-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.7rem; opacity: 0.45;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Legal pages */
.legal-page { max-width: 50rem; margin: 0 auto; padding: 8rem var(--pad-x) 5rem; }
.legal-page h1 { font-family: 'Anton', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem); text-transform: uppercase; line-height: 0.95; margin-bottom: 2rem; }
.legal-page h2 { font-family: 'Anton', sans-serif; font-size: clamp(1.5rem, 3vw, 2.25rem); text-transform: uppercase; margin: 2.5rem 0 1rem; letter-spacing: 0.02em; }
.legal-page p, .legal-page li { font-size: 1.02rem; line-height: 1.7; opacity: 0.88; }
.legal-page ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page a { color: var(--signal); text-decoration: underline; }
.legal-todo {
  display: inline-block;
  background: var(--signal); color: #fff;
  padding: 0.1rem 0.55rem; border-radius: 0.25rem;
  font-weight: 700; font-size: 0.92em;
  font-family: ui-monospace, monospace;
}
.legal-back { display: inline-block; margin-bottom: 2rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: var(--signal); }
.legal-back:hover { text-decoration: underline; }

/* Tablet */
@media (min-width: 720px) {
  .countdown { gap: 1rem; }
  .cd-box { padding: 1.5rem; }
  .hero-actions { gap: 1rem; }
  .bento-grid.two { grid-template-columns: 1fr 1fr; }
  .bento-grid.three { grid-template-columns: repeat(3, 1fr); }
  .manifest-card { grid-template-columns: 3fr 9fr; gap: 2rem; }
  .split.section-intro { grid-template-columns: 4fr 8fr; }
  .footer-grid { grid-template-columns: 5fr 3fr 2fr 2fr; }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; }
  .main-nav { display: flex; }
  .hamburger { display: none; }
}

/* Mobile-only show */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

/* Screen-only defaults: hide print flyer elements */
.print-only-cta {
  display: none;
}

/* Print Campaign Flyer Optimization */
@media print {
  /* Hide non-essential layout blocks, buttons, and interactive widgets */
  .site-header, .mobile-menu, .marquee, .hero-tag, .btn, .footer-bottom, 
  #lightbox, .lightbox, .nav-item, #hamburger-btn, .wall-footer-hint, 
  .stamp-feedback-message, .stamp-btn, .wall-action-area, .click-particle, 
  .final-cta, #countdown-container, .mobile-menu-btn, .action-icon,
  .flyer-share-section {
    display: none !important;
  }
  
  /* Reset margins for A4 pages */
  @page {
    size: A4;
    margin: 1.5cm;
  }
  
  /* Suppress complex colors, gradients, and heavy background images to save ink */
  * {
    background: transparent !important;
    background-image: none !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
    line-height: 1.5;
  }
  
  /* Structure layout for natural flow in a physical poster/flyer */
  .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .hero {
    min-height: auto !important;
    padding: 0 0 2rem 0 !important;
    margin-bottom: 2rem !important;
    border-bottom: 2px solid #000 !important;
  }
  
  .hero-grid {
    display: block !important;
  }
  
  .hero-lede {
    font-size: 13pt !important;
    line-height: 1.4 !important;
    margin-top: 1rem !important;
  }
  
  .eyebrow {
    font-size: 10pt !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    padding: 2px 6px !important;
    display: inline-block !important;
    text-transform: uppercase !important;
  }
  
  .text-display {
    font-size: 28pt !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
    font-family: 'Anton', sans-serif !important;
  }
  
  .text-signal {
    color: #000 !important;
    text-decoration: underline !important;
  }
  
  /* Force all elements using reveal animations to be instantly visible */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
    pointer-events: auto !important;
  }
  
  /* Section styling */
  .section {
    padding: 2rem 0 !important;
    margin: 0 !important;
  }
  
  /* Bento Grid / Cards - Page breaks & outlines */
  .bento-grid, .bento-grid.two, .bento-grid.three {
    display: block !important;
    gap: 0 !important;
  }
  
  .bento-card {
    border: 1px solid #000 !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  
  /* Polaroid cards layout for clean listing */
  .polaroid-gallery {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  
  .polaroid-card {
    border: 1px solid #ccc !important;
    padding: 0.75rem !important;
    background: #fff !important;
    transform: none !important;
    box-shadow: none !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }
  
  .polaroid-card img {
    filter: grayscale(100%) !important;
    max-height: 150px !important;
    object-fit: cover !important;
  }
  
  .polaroid-caption {
    font-size: 10pt !important;
    color: #000 !important;
  }
  
  /* Manifest styling */
  .manifest-card {
    display: block !important;
    border-left: 4px solid #000 !important;
    padding-left: 1rem !important;
    border-radius: 0 !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
  }
  
  .manifest-num {
    font-size: 24pt !important;
    margin-bottom: 0.5rem !important;
  }
  
  /* Scribbles and stamps - styled for black and white high-contrast print */
  .protest-scribble {
    color: #000 !important;
    font-size: 12pt !important;
    position: static !important;
    display: block !important;
    margin: 0.5rem 0 !important;
    font-style: italic !important;
  }
  
  .stamp-badge {
    border: 2px solid #000 !important;
    color: #000 !important;
    background: #fff !important;
    font-size: 10pt !important;
    padding: 2px 6px !important;
    box-shadow: none !important;
    transform: rotate(-3deg) !important;
    display: inline-block !important;
    margin-bottom: 1rem !important;
  }
  
  /* Make all text links underline and display target url */
  a {
    color: #000 !important;
    text-decoration: underline !important;
  }
  
  a[href^="http"]:after {
    content: " (" attr(href) ")" !important;
    font-size: 9pt !important;
  }
  
  /* Stimmwand styling in print */
  .solidarity-wall-wrapper {
    margin-top: 2rem !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }
  
  .wall-board {
    height: auto !important;
    min-height: auto !important;
    background: #fff !important;
    border: 1px dashed #000 !important;
    padding: 1rem !important;
  }
  
  .wall-board-grid, .wall-stamp {
    display: none !important; /* Hide individual visual interactive stamps on print */
  }
  
  .counter-dashboard {
    border: 1px solid #000 !important;
    background: #fff !important;
    padding: 1rem !important;
  }
  
  .counter-number {
    font-size: 24pt !important;
  }
  
  /* Print-only call to action box at the bottom of the flyer */
  .print-only-cta {
    display: block !important;
    text-align: center;
    margin-top: 2rem !important;
    border: 3px double #000 !important;
    padding: 1.5rem !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }
}

/* ─────────────────────────────────────────────────
   LIGHTBOX / IMAGE ZOOM
───────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
  cursor: zoom-out;
}

#lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: transform 0.6s var(--ease-out-expo);
}

#lightbox.active #lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--signal);
}

.img-zoomable {
  cursor: zoom-in;
}

/* ─────────────────────────────────────────────────
   POLAROID GALLERY (CUTE SCRAPBOOK STYLE)
───────────────────────────────────────────────── */
.polaroid-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 5.5rem auto 0;
  padding-inline: var(--pad-x);
}

.polaroid-card {
  background: #fff;
  padding: 1.5rem 1.5rem 3.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09), 0 5px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(10, 10, 10, 0.03);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
  cursor: zoom-in;
  position: relative;
}

.polaroid-card::before {
  content: '❤️';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.85rem;
  z-index: 5;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.polaroid-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(10, 10, 10, 0.05);
  transition: transform 0.8s var(--ease-out-expo);
}

.polaroid-caption {
  font-family: 'Caveat', 'Brush Script MT', 'Georgia', serif;
  font-size: clamp(2.25rem, 3.5vw, 2.75rem);
  color: var(--ink);
  text-align: center;
  margin-top: 1.75rem;
  line-height: 1;
  font-weight: 700;
  transform: rotate(-1.5deg);
}

/* Polaroids wackeln und schweben süß bei Hover */
.polaroid-card:hover {
  transform: translateY(-16px) scale(1.05) rotate(0deg) !important;
  box-shadow: 0 35px 70px rgba(226, 125, 59, 0.2), 0 8px 25px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

/* Natürliche Neigungswinkel für Scrapbook-Optik */
.polaroid-card.reveal {
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
  will-change: opacity, transform;
}
.polaroid-card.reveal.tilt-left { transform: translateY(40px) rotate(-3deg); }
.polaroid-card.reveal.tilt-right { transform: translateY(40px) rotate(2.5deg); }
.polaroid-card.reveal.tilt-left-2 { transform: translateY(40px) rotate(-2deg); }
.polaroid-card.reveal.tilt-right-2 { transform: translateY(40px) rotate(3.5deg); }
.polaroid-card.reveal.tilt-left-3 { transform: translateY(40px) rotate(-1.5deg); }

.polaroid-card.reveal.in-view.tilt-left { opacity: 1; transform: translateY(0) rotate(-3deg); }
.polaroid-card.reveal.in-view.tilt-right { opacity: 1; transform: translateY(0) rotate(2.5deg); }
.polaroid-card.reveal.in-view.tilt-left-2 { opacity: 1; transform: translateY(0) rotate(-2deg); }
.polaroid-card.reveal.in-view.tilt-right-2 { opacity: 1; transform: translateY(0) rotate(3.5deg); }
.polaroid-card.reveal.in-view.tilt-left-3 { opacity: 1; transform: translateY(0) rotate(-1.5deg); }

.polaroid-card.tilt-left {
  transform: rotate(-3deg);
}
.polaroid-card.tilt-right {
  transform: rotate(2.5deg);
}
.polaroid-card.tilt-left-2 {
  transform: rotate(-2deg);
}
.polaroid-card.tilt-right-2 {
  transform: rotate(3.5deg);
}
.polaroid-card.tilt-left-3 {
  transform: rotate(-1.5deg);
}

/* Wiggle animation for badge */
@keyframes paw-wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-10deg) scale(1.05); }
  75% { transform: rotate(10deg) scale(1.05); }
}

.brand-logo:hover .badge svg, .site-header .brand-logo:hover .badge svg {
  animation: paw-wiggle 0.6s ease-in-out infinite alternate;
}

.btn:hover svg {
  animation: paw-wiggle 0.5s ease-in-out;
}

@media (min-width: 720px) {
  .polaroid-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* ─────────────────────────────────────────────────
   ACTIVIST PROTEST SCRIBBLES & STAMP BADGES
   ───────────────────────────────────────────────── */
.protest-scribble {
  font-family: 'Caveat', 'Brush Script MT', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  pointer-events: none;
  user-select: none;
  transition: transform 0.6s var(--ease-out-expo);
}

.stamp-badge {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: var(--signal);
  border: 3.5px solid var(--signal);
  padding: 0.4rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(230, 0, 0, 0.15);
  background: var(--paper); /* warm cream overlay background */
  transform-origin: center;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}

.stamp-badge:hover {
  transform: scale(1.05) rotate(-10deg) !important;
  box-shadow: 0 12px 32px rgba(230, 0, 0, 0.25);
}

.stamp-badge--hero {
  border-color: var(--jeannie-gold);
  color: var(--jeannie-gold);
  box-shadow: 0 8px 24px rgba(226, 125, 59, 0.15);
}

.stamp-badge--hero:hover {
  transform: scale(1.05) rotate(18deg) !important;
  box-shadow: 0 12px 32px rgba(226, 125, 59, 0.25);
}

/* ─────────────────────────────────────────────────
   CUSTOM PAW CURSOR & CLICK PARTICLES
   ───────────────────────────────────────────────── */
/* Custom Cursor for Hovering Interactive Elements */
a, button, .bento-card, .img-zoomable, .wall-board {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23e60000'><path d='M12 14c-1.66 0-3 1.34-3 3 0 2 2 3.5 3 4.5 1-1 3-2.5 3-4.5 0-1.66-1.34-3-3-3zm-4.5-2c-.83 0-1.5-.67-1.5-1.5S6.67 9 7.5 9s1.5.67 1.5 1.5S8.33 12 7.5 12zm9 0c-.83 0-1.5-.67-1.5-1.5S15.67 9 16.5 9s1.5.67 1.5 1.5S17.33 12 16.5 12zm-9-4c-.83 0-1.5-.67-1.5-1.5S6.67 5 7.5 5s1.5.67 1.5 1.5S8.33 8 7.5 8zm9 0c-.83 0-1.5-.67-1.5-1.5S15.67 5 16.5 5s1.5.67 1.5 1.5S17.33 8 16.5 8z'/></svg>") 12 12, pointer;
}

/* Click Particle System */
.click-particle {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  font-size: 1.25rem;
  will-change: transform, opacity;
  animation: particle-fly 0.8s cubic-bezier(0.1, 0.8, 0.25, 1) forwards;
}

@keyframes particle-fly {
  0% {
    transform: translate3d(var(--x), var(--y), 0) scale(0.4) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate3d(calc(var(--x) + var(--dx)), calc(var(--y) + var(--dy)), 0) scale(1.3) rotate(var(--rot));
    opacity: 0;
  }
}

/* ─────────────────────────────────────────────────
   SOLIDARITY WALL (PFOTENABDRUCK-STIMMWAND)
   ───────────────────────────────────────────────── */
.solidarity-wall-wrapper {
  margin-top: 3.5rem;
}

.wall-card {
  border: 2px solid var(--ink);
  background: var(--paper);
  position: relative;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}

.wall-header {
  margin-bottom: 2rem;
}

.wall-badge {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.counter-dashboard {
  background: rgba(10, 10, 10, 0.03);
  border: 1px dashed rgba(10, 10, 10, 0.15);
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

@media (min-width: 768px) {
  .counter-dashboard {
    flex-direction: row;
    text-align: left;
  }
}

.counter-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.counter-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}

.counter-value-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .counter-value-wrapper {
    justify-content: flex-start;
  }
}

.counter-number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  color: var(--signal);
  letter-spacing: 0.05em;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.counter-number.pop-animation {
  transform: scale(1.25);
}

.counter-plus {
  font-size: 1.8rem;
  animation: paw-wiggle 1.5s ease-in-out infinite alternate;
}

.counter-subtext {
  font-size: 0.9rem !important;
  opacity: 0.7;
}

.wall-action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.stamp-btn {
  transform: rotate(-1.5deg);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
}
.stamp-btn:hover {
  transform: scale(1.05) rotate(1deg);
}
.stamp-btn:active {
  transform: scale(0.95);
}

.stamp-feedback-message {
  font-family: 'Caveat', 'Brush Script MT', 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--signal);
  min-height: 1.5rem;
  text-align: center;
  animation: stamp-wiggle 0.5s ease;
}

@keyframes stamp-wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-3deg) scale(1.05); }
  75% { transform: rotate(3deg) scale(1.05); }
}

.wall-board-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wall-board {
  height: 380px;
  background-color: var(--paper);
  background-image: radial-gradient(var(--cream) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  border: 2px solid rgba(10, 10, 10, 0.08);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 4px 12px rgba(0,0,0,0.03);
}

.wall-board-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10, 10, 10, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(10, 10, 10, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.wall-footer-hint {
  font-size: 0.85rem !important;
  opacity: 0.6;
  text-align: center;
  font-style: italic;
}

/* Wall Stamp Style */
.wall-stamp {
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.wall-stamp.active {
  transform: translate(-50%, -50%) scale(1) rotate(var(--rot));
  opacity: 0.85;
}

.wall-stamp svg {
  width: clamp(2rem, 4vw, 3.25rem);
  height: clamp(2rem, 4vw, 3.25rem);
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.12));
}

.wall-stamp span {
  font-family: 'Caveat', 'Brush Script MT', 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.15rem;
  white-space: nowrap;
  background: var(--paper);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transform: rotate(var(--text-rot));
}

/* ─────────────────────────────────────────────────
   FLYER & SHARE SECTION (SCREEN ONLY)
   ───────────────────────────────────────────────── */
.flyer-share-section {
  display: block;
}

.flyer-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  background: var(--paper);
  border: 1px solid var(--cream);
  border-radius: 1.5rem;
  padding: 3rem var(--pad-x);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  align-items: center;
  transition: border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.flyer-card:hover {
  border-color: var(--jeannie-gold);
  box-shadow: 0 30px 60px rgba(226, 125, 59, 0.06);
}

.flyer-card-content {
  z-index: 2;
}

/* Preview Poster Card Styling */
.flyer-preview-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5rem;
  background: #fcfcfc;
  border: 1px solid var(--cream);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 320px;
  margin-inline: auto;
  transform: rotate(2deg);
  transition: transform 0.6s var(--ease-out-expo);
}

.flyer-card:hover .flyer-preview-card {
  transform: rotate(-1deg) scale(1.03);
}

.flyer-preview-badge {
  position: absolute;
  top: -0.75rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.flyer-preview-mini {
  width: 100%;
  aspect-ratio: 1 / 1.414; /* A4 Ratio */
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  position: relative;
}

.mini-header {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.mini-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--signal);
  margin-top: 0.5rem;
}

.mini-divider {
  width: 2rem;
  height: 2px;
  background: var(--ink);
  margin: 0.5rem auto;
}

.mini-legal {
  font-family: 'Caveat', 'Brush Script MT', 'Georgia', serif;
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 700;
  transform: rotate(-3deg);
  margin-bottom: 0.5rem;
}

.mini-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.mini-qr {
  width: 4rem;
  height: 4rem;
  padding: 0.25rem;
  border: 1px solid var(--ink);
  background: white;
}

.mini-qr svg {
  width: 100%;
  height: 100%;
}

.mini-url {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Tablet / Desktop Styles */
@media (min-width: 768px) {
  .flyer-card {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 4rem var(--pad-x);
  }
}

/* ─────────────────────────────────────────────────
   DEDICATED SHARE & DOWNLOAD MODAL
───────────────────────────────────────────────── */
.custom-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
  padding: 1.5rem;
}

.custom-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.custom-modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(15px);
  z-index: 1;
}

.custom-modal .modal-container {
  background: var(--paper);
  border: 1px solid var(--cream);
  border-radius: 1.5rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  padding: 2.5rem;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out-expo);
}

.custom-modal.active .modal-container {
  transform: scale(1);
}

.custom-modal .modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--ink);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
  z-index: 5;
  line-height: 1;
}

.custom-modal .modal-close:hover {
  background-color: var(--cream);
  color: var(--signal);
  transform: rotate(90deg);
}

/* Sharing buttons animations */
.share-social-btn {
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s;
}

.share-social-btn:hover {
  transform: translateY(-4px) scale(1.08);
}


