/* ============================================
   STEIGER SLOVENSKO — Bratislava MVMT
   Design system based on official brand manual
   ============================================ */

:root {
  /* Brand colors (manual + logo) */
  --neon-red: #F11D00;
  --shaded-yellow: #F2F200;
  --brand-yellow: #FFCC4B; /* presná žltá zo steiger.org */
  --electric-blue: #00F2F2;
  --deep-orange: #F26500;
  --indie-blue: #200040;
  --almost-black: #13131A;
  --black: #0a0a0d;
  --white: #ffffff;

  --text-muted: rgba(255,255,255,0.6);
  --text-muted-dark: rgba(19,19,26,0.65);

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY HELPERS ===== */
.h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.text-red { color: var(--neon-red); }
.text-white { color: var(--white); }
.text-dark { color: var(--almost-black); }

.graffiti {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--neon-red);
  letter-spacing: 1px;
  transform: rotate(-3deg);
  line-height: 1;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  margin-bottom: 18px;
  width: fit-content;
}
.tag--blue { background: var(--electric-blue); color: var(--almost-black); transform: rotate(-1deg); }
.tag--dark { background: var(--almost-black); color: var(--shaded-yellow); transform: rotate(-1deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 11px; }
.btn--red { background: var(--neon-red); color: var(--white); }
.btn--red:hover { background: #ff2200; }
.btn--yellow { background: var(--shaded-yellow); color: var(--almost-black); }
.btn--dark { background: var(--almost-black); color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn--ghost-dark { background: transparent; color: var(--almost-black); border-color: var(--almost-black); }
.btn--ghost-dark:hover { background: var(--almost-black); color: var(--white); }

/* ===== PHOTO PLACEHOLDER ===== */
.photo-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, #1a1a2e, #0a0a0d);
  color: rgba(255,255,255,0.25);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  text-align: center;
}
/* Real image fill */
.photo-ph--img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: transparent;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,13,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform .3s var(--ease);
}
.nav--hidden { transform: translateY(-100%); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 22px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.nav__logo-svg { height: 40px; width: auto; color: var(--neon-red); }
.nav__logo-tag {
  font-size: 9px; font-weight: 900; font-style: italic; text-transform: uppercase;
  letter-spacing: 1px; color: var(--neon-red);
  border-left: 1px solid rgba(255,255,255,0.2); padding-left: 10px;
}
.nav__links { display: flex; gap: 36px; margin-left: auto; }
.nav__links a {
  font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: rgba(255,255,255,0.8); transition: color .2s;
}
.nav__links a:hover,
.nav__links a:focus,
.nav__links a.is-active { color: var(--brand-yellow); }
.nav__cta { padding: 12px 26px; font-size: 13px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--white); transition: .3s; }

/* Dropdown menu */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item > a::after {
  content: "▾"; font-size: 10px; margin-left: 6px; opacity: 0.7;
  display: inline-block; transition: transform .2s;
}
.nav__item:hover > a::after { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: 100%; left: -16px; min-width: 230px;
  background: var(--black); border: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 200; box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  padding: 12px 22px; font-size: 14px; font-weight: 600; text-transform: none;
  letter-spacing: 0.3px; color: rgba(255,255,255,0.8); white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover { color: var(--brand-yellow); background: rgba(255,255,255,0.04); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  /* horný padding drží text pod pohyblivou páskou aj na širokých/nízkych obrazovkách */
  padding: 210px var(--pad) 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(120deg, #13131A 0%, #1a1a2e 50%, #0a0a0d 100%);
  will-change: transform;
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
}
.hero__wrap {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.04) 20%, transparent 35%, rgba(255,255,255,0.06) 55%, transparent 70%, rgba(0,242,242,0.03) 85%, transparent 100%);
}
.hero__tape {
  position: absolute; top: 90px; left: 50%; z-index: 2;
  width: 110vw; background: var(--neon-red);
  /* menší sklon = ľavý koniec neklesá tak hlboko do textu na širokých monitoroch */
  padding: 11px 0; transform: translateX(-50%) rotate(-2.2deg);
  overflow: hidden; white-space: nowrap;
}
.hero__tape span {
  font-size: 15px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
  color: var(--white); display: inline-block;
  animation: marquee 96s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hero__x {
  position: absolute; top: 22%; right: 8%; z-index: 2;
  font-size: clamp(50px, 9vw, 110px); font-weight: 900; color: var(--neon-red);
  transform: rotate(8deg); opacity: 0.9; line-height: 1;
}
.hero__content { position: relative; z-index: 5; max-width: 640px; }
.hero__eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px;
  color: var(--neon-red); margin-bottom: 18px;
}
.hero__title {
  font-weight: 900; font-size: clamp(38px, 7vw, 72px); line-height: 0.98;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero__sub { font-size: clamp(15px, 2vw, 18px); color: var(--text-muted); max-width: 420px; margin-bottom: 32px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 32px; left: var(--pad); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span { font-size: 9px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.3); writing-mode: vertical-rl; }
.hero__scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.1), var(--neon-red)); }

/* ===== STATS ===== */
.stats {
  background: var(--neon-red);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 32px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat:last-child { border-right: none; }
.stat__num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 68px); line-height: 1; color: var(--white);
}
.stat__label {
  font-size: clamp(9px, 1.2vw, 11px); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,0.85);
}

/* ===== ABOUT ===== */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--almost-black); min-height: 540px;
}
.about__photo { position: relative; min-height: 360px; }
.about__photo-tape {
  position: absolute; bottom: 28px; left: -8px;
  background: var(--black); color: var(--neon-red);
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px;
  padding: 5px 20px; transform: rotate(-2deg);
}
.about__content {
  padding: clamp(32px, 6vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.about__text { color: var(--text-muted); margin-bottom: 16px; }
.about__quote { color: var(--shaded-yellow); font-weight: 700; font-style: italic; font-size: 18px; margin-bottom: 28px; }

/* ===== ACTIVITIES ===== */
.activities { background: var(--black); padding: clamp(56px, 9vw, 110px) var(--pad); }
.activities__head { max-width: var(--maxw); margin: 0 auto 44px; }
.activities__head-row { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.activities__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1100px) { .activities__grid { grid-template-columns: repeat(2, 1fr); } }
.act-card {
  background: var(--almost-black); position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.act-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.act-card__img { height: 200px; position: relative; overflow: hidden; }
.act-card__img .photo-ph { transition: transform .4s var(--ease); }
.act-card:hover .act-card__img .photo-ph { transform: scale(1.05); }
.act-card__tape {
  position: absolute; top: 14px; left: -10px;
  background: var(--neon-red); color: var(--white);
  font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 18px; transform: rotate(-4deg);
}
.act-card__tape--blue { background: var(--electric-blue); color: var(--almost-black); }
.act-card__body { padding: 22px; }
.act-card__title { font-weight: 800; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
.act-card__desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.act-card__link { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--electric-blue); }
.act-card__link:hover { color: var(--white); }

/* ===== STORY ===== */
.story { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.story__photo { position: relative; min-height: 320px; }
.story__sticker {
  position: absolute; top: 24px; right: 24px;
  background: var(--shaded-yellow); color: var(--almost-black);
  font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 14px; transform: rotate(4deg);
}
.story__content {
  background: var(--indie-blue); padding: clamp(32px, 6vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.story__quote-mark { font-family: 'Bebas Neue', sans-serif; font-size: 80px; color: var(--neon-red); line-height: 0.6; }
.story__text { font-size: clamp(18px, 2.4vw, 24px); font-weight: 700; font-style: italic; line-height: 1.4; margin-bottom: 20px; }
.story__name { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--electric-blue); margin-bottom: 28px; }

/* ===== MISSION ===== */
.mission { background: var(--indie-blue); padding: clamp(56px, 9vw, 110px) var(--pad); }
.mission__head { max-width: var(--maxw); margin: 0 auto 48px; }
.mission__intro { color: var(--text-muted); max-width: 520px; margin-top: 12px; }
.mission__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pillar { padding: 40px 30px; background: rgba(255,255,255,0.04); border-top: 3px solid transparent; transition: background .25s, border-color .25s; }
.pillar:hover { background: rgba(255,255,255,0.08); border-top-color: var(--neon-red); }
.pillar__num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: rgba(241,29,0,0.4); line-height: 1; display: block; margin-bottom: 14px; }
.pillar__title { font-weight: 800; font-size: 20px; text-transform: uppercase; margin-bottom: 12px; }
.pillar__desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.pillar__list { list-style: none; }
.pillar__list li { font-size: 12px; color: rgba(255,255,255,0.5); padding: 6px 0 6px 16px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pillar__list li::before { content: '///'; position: absolute; left: 0; color: var(--neon-red); font-size: 9px; top: 8px; }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--indie-blue); padding: clamp(48px, 7vw, 90px) 0 0; overflow: hidden; }
/* Variant bez nadpisu — video sadne priamo medzi sekcie */
.video-section--bare { padding: 0; }
.video-section--bare .video-section__inner { padding: 0; }
.video-section__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; padding: 0 var(--pad); }
.video-section__sub { color: var(--text-muted); font-size: clamp(15px, 2vw, 18px); margin: 14px auto 36px; max-width: 520px; }
/* Full-bleed video — edge to edge */
.video-embed {
  position: relative; width: 100vw; margin-left: 50%; transform: translateX(-50%);
  aspect-ratio: 16 / 9; max-height: 100vh; overflow: hidden;
  border-top: 4px solid var(--neon-red); border-bottom: 4px solid var(--neon-red);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== INVOLVE ===== */
.involve { background: var(--shaded-yellow); padding: clamp(56px, 9vw, 110px) var(--pad); position: relative; }
.involve__tape {
  position: absolute; top: -2px; left: var(--pad);
  background: var(--almost-black); color: var(--shaded-yellow);
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 24px; transform: rotate(-1deg);
}
.involve__head { max-width: var(--maxw); margin: 24px auto 44px; }
.involve__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.inv-card {
  background: var(--almost-black); padding: 28px 22px; text-align: center;
  border-bottom: 4px solid transparent; transition: border-color .2s, transform .2s var(--ease);
}
.inv-card:hover { border-color: var(--neon-red); transform: translateY(-4px); }
.inv-card--accent { background: var(--black); border-bottom-color: var(--neon-red); }
.inv-card__icon { font-size: 34px; display: block; margin-bottom: 14px; }
.inv-card__title { font-weight: 800; font-size: 16px; text-transform: uppercase; margin-bottom: 10px; }
.inv-card__desc { font-size: 12px; color: var(--text-muted); margin-bottom: 18px; }

/* ===== CTA ===== */
.cta { background: var(--almost-black); padding: clamp(64px, 11vw, 140px) var(--pad); text-align: center; position: relative; overflow: hidden; }
.cta__wrap {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(0,242,242,0.04) 30%, transparent 50%, rgba(241,29,0,0.06) 70%, transparent 90%);
}
.cta__x { position: absolute; font-weight: 900; line-height: 1; pointer-events: none; }
.cta__x--1 { left: 6%; top: 18%; font-size: clamp(50px, 8vw, 90px); color: rgba(241,29,0,0.18); }
.cta__x--2 { right: 8%; bottom: 16%; font-size: clamp(36px, 6vw, 64px); color: rgba(0,242,242,0.14); transform: rotate(12deg); }
.cta__content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta__title { font-weight: 900; font-size: clamp(30px, 5vw, 56px); line-height: 1.02; text-transform: uppercase; margin-bottom: 16px; }
.cta__sub { color: var(--text-muted); font-size: clamp(15px, 2vw, 18px); margin-bottom: 32px; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta__iban { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }

/* ===== FOOTER ===== */
.footer { background: #050507; padding: clamp(40px, 7vw, 72px) var(--pad) 28px; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo { height: 28px; width: auto; margin-bottom: 16px; }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--neon-red); margin-bottom: 6px; }
.footer__col a, .footer__col span { font-size: 13px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer__col a:hover { color: var(--electric-blue); }
.footer__social { display: flex; gap: 10px; margin-top: 8px; }
.footer__social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6);
}
.footer__social a:hover { border-color: var(--neon-red); color: var(--neon-red); }
.footer__bottom {
  max-width: var(--maxw); margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 11px; color: rgba(255,255,255,0.25); flex-wrap: wrap;
}
.footer__made {
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.18); transition: color .3s var(--ease);
}
.footer__made:hover { color: var(--neon-red); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  /* Mobile dropdown panel */
  .nav__links {
    position: fixed; top: 84px; left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0;
    background: var(--black); border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a {
    padding: 16px var(--pad); font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  /* Dropdowns expand inline on mobile */
  .nav__item { flex-direction: column; align-items: stretch; }
  .nav__item > a::after { display: none; }
  .nav__dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: none; box-shadow: none; background: rgba(255,255,255,0.03);
    padding: 0; min-width: 0;
  }
  .nav__dropdown a { padding: 12px var(--pad) 12px calc(var(--pad) + 18px); font-size: 13px; }
  /* Burger -> X animation */
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .about, .story { grid-template-columns: 1fr; }
  .activities__grid { grid-template-columns: 1fr; }
  .mission__grid { grid-template-columns: 1fr; }
  .involve__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__tape { width: 160vw; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .involve__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .nav__inner { gap: 12px; }
  .nav__cta { padding: 8px 14px; font-size: 10px; }
  .nav__logo-tag { display: none; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: var(--black); border-top: 3px solid var(--neon-red);
  padding: 20px var(--pad); display: none;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.5);
}
.cookie-banner.is-open { display: block; animation: cookieUp .35s var(--ease); }
@keyframes cookieUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1 1 420px; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.cookie-banner__text strong { color: var(--white); display: block; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.cookie-banner__text a { color: var(--brand-yellow); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cookie-banner__actions .btn { white-space: nowrap; }

/* Consent-gated video placeholder */
.video-embed__ph {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; cursor: pointer;
  background: linear-gradient(135deg, #13131A, #0a0a0d);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--white); font-family: 'Rubik', sans-serif;
}
.video-embed__ph span { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.video-embed__ph span::before { content: "▶ "; color: var(--neon-red); }
.video-embed__ph small { font-size: 12px; color: rgba(255,255,255,0.55); max-width: 340px; text-align: center; line-height: 1.5; padding: 0 16px; }
.video-embed__ph:hover span { color: var(--brand-yellow); }

/* Footer cookies link */
.footer__cookies { background: none; border: none; color: rgba(255,255,255,0.35); font: inherit; font-size: 11px; cursor: pointer; text-decoration: underline; padding: 0; }
.footer__cookies:hover { color: var(--brand-yellow); }

/* ============================================================
   SVETLÁ TÉMA — zosúladené so steiger.org
   Paleta zo živého CSS steiger.org:
   #ECECE5 krémová · #FFF4E0 teplá krémová · #1A1313 ink · #919199 sivá
   Tmavé ostrovy (nav/hero/footer/video/CTA) ostávajú tmavé ako na global webe.
   ============================================================ */
:root {
  --cream: #ECECE5;
  --cream-warm: #FFF4E0;
  --ink: #1A1313;
  --gray: #919199;
  --surface: #FFFFFF;
  --text-muted: rgba(26,19,19,0.68);   /* default = tmavý text na svetlom */
}

body { background: var(--cream); color: var(--ink); }

/* Tmavé ostrovy: prepnú premennú späť na svetlý text */
.nav, .hero, .page-hero, .footer, .video-section, .cookie-banner, .cta, .cta-strip, .stats {
  --text-muted: rgba(255,255,255,0.65);
  color: #fff;
}
.nav .text-white, .hero .text-white, .page-hero .text-white,
.footer .text-white, .video-section .text-white, .cta .text-white, .cta-strip .text-white { color: #fff; }

/* Nadpisy na svetlom */
.h2, .text-white { color: var(--ink); }
.text-dark { color: var(--ink); }

/* ===== Sekcie ===== */
.section--black  { background: var(--cream); color: var(--ink); }
.section--almost { background: var(--cream-warm); color: var(--ink); }
.section--blue   { background: var(--cream); color: var(--ink); }
.activities      { background: var(--cream); }
.about           { background: var(--cream-warm); }
.lead            { color: var(--text-muted); }

/* Tmavé sekcie (ostávajú) */
.video-section { background: var(--ink); }
.cta           { background: var(--ink); }
.footer        { background: var(--ink); }

/* ===== Karty na bielom povrchu ===== */
.act-card, .value, .act-full, .inv-card, .inv-card--accent, .media-card, .event, .donate__box {
  background: var(--surface);
}
.act-card { box-shadow: 0 1px 3px rgba(26,19,19,0.08); }
.act-card:hover { box-shadow: 0 16px 40px rgba(26,19,19,0.15); }
.act-card__title, .value__title, .act-full__title, .inv-card__title,
.event__title, .member__name, .media-card__title { color: var(--ink); }
.act-card__desc, .value__desc, .act-full__desc, .inv-card__desc,
.event__meta, .member__role, .media-card__desc { color: var(--text-muted); }
.value__num { color: rgba(26,19,19,0.22); }
.act-card__link { color: var(--neon-red); }
.act-card__link:hover { color: var(--ink); }
.act-full__meta { color: var(--neon-red); }
.event__mon { color: var(--text-muted); }
.event { border-left-color: var(--neon-red); }
.event:hover { background: #fff; box-shadow: 0 6px 20px rgba(26,19,19,0.08); }
.pillar__list li { color: var(--text-muted); border-bottom-color: rgba(26,19,19,0.1); }

/* ===== About ===== */
.about__text { color: var(--text-muted); }
.about__quote { color: var(--neon-red); }

/* ===== Zapoj sa = brandová žltá ===== */
.involve { background: var(--brand-yellow); }
.involve__tape { background: var(--ink); color: var(--brand-yellow); }

/* ===== Tlačidlá na svetlom ===== */
.btn--outline { color: var(--ink); border-color: rgba(26,19,19,0.35); }
.btn--outline:hover { border-color: var(--ink); background: rgba(26,19,19,0.06); }
/* v tmavých ostrovoch ostáva biely outline */
.hero .btn--outline, .page-hero .btn--outline, .cta .btn--outline,
.cta-strip .btn--outline, .cookie-banner .btn--outline, .video-section .btn--outline {
  color: #fff; border-color: rgba(255,255,255,0.5);
}
.hero .btn--outline:hover, .cta .btn--outline:hover, .cta-strip .btn--outline:hover,
.cookie-banner .btn--outline:hover, .video-section .btn--outline:hover {
  border-color: #fff; background: rgba(255,255,255,0.08);
}

/* ===== Daruj ===== */
.donate__impact-item { border-bottom-color: rgba(26,19,19,0.1); }
.donate__impact-text { color: var(--text-muted); }
.amount { color: var(--ink); border-color: rgba(26,19,19,0.25); }
.amount:hover, .amount.is-active { color: #fff; }
.toggle button { color: var(--text-muted); border-color: rgba(26,19,19,0.25); }
.toggle button.is-active { color: #fff; }
.iban-box { background: rgba(26,19,19,0.04); border-color: rgba(26,19,19,0.12); }
.iban-box__num { color: var(--ink); }

/* ===== Kontakt formulár ===== */
.form input, .form textarea { background: #fff; border-color: rgba(26,19,19,0.2); color: var(--ink); }
.form label { color: var(--text-muted); }
.contact__info-item p, .contact__info-item a { color: var(--text-muted); }
.contact__info .footer__social a { border-color: rgba(26,19,19,0.2); color: var(--text-muted); }
.contact__info .footer__social a:hover { border-color: var(--neon-red); color: var(--neon-red); }

/* ===== Cookies / legal stránka ===== */
.legal p, .legal ul li, .legal__updated { color: var(--text-muted); }
.legal__h, .legal strong, .legal__card h3 { color: var(--ink); }
.legal__card { background: rgba(26,19,19,0.04); }
.legal ul li { border-bottom-color: rgba(26,19,19,0.08); }
.legal__updated { border-bottom-color: rgba(26,19,19,0.12); }
.legal a { color: var(--neon-red); }

/* ===== Materiály na stiahnutie (pätička) ===== */
.footer__material {
  display: inline-block; background: var(--neon-red); color: #fff !important;
  font-size: 12px; font-weight: 700; padding: 10px 16px; border-radius: 999px;
  margin-bottom: 8px; transition: background .2s, transform .2s var(--ease);
}
.footer__material:hover { background: #ff2200; transform: translateY(-2px); color: #fff !important; }

/* ===== SLOGANOVÁ PÁSKA (brandový predel) ===== */
.slogan-tape {
  position: relative;
  width: 112vw; margin-left: 50%; transform: translateX(-50%) rotate(-1.2deg);
  background: var(--neon-red);
  padding: 12px 0;
  overflow: hidden; white-space: nowrap;
  box-shadow: 0 8px 30px rgba(26,19,19,0.25);
  z-index: 3;
}
/* grunge — jemné narušenie plochy, aby páska nepôsobila digitálne čisto */
.slogan-tape::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply; opacity: 0.28;
}
.slogan-tape__track {
  display: inline-block;
  animation: marquee 70s linear infinite;
}
.slogan-tape__item {
  font-family: 'Big Shoulders Stencil Display', 'Bebas Neue', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 26px;
}
.slogan-tape__item.is-white { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .slogan-tape__track { animation: none; }
}
