/* =============================================================
   Magic Homer s.r.o. — style.css
   Bold & vibrant electric nightlife. Deep near-black base with
   vivid magenta / violet / cyan accents and spotlight glow.
   Foundation: tokens, reset, typography, utilities, buttons,
   nav, footer. Page sections are added in later tasks.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Base palette */
  --void: #0c0a14;
  --ink: #16131f;
  --paper: #ffffff;
  --bone: #f7f5fb;

  /* Accents */
  --magenta: #ff2d87;
  --violet: #7b2ff7;
  --cyan: #22d3ee;

  /* Neutrals / lines */
  --graphite: #5a5470;
  --mist: #9a93ad;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(12, 10, 20, 0.10);

  /* Type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout & motion */
  --container: 1240px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Signature gradient */
  --grad: linear-gradient(120deg, var(--magenta), var(--violet) 55%, var(--cyan));
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
svg { display: block; }

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

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { left: 8px; }

/* ---------- Layout ---------- */
.container {
  width: min(var(--container), 90vw);
  margin-inline: auto;
}
.container--narrow { width: min(800px, 90vw); margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.82em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--violet);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow--light { color: var(--cyan); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 128px) 0; }

.section__title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 20px;
}
.section__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__lead {
  font-size: 1.12rem;
  color: var(--graphite);
  max-width: 60ch;
}
.section__lead--light { color: var(--mist); }

/* ---------- Glow util (spotlight) ---------- */
.glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 45, 135, 0.5), transparent);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.glow--violet { background: radial-gradient(closest-side, rgba(123, 47, 247, 0.5), transparent); }
.glow--cyan { background: radial-gradient(closest-side, rgba(34, 211, 238, 0.45), transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn--primary {
  background: var(--grad);
  color: #fff;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(255, 45, 135, 0.55),
              0 4px 16px -6px rgba(123, 47, 247, 0.5);
}
.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.45);
}
.btn--ghost-light {
  border: 1.5px solid var(--line);
  color: #fff;
  background: transparent;
}
.btn--ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.btn--small { padding: 10px 18px; font-size: 0.85rem; }
.btn--wide { width: 100%; justify-content: center; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 10, 20, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.nav__logo-mark { display: inline-flex; }
.nav__menu { display: flex; gap: 22px; }
.nav__menu a {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--mist);
  transition: color 0.2s var(--ease);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__menu a:hover,
.nav__menu a.is-active { color: #fff; }
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--mist);
  white-space: nowrap;
}
.nav__status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Footer ---------- */
.footer {
  background: var(--void);
  color: var(--mist);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.nav__logo--footer { margin-bottom: 18px; }
.footer__about p { font-size: 0.95rem; max-width: 30ch; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 14px;
}
.footer__col a,
.footer__col span {
  display: block;
  padding: 5px 0;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--mist);
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 0.85rem;
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: var(--mist); text-decoration: none; transition: color 0.2s var(--ease); }
.footer__legal a:hover { color: #fff; }

/* NOTE: All responsive media queries are consolidated at the END of this
   file (see "Responsive — consolidated breakpoints"). Breakpoints: 980 / 880
   (mobile menu) / 620 / 420px. */

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ====================================================
   Hero
   ==================================================== */
.hero {
  position: relative;
  background: var(--void);
  color: #fff;
  padding: clamp(120px, 18vh, 200px) 0 0;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.glow--hero {
  width: 80vw;
  height: 80vw;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(123, 47, 247, 0.55), rgba(255, 45, 135, 0.25), transparent);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 20, 0.2), var(--void));
  z-index: 1;
}
.hero__inner,
.hero__stats,
.marquee {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
  font-size: 0.82rem;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  max-width: 16ch;
  margin: 18px 0;
}
.hero__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--mist);
  max-width: 54ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: clamp(56px, 8vw, 96px) auto 0;
  padding-bottom: 48px;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
}
.hero__stat > span {
  color: var(--mist);
  font-size: 0.9rem;
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: inline-flex;
  gap: 22px;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee span {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mist);
  font-size: 0.85rem;
}

/* ---------- Reveal-up ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-up.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* ---------- Služby (service cards) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service {
  background: var(--bone);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -28px rgba(123, 47, 247, .4);
}
.service__img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin-bottom: 16px;
}
.service__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .5s var(--ease);
}
.service:hover .service__img img { transform: scale(1.05); }
.service__tag {
  color: var(--violet);
  margin-bottom: 6px;
}
.service h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.service p {
  color: var(--graphite);
  font-size: 0.98rem;
}
.service ul {
  margin: 14px 0;
  display: grid;
  gap: 8px;
}
.service li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--graphite);
}
.service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
}
.service__link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
  font-weight: 600;
  color: var(--violet);
  text-decoration: none;
}
.service__link span { transition: transform .25s var(--ease); }
.service__link:hover span { transform: translateX(4px); }

/* ---------- Tmavá sekce (Produkce na klíč) ---------- */
.section--dark {
  position: relative;
  background: var(--void);
  color: #fff;
  overflow: hidden;
}
.section--dark .section__lead--light { color: var(--mist); }
.glow--section {
  position: absolute;
  width: 50vw;
  height: 50vw;
  right: -10%;
  top: 10%;
  background: radial-gradient(closest-side, rgba(34, 211, 238, .3), transparent);
  filter: blur(70px);
  z-index: 0;
}
.section--dark .container { position: relative; z-index: 1; }

.event-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.8fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}

/* tilted overlapping gallery */
.gallery {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.gallery figure {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6);
}
.gallery figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
}
.gallery__a {
  width: 72%;
  aspect-ratio: 4 / 5;
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 2;
}
.gallery__b {
  width: 62%;
  aspect-ratio: 4 / 5;
  right: 0;
  bottom: 0;
  transform: rotate(5deg);
  z-index: 1;
}

.event-info__title {
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.checklist {
  display: grid;
  gap: 14px;
}
.checklist li {
  padding-left: 30px;
  position: relative;
  color: var(--mist);
  line-height: 1.5;
}
.checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--magenta);
}
.checklist strong { color: #fff; }

/* ---------- Event-pass (signature ticket) ---------- */
.pass {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  font-family: var(--font-mono);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
}
.pass::before,
.pass::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--void);
  top: 50%;
  transform: translateY(-50%);
}
.pass::before { left: -9px; }
.pass::after { right: -9px; }
.pass__head {
  text-align: center;
  border-bottom: 1px dashed var(--line-dark);
  padding-bottom: 12px;
}
.pass__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.pass__sub {
  font-size: 0.8rem;
  color: var(--graphite);
}
.pass__rows {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  font-size: 0.85rem;
}
.pass__rows div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.pass__rows div span:last-child { color: var(--ink); font-weight: 500; }
.pass__total {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed var(--line-dark);
  padding-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
}
.pass__foot {
  text-align: center;
  margin-top: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--violet);
}

/* ---------- Čísla (numbers section) ---------- */
.section--numbers { background: var(--bone); }
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.number strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.number > span {
  color: var(--graphite);
  font-size: 0.9rem;
}

/* ---------- Balíčky (tabs section) ---------- */
.section--alt { background: var(--bone); }
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 26px;
}
.tab {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--graphite);
  background: #fff;
  transition: all .3s var(--ease);
}
.tab.is-active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}
.tab:hover:not(.is-active) {
  border-color: var(--violet);
  color: var(--violet);
}
.panel {
  display: none;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: start;
}
.panel.is-active { display: grid; }
.panel[hidden] { display: none; }
.panel__text h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.panel__text p {
  color: var(--graphite);
  max-width: 52ch;
}
/* On the light alt-section, checklist items should use dark ink (not mist) */
.section--alt .checklist li { color: var(--ink); }
/* Alt-section pass notch override: punch-through must match bone background */
.section--alt .pass::before,
.section--alt .pass::after { background: var(--bone); }

/* ====================================================
   Proces (4-step process)
   ==================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
  list-style: none;
}
.step {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(123, 47, 247, .3);
}
.step__num {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--magenta);
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--graphite);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ====================================================
   Reference (quote cards)
   ==================================================== */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(255, 45, 135, .2);
}
.quote__stars {
  color: var(--magenta);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.quote blockquote {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
}
.quote figcaption {
  margin-top: 16px;
  font-size: 0.85rem;
}
.quote figcaption strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}
.quote figcaption span {
  color: var(--graphite);
}
.quotes__note {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--graphite);
  text-align: center;
}

/* ====================================================
   FAQ (details/summary accordion)
   ==================================================== */
.faq {
  margin-top: 36px;
  display: grid;
  gap: 12px;
}
.faq__item {
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 4px 20px;
  background: var(--paper);
  transition: box-shadow .3s var(--ease);
}
.faq__item[open] {
  box-shadow: 0 8px 24px -12px rgba(123, 47, 247, .18);
}
.faq__item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary { list-style: none; }
.faq__item summary::after {
  content: "+";
  color: var(--magenta);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__item p {
  padding-bottom: 18px;
  color: var(--graphite);
  line-height: 1.65;
}

/* ====================================================
   CTA section
   ==================================================== */
.section--cta {
  position: relative;
  background: var(--void);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.glow--cta {
  position: absolute;
  width: 60vw;
  height: 60vw;
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255,45,135,.4), rgba(123,47,247,.2), transparent);
  filter: blur(80px);
}
.cta {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}
.cta h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}
.cta h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--magenta), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta p {
  color: var(--mist);
  margin: 16px 0 28px;
}
.cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================================
   Contact section
   ==================================================== */
.contact {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  margin-top: 44px;
  align-items: start;
}

/* Honeypot — hidden off-screen */
.form__hp {
  position: absolute;
  left: -9999px;
  top: 0;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form__group label {
  font-size: 0.85rem;
  font-weight: 600;
}
.form__group input,
.form__group select,
.form__group textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line-dark);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(123, 47, 247, 0.28);
}
.form__group textarea {
  resize: vertical;
}
.form__group--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.form__group--check input {
  width: auto;
  margin-top: 3px;
  padding: 0;
}
.form__group--check label {
  font-weight: 400;
  font-size: 0.9rem;
}
.form__status {
  margin-top: 12px;
  font-size: 0.9rem;
}
.form__status.is-ok  { color: var(--violet); }
.form__status.is-err { color: #d11f5b; }

/* Contact info aside */
.contact__info {
  background: var(--bone);
  border-radius: var(--radius);
  padding: 26px;
}
.contact__list {
  display: grid;
  gap: 16px;
  margin: 16px 0;
}
.contact__list li {
  display: grid;
  gap: 2px;
}
.contact__label {
  color: var(--violet);
  font-size: 0.72rem;
}
.contact__info a {
  color: var(--ink);
  font-weight: 600;
}
.arch--contact {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
}
.arch--contact img {
  width: 100%;
  height: auto;
  display: block;
}

/* ====================================================
   Responsive — consolidated breakpoints
   Desktop-down collapse. Section grids: 980 / 620 / 420px.
   Navigation collapses progressively (1280 / 1080 / 880px) because the
   full horizontal bar (logo + 7-link menu + status pill + CTA) only fits
   above ~1284px; this keeps the bar from overflowing on any laptop width.
   ==================================================== */

/* ---- Nav: drop the live-status pill once the bar gets tight ---- */
@media (max-width: 1280px) {
  .nav__status { display: none; }
}

/* ---- Nav: drop the inline CTA on tablet (menu still has "Kontakt") ---- */
@media (max-width: 1080px) {
  .nav__right .btn { display: none; }
}

/* ---- 980px: multi-col grids start collapsing ---- */
@media (max-width: 980px) {
  .services    { grid-template-columns: 1fr 1fr; }
  .numbers     { grid-template-columns: 1fr 1fr; }
  .steps       { grid-template-columns: 1fr 1fr; }
  .quotes      { grid-template-columns: 1fr; }
  .panel.is-active { grid-template-columns: 1fr; gap: 28px; }
  .contact     { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  /* Event grid → single column; gallery above checklist, pass below. */
  .event-grid  { grid-template-columns: 1fr; gap: 32px; }
  .event-grid .gallery   { order: 1; min-height: 340px; }
  .event-grid .event-info { order: 2; }
  .event-grid .pass      { order: 3; max-width: 420px; }
}

/* ---- 880px: mobile navigation (burger + slide-down menu) ---- */
@media (max-width: 880px) {
  /* Show the burger (status pill + CTA already hidden by the rules above). */
  .nav__burger { display: inline-flex; }

  /* Turn the menu into a fixed slide-down panel below the bar. */
  .nav__menu {
    position: fixed;
    inset: 61px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--void);
    border-bottom: 1px solid var(--line);
    padding: 14px 6vw 28px;
    box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.7);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.3s var(--ease),
                visibility 0.35s var(--ease);
  }
  .nav__menu.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav__menu a {
    padding: 15px 2px;
    font-size: 1.05rem;
    color: #fff;
    border-bottom: 1px solid var(--line);
  }
  .nav__menu a:last-child { border-bottom: none; }
  .nav__menu a::after { display: none; }
}

/* ---- 620px: single-column phone layout ---- */
@media (max-width: 620px) {
  body { font-size: 16px; }

  .services { grid-template-columns: 1fr; }
  .numbers  { grid-template-columns: 1fr 1fr; }
  .steps    { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
  .footer__legal { justify-content: center; flex-wrap: wrap; }
}

/* ---- 480px: keep hero stats in thirds but shrink so the widest
        ("50 tis.+") stays on one line on narrow phones ---- */
@media (max-width: 480px) {
  .hero__stats { gap: 14px; }
  .hero__stat strong { font-size: 1.45rem; }
  .hero__stat > span { font-size: 0.8rem; }
}

/* ---- 420px: avoid cramped number tiles on tiny screens ---- */
@media (max-width: 420px) {
  .numbers { grid-template-columns: 1fr; }
}

/* ====================================================
   Reduced motion — global safety net
   (Specific .reveal / .reveal-up / .marquee rules above remain.)
   ==================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
