/* ============================================
   BUU CHII — bold, loud, no compromise
   ============================================ */

:root {
  --bg: #000000;
  --bg-2: #0c0c0e;
  --bg-3: #15151a;
  --ink: #ffffff;
  --ink-2: #dcdce0;
  --ink-dim: #9d9da6;
  --ink-mute: #5a5a64;
  --line: #1f1f25;
  --line-2: #2e2e35;

  --pink: #dd1714;
  --pink-2: #ff3a36;
  --red: #ff2424;
  --blue: #2e3aff;
  --cream: #f4ede0;
  --yellow: #002fd2;
  --yellow-warm: #ffd83a;

  --maxw: 1480px;
  --pad: clamp(20px, 4vw, 80px);

  --f-display: "Anton", "Archivo Black", "Impact", sans-serif;
  --f-body: "Archivo", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
  --f-jp: "Noto Sans JP", "Archivo", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--pink); color: #000; }
.t-pink { color: var(--pink); }
.t-red { color: var(--red); }
.t-yellow { color: var(--yellow); }

/* ============================================
   GLOBAL SCANLINES + NOISE — splash aesthetic
   ============================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0, 47, 210, 0.035) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 99;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0, 47, 210, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 98;
  animation: pulseFade 6s ease-in-out infinite;
}
@keyframes pulseFade {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================
   TICKER — solid yellow + warning tape strip
   ============================================ */
.ticker {
  position: relative;
  background: var(--yellow);
  color: #000;
  padding: 0;
  overflow: hidden;
  border-bottom: 2px solid #000;
}
.ticker::before, .ticker::after {
  content: "";
  display: block;
  height: 6px;
  background: repeating-linear-gradient(-45deg, #000 0 10px, var(--yellow) 10px 20px);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: tickerLoop 60s linear infinite;
  padding: 9px 0 9px 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
}
.ticker .t-dot { opacity: 0.55; font-size: 10px; }
.ticker .ticker-track > span:nth-child(2n+1):not(.t-dot) { font-family: var(--f-jp); font-weight: 900; letter-spacing: 0.04em; }
@keyframes tickerLoop {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   NAV — chunky, solid, no blur
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 0;
  background: #000;
  border-bottom: 2px solid var(--yellow);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px var(--pad) 14px clamp(20px, 4vw, 80px);
  font-family: var(--f-display);
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  border-right: 2px solid var(--yellow);
}
.nav-star {
  width: clamp(28px, 2.8vw, 38px);
  height: clamp(28px, 2.8vw, 38px);
  object-fit: contain;
  transition: transform .4s;
}
.nav-brand:hover .nav-star { transform: rotate(180deg); }
.nav-word { color: var(--ink); white-space: nowrap; }
.nav-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--yellow);
  align-self: flex-end;
  padding-bottom: 4px;
}
.nav-links {
  display: flex;
  align-items: stretch;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 clamp(16px, 2.2vw, 28px);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-right: 1px solid var(--line-2);
  position: relative;
  transition: background .15s, color .15s;
}
.nav-links a:first-child { border-left: 1px solid var(--line-2); }
.nav-links a .nav-num {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0;
}
.nav-links a:hover {
  background: var(--pink);
  color: #fff;
}
.nav-links a:hover .nav-num { color: #fff; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(20px, 2.4vw, 32px);
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 2px solid var(--yellow);
  transition: background .15s, color .15s;
}
.nav-cta:hover {
  background: var(--pink);
  color: #fff;
  border-left-color: var(--pink);
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-tag { display: none; }
  .nav { grid-template-columns: 1fr auto; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform .15s, background .2s, color .2s, box-shadow .15s;
  white-space: nowrap;
  font-family: var(--f-body);
}
.btn-primary {
  background: var(--pink);
  color: #000;
  border-color: var(--pink);
}
.btn-primary:hover {
  transform: translate(-3px,-3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #000;
  transform: translate(-3px,-3px);
  box-shadow: 6px 6px 0 var(--pink);
}
.btn-block { width: 100%; justify-content: center; padding: 20px; font-size: 14px; }
.btn-small { padding: 11px 16px; font-size: 12px; }

/* ============================================
   HERO — splash-screen aesthetic, full viewport
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: clamp(40px, 6vw, 90px) var(--pad);
  background: #000;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: clamp(20px, 3vw, 40px);
}

/* dotted/grid background like the splash */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 47, 210, 0.10), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(221, 23, 20, 0.08), transparent 55%);
  z-index: 0;
}
.hero-spotlight {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  -webkit-mask: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  mask: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  z-index: 0;
}

/* huge spinning star behind everything */
.hero-star-orbit {
  position: absolute;
  z-index: 1;
  width: clamp(360px, 60vw, 880px);
  height: clamp(360px, 60vw, 880px);
  top: 50%; left: 50%;
  transform: translate(-50%, -42%);
  pointer-events: none;
}
.hero-star-mega {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.10;
  animation: madnessSpin 60s linear infinite;
  filter: drop-shadow(0 0 60px rgba(0, 47, 210,0.25));
}
.hero-rays-mega {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  animation: madnessSpin 120s linear infinite reverse;
}

/* vertical kana band left */
.hero-kana-band {
  position: absolute;
  left: clamp(12px, 2vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--f-jp);
  font-weight: 900;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(0, 47, 210,0.4);
  letter-spacing: 0;
  pointer-events: none;
}
.hero-kana-band span {
  display: block;
  line-height: 1;
}
@media (max-width: 720px) { .hero-kana-band { display: none; } }

/* top meta strip */
.hero-meta-strip {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line-2);
  background: rgba(0,0,0,0.6);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.m-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--ink-2);
  border-right: 1px solid var(--line-2);
}
.m-cell:last-child { border-right: none; }
.m-cell:first-child { color: var(--yellow); }
.m-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(0, 47, 210,0.7);
  animation: pulseYellow 1.6s ease-in-out infinite;
}
@keyframes pulseYellow {
  0%,100% { box-shadow: 0 0 0 0 rgba(0, 47, 210,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(0, 47, 210,0); }
}

/* angled stamps */
.stamp {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(96px, 11vw, 150px);
  height: clamp(96px, 11vw, 150px);
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(0,0,0,0.4);
}
.stamp-1 {
  top: clamp(110px, 16vh, 180px);
  right: clamp(28px, 6vw, 90px);
  background: var(--yellow);
  color: #000;
  border: 2px dashed #000;
  transform: rotate(-9deg);
  animation: stampWiggle 6s ease-in-out infinite;
}
.stamp-2 {
  bottom: clamp(160px, 22vh, 240px);
  left: clamp(70px, 8vw, 120px);
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  transform: rotate(8deg);
  animation: stampWiggle 7s ease-in-out infinite reverse;
}
@keyframes stampWiggle {
  0%,100% { transform: rotate(var(--r, -9deg)) translateY(0); }
  50% { transform: rotate(var(--r, -9deg)) translateY(-6px); }
}
.stamp-1 { --r: -9deg; }
.stamp-2 { --r: 8deg; }
@media (max-width: 720px) {
  .stamp-1 { right: 14px; top: 100px; }
  .stamp-2 { display: none; }
}

/* wordmark — splash-style chromatic glitch */
.hero-word {
  position: relative;
  z-index: 5;
  font-family: var(--f-display);
  font-size: clamp(110px, 24vw, 380px);
  line-height: 0.78;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hw-row {
  display: block;
  position: relative;
}
.hw-buu {
  color: var(--ink);
  animation: chromaBuu 4s steps(1) infinite;
}
.hw-chii {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  margin-top: -0.04em;
  animation: chromaChii 4s steps(1) infinite;
}
@keyframes chromaBuu {
  0%, 92%, 100% { text-shadow: none; transform: none; }
  93% { text-shadow: -4px 0 var(--red), 4px 0 var(--yellow); transform: translateX(-2px); }
  95% { text-shadow: 3px 0 var(--pink), -3px 0 var(--yellow); transform: translateX(2px); }
  97% { text-shadow: -2px 0 var(--red), 2px 0 var(--yellow); transform: translateX(-1px); }
}
@keyframes chromaChii {
  0%, 92%, 100% { text-shadow: none; transform: none; }
  93% { text-shadow: 4px 0 var(--pink), -4px 0 var(--yellow); transform: translateX(2px); }
  95% { text-shadow: -3px 0 var(--red), 3px 0 var(--yellow); transform: translateX(-2px); }
  97% { text-shadow: 2px 0 var(--pink), -2px 0 var(--yellow); transform: translateX(1px); }
}

/* bottom content row */
.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}
.hero-left { display: flex; flex-direction: column; gap: 8px; }
.hero-tagline {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* CTA — yellow chunky button */
.cta-mega {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--yellow);
  color: #000;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border: 2px solid var(--yellow);
  transition: background .15s, color .15s, transform .15s, box-shadow .15s;
  position: relative;
}
.cta-mega::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--ink);
  transform: translate(6px, 6px);
  z-index: -1;
  transition: transform .15s, border-color .15s;
}
.cta-mega:hover {
  transform: translate(-3px, -3px);
  background: var(--ink);
  color: #000;
  border-color: var(--ink);
}
.cta-mega:hover::before { transform: translate(8px, 8px); border-color: var(--yellow); }
.cta-num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  transition: color .15s, border-color .15s;
}
.cta-link:hover { color: var(--yellow); border-color: var(--yellow); }

@media (max-width: 720px) {
  .hero-content { grid-template-columns: 1fr; align-items: start; }
}

/* hero bottom tape — yellow marquee */
.hero-tape {
  position: relative;
  z-index: 3;
  background: var(--yellow);
  color: #000;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding: 10px 0;
  overflow: hidden;
  margin: 0 calc(-1 * var(--pad));
}
.hero-tape-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: tickerLoop 38s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding-left: 36px;
}
.hero-tape-track span:nth-child(4n+4) { font-family: var(--f-jp); font-weight: 900; }

/* ============================================
   MARQUEES
   ============================================ */
.marquee {
  background: var(--bg);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: clamp(14px, 1.8vw, 22px) 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  white-space: nowrap;
  animation: tickerLoop 32s linear infinite;
}
.marquee-track span {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.marquee-track img {
  width: clamp(36px, 5vw, 56px);
  height: clamp(36px, 5vw, 56px);
  object-fit: contain;
}
.marquee-big { background: #000; border-color: var(--ink); }
.marquee-red {
  background: var(--pink);
  border-color: #000;
}
.marquee-red .marquee-track span { color: #000; }
.marquee-red .marquee-track span:nth-child(8n+1),
.marquee-red .marquee-track span:nth-child(8n+9) { font-family: var(--f-jp); font-weight: 900; }
.marquee-red .m-sep { color: rgba(0,0,0,0.4); font-family: var(--f-display); font-size: clamp(28px, 5vw, 64px); }

/* ============================================
   PINK EXPANSION BANNER
   ============================================ */
.banner {
  position: relative;
  padding: clamp(80px, 12vw, 180px) var(--pad);
  overflow: hidden;
  color: #000;
}
.pink-banner {
  background: var(--pink);
}
.banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
}
.banner-eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 8px;
  border-bottom: 2px solid #000;
  margin-bottom: 32px;
}
.banner-title {
  font-family: var(--f-display);
  font-size: clamp(80px, 16vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #000;
  max-width: 12ch;
}
.banner-italic {
  font-style: italic;
  -webkit-text-stroke: 2px #000;
  color: transparent;
}
.banner-period { color: var(--ink); }
.banner-sub {
  max-width: 56ch;
  margin-top: 32px;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 500;
  color: #000;
  line-height: 1.45;
}
.banner-sub strong { background: #000; color: var(--pink); padding: 2px 8px; font-weight: 700; }
.banner-mega {
  position: absolute;
  bottom: -10%;
  right: -2%;
  z-index: 0;
  font-family: var(--f-display);
  font-size: clamp(280px, 50vw, 900px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(0,0,0,0.08);
  pointer-events: none;
  user-select: none;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  position: relative;
}
.section-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(48px, 7vw, 88px);
}
.section-head-center { text-align: center; }
.section-head-center .section-title { max-width: 100%; margin: 0 auto; }
.section-num {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pink);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(58px, 11vw, 180px);
  line-height: 0.84;
  letter-spacing: var(--display-letter, -0.018em);
  text-transform: uppercase;
  max-width: 16ch;
  text-wrap: balance;
  animation: chromaTitle 6s steps(1) infinite;
}
@keyframes chromaTitle {
  0%, 94%, 100% { text-shadow: none; transform: none; }
  95% { text-shadow: -3px 0 var(--red), 3px 0 var(--yellow); transform: translateX(-1.5px); }
  97% { text-shadow: 2px 0 var(--pink), -2px 0 var(--yellow); transform: translateX(1.5px); }
}

/* ============================================
   WERTE
   ============================================ */
.werte {
  background: var(--pink);
  padding-block: clamp(60px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}
.werte::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(0,0,0,0.04) 40px 41px);
  pointer-events: none;
}
.werte::after {
  content: "BUU CHII WORLD";
  position: absolute;
  bottom: -8%;
  right: -2%;
  font-family: var(--f-display);
  font-size: clamp(180px, 28vw, 420px);
  line-height: 0.8;
  letter-spacing: -0.03em;
  color: rgba(0,0,0,0.06);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.werte .section-head { margin-bottom: clamp(28px, 4vw, 48px); position: relative; z-index: 1; }
.werte .section-num { color: #000; border-bottom-color: #000; }
.werte .section-title { font-size: clamp(36px, 5.5vw, 80px); color: #000; }
.werte .section-title .t-pink { color: #000; }

.werte-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) { .werte-grid { grid-template-columns: 1fr; } }

.wert {
  border: 2px solid #000;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s;
  min-height: clamp(240px, 28vw, 300px);
  position: relative;
}
/* Three differently-colored cards for power */
.wert:nth-child(1) {
  background: #000;
  color: #fff;
}
.wert:nth-child(1) .wert-num { color: var(--yellow); }
.wert:nth-child(1) .wert-foot { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.wert:nth-child(1):hover { box-shadow: 10px 10px 0 var(--yellow); transform: translate(-4px,-4px); }

.wert:nth-child(2) {
  background: var(--yellow);
  color: #000;
}
.wert:nth-child(2) .wert-num { color: var(--pink); }
.wert:nth-child(2) .wert-foot { color: #000; border-color: rgba(0,0,0,0.3); }
.wert:nth-child(2):hover { box-shadow: 10px 10px 0 #000; transform: translate(-4px,-4px); }
.wert:nth-child(2) .t-pink { color: var(--pink); }

.wert:nth-child(3) {
  background: var(--ink);
  color: #000;
}
.wert:nth-child(3) .wert-num { color: var(--pink); }
.wert:nth-child(3) .wert-foot { color: #000; border-color: rgba(0,0,0,0.3); }
.wert:nth-child(3):hover { box-shadow: 10px 10px 0 var(--yellow); transform: translate(-4px,-4px); }

/* override base wert styles */
.wert-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.wert-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  flex: 0 0 auto;
}
.wert p {
  font-size: 13px;
  line-height: 1.55;
  flex: 1;
  opacity: 0.95;
}
.wert-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.wert-foot img { width: 20px; height: 20px; }
.wert:nth-child(1) .wert-foot img { filter: none; }
.wert:nth-child(2) .wert-foot img,
.wert:nth-child(3) .wert-foot img { filter: invert(1); }

/* ============================================
   MENU
   ============================================ */
.menu { background: var(--bg); }
.menu-hero {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
}
.menu-mega {
  font-family: var(--f-display);
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.78;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 12px;
}
.menu-lead {
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  font-weight: 500;
  max-width: 44ch;
  padding-bottom: 18px;
}
.menu-lead strong { color: var(--pink); font-weight: 700; }
@media (max-width: 880px) { .menu-hero { grid-template-columns: 1fr; align-items: start; } }

.menu-tabs {
  max-width: var(--maxw);
  margin: 0 auto 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0;
}
.menu-tab {
  padding: 14px 24px 12px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border-bottom: 4px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.is-active { color: var(--ink); border-bottom-color: var(--pink); }

.menu-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }

/* Tab panels: show only the active one */
.menu-panel { display: none; }
.menu-panel.is-active { display: grid; }

/* ----- WINGS panel ----- */
.menu-grid-wings { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
@media (max-width: 1100px) { .menu-grid-wings { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .menu-grid-wings { grid-template-columns: 1fr; } }
.wings-intro {
  background: var(--yellow);
  color: #000;
  border: 2px solid #000;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 380px;
}
.wings-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.wings-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 0.92;
  text-transform: uppercase;
}
.wings-title .t-yellow { color: var(--red); }
.wings-lead { font-size: 14px; line-height: 1.55; }
.wings-lead strong { background: #000; color: var(--yellow); padding: 1px 6px; font-weight: 700; }
.wing {
  background: var(--bg-2);
  border: 2px solid var(--ink);
  padding: 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .25s, box-shadow .25s, background .25s;
  min-height: 380px;
}
.wing:hover {
  transform: translate(-4px,-4px);
  box-shadow: 8px 8px 0 var(--yellow);
}
.wing-spicy {
  background: var(--red);
  color: #fff;
  border-color: #000;
}
.wing-spicy:hover { box-shadow: 8px 8px 0 var(--yellow); }
.wing-spicy .wing-tag { background: #000; color: var(--yellow); }
.wing-emoji {
  font-size: 36px;
  line-height: 1;
}
.wing-name {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.wing p {
  font-size: 13px;
  line-height: 1.55;
  flex: 1;
  opacity: 0.92;
}
.wing-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--yellow);
  color: #000;
  width: fit-content;
  margin-top: auto;
}

/* ----- SIDES panel ----- */
.menu-grid-sides { grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 980px) { .menu-grid-sides { grid-template-columns: 1fr; } }
.side {
  background: var(--bg-2);
  border: 2px solid var(--ink);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  transition: transform .25s, box-shadow .25s;
}
.side:hover { transform: translate(-4px,-4px); box-shadow: 8px 8px 0 var(--yellow); }
.side-feature { background: var(--red); color: #fff; border-color: #000; }
.side-feature .side-tag { background: #000; color: var(--yellow); border-color: #000; }
.side-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--yellow);
  color: #000;
  width: fit-content;
}
.side-name {
  font-family: var(--f-display);
  font-size: clamp(40px, 4vw, 60px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.side p { font-size: 14px; line-height: 1.55; flex: 1; }
.side-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}
.side-feature .side-meta { border-color: rgba(255,255,255,0.25); opacity: 0.9; }

/* ----- COMBO panel ----- */
.menu-grid-combo { grid-template-columns: 1fr; }
.combo {
  background: var(--yellow);
  color: #000;
  border: 2px solid #000;
  padding: clamp(28px, 3vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  position: relative;
}
.combo::before {
  content: "★";
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-display);
  font-size: 32px;
  color: #000;
  animation: madnessSpin 8s linear infinite;
}
@media (max-width: 880px) { .combo { grid-template-columns: 1fr; } }
.combo-left { display: flex; flex-direction: column; gap: 14px; }
.combo-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: #000;
  color: var(--yellow);
  width: fit-content;
}
.combo-name {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.combo-name .t-yellow { color: var(--red); }
.combo-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.45;
  font-weight: 500;
  max-width: 36ch;
}
.combo-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid #000;
}
.combo-list li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  align-items: baseline;
}
.combo-list li:last-child { border-bottom: none; }
.combo-num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #000;
  opacity: 0.6;
  flex-shrink: 0;
}
.combo-list strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.combo-list span { font-size: 14px; line-height: 1.5; }

.burger {
  background: var(--bg-2);
  border: 2px solid var(--ink);
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .25s, box-shadow .25s, background .25s;
  min-height: 480px;
}
.burger:hover {
  transform: translate(-4px,-4px);
  box-shadow: 8px 8px 0 var(--pink);
}
.burger-feature {
  background: var(--pink);
  color: #000;
  border-color: #000;
}
.burger-feature:hover { box-shadow: 8px 8px 0 var(--ink); }
.burger-feature .b-tag { color: #000; border-color: #000; }
.burger-feature .b-meta { color: #000; opacity: 0.7; }

.burger-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.b-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 4px 8px;
  border: 1px solid var(--pink);
}
.b-price {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1;
}
.b-name {
  font-family: var(--f-display);
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.b-desc {
  font-size: 13px;
  line-height: 1.55;
  flex: 1;
}
.b-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}

/* Burger CSS illustration */
.b-vis {
  position: relative;
  height: 100px;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.b-vis > span {
  display: block;
  border-radius: 999px;
}
.bun {
  width: 86%;
  height: 24px;
  background: #d4a463;
  background-image: radial-gradient(circle at 30% 35%, rgba(255,255,255,0.4), transparent 30%);
  border: 1px solid rgba(0,0,0,0.3);
}
.bun-top {
  height: 28px;
  border-radius: 999px 999px 8px 8px;
  background: #c98e4c;
  background-image: radial-gradient(circle at 50% 60%, rgba(0,0,0,0.18) 1px, transparent 2px), radial-gradient(circle at 60% 70%, rgba(0,0,0,0.18) 1px, transparent 2px), radial-gradient(circle at 35% 75%, rgba(0,0,0,0.18) 1px, transparent 2px);
}
.bun-bot { height: 18px; border-radius: 8px 8px 999px 999px; }
.patty {
  width: 92%;
  height: 12px;
  background: #4a2418;
  border-radius: 4px;
}
.patty-2 { background: #5c3022; }
.cheese {
  width: 96%;
  height: 7px;
  background: #ffd33a;
  border-radius: 2px;
  transform: rotate(-1.5deg);
}
.cheese-2 { background: #ffb02e; }
.lettuce {
  width: 100%;
  height: 7px;
  background: #6db94f;
  border-radius: 999px;
  position: relative;
}
.tomato {
  width: 70%;
  height: 6px;
  background: var(--red);
  border-radius: 2px;
}

.menu-cta {
  max-width: var(--maxw);
  margin: clamp(48px, 6vw, 80px) auto 0;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.menu-cta-note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============================================
   STORY
   ============================================ */
.story { background: var(--bg); }
.story-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 980px) { .story-grid { grid-template-columns: 1fr; } }
.story-text .section-title { margin-bottom: 36px; }
.story-body p { color: var(--ink-2); margin-bottom: 18px; font-size: 16px; line-height: 1.65; }
.story-body .lead { font-size: clamp(18px, 1.5vw, 22px); color: var(--ink); font-weight: 500; line-height: 1.5; }
.story-body strong { color: var(--pink); font-weight: 700; }
.story-signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.sig-cite { color: var(--ink); }

.story-aside { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 92px; }
.story-quote {
  background: var(--pink);
  color: #000;
  padding: 36px 32px 32px;
  border: 2px solid #000;
  position: relative;
}
.q-mark {
  font-family: var(--f-display);
  font-size: 90px;
  line-height: 0.5;
  color: #000;
}
.story-quote p {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin: 20px 0 24px;
  text-transform: uppercase;
}
.q-line2 { color: rgba(0,0,0,0.55); }
.q-cite {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.story-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
}
.fact {
  background: var(--bg-2);
  padding: 22px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.f-num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--pink);
  line-height: 0.9;
}
.f-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============================================
   SMASH explainer
   ============================================ */
.smash { background: var(--pink); color: #000; }
.smash .section-num { color: #000; border-bottom-color: #000; }
.smash .section-title { color: #000; }
.smash .t-pink { color: var(--ink); }

.smash-rows {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid #000;
}
.smash-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: baseline;
  padding: clamp(36px, 5vw, 64px) 0;
  border-bottom: 2px solid #000;
}
.sr-num {
  font-family: var(--f-display);
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: #000;
  text-transform: uppercase;
}
.sr-text h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.sr-text p {
  font-size: clamp(15px, 1.3vw, 17px);
  color: #000;
  line-height: 1.55;
  max-width: 60ch;
  font-weight: 500;
}
@media (max-width: 720px) {
  .smash-row { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================
   KARRIERE
   ============================================ */
.karriere { background: #000; }
.karriere-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}
.karriere-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-2);
  max-width: 50ch;
  line-height: 1.55;
}
.karriere-lead a { color: var(--pink); text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 880px) { .karriere-head { grid-template-columns: 1fr; } }

.jobs {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 2px solid var(--ink);
}
.job {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-2);
  transition: padding .25s;
}
.job:hover { padding-left: 14px; }
.job:hover .job-num { color: var(--pink); }
.job-main { display: flex; gap: 24px; align-items: flex-start; }
.job-num {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  padding-top: 8px;
  transition: color .2s;
}
.job-main h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.job-main p { color: var(--ink-dim); font-size: 14px; max-width: 60ch; line-height: 1.55; }

.job-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.j-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 10px;
  border: 1px solid var(--line-2);
}
.job-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #000;
  padding: 10px 14px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .15s, color .15s, transform .15s;
}
.job-link:hover { background: var(--pink); transform: translate(-2px,-2px); }
@media (max-width: 720px) {
  .job { grid-template-columns: 1fr; }
  .job-meta { justify-content: flex-start; }
}

/* ============================================
   FRANCHISE block
   ============================================ */
.franchise {
  background: var(--yellow); /* cobalt blue from tweaks */
  color: #fff;
  padding: clamp(80px, 12vw, 160px) var(--pad);
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.franchise::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 60px, rgba(255,255,255,0.04) 60px 61px),
    radial-gradient(circle at 90% 10%, rgba(221, 23, 20, 0.32), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(0,0,0,0.25), transparent 50%);
  pointer-events: none;
}
.franchise::after {
  content: "";
  position: absolute;
  top: 6%;
  right: -4%;
  width: clamp(300px, 36vw, 560px);
  height: clamp(300px, 36vw, 560px);
  background: url('assets/star-white.png') center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  animation: madnessSpin 60s linear infinite;
}
.franchise > * { position: relative; z-index: 1; }

.franchise-hero { max-width: var(--maxw); margin: 0 auto clamp(40px, 5vw, 64px); }
.f-eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--pink);
  padding: 6px 12px;
  margin-bottom: 32px;
  border: 2px solid #000;
}
.franchise-title {
  font-family: var(--f-display);
  font-size: clamp(72px, 14vw, 240px);
  line-height: 0.82;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  color: #fff;
}
.franchise-title .line { display: block; }
.franchise-title .line-outline {
  color: transparent;
  -webkit-text-stroke: 3px #fff;
  margin-left: clamp(20px, 4vw, 80px);
}
.franchise-title .t-pink { color: var(--pink); }
.franchise-lead {
  max-width: 64ch;
  font-size: clamp(16px, 1.4vw, 20px);
  color: #fff;
  line-height: 1.5;
  margin-top: 32px;
}

.franchise-stats {
  max-width: var(--maxw);
  margin: 0 auto clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: transparent;
  border: none;
}
@media (max-width: 720px) { .franchise-stats { grid-template-columns: 1fr; } }

.fstat-wide .fs-note {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 6px;
  max-width: 38ch;
  opacity: 0.85;
}

.fstat {
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid #000;
  transition: transform .25s, box-shadow .25s;
}
.fstat:nth-child(1) {
  background: #000;
  color: #fff;
}
.fstat:nth-child(1):hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 var(--pink); }
.fstat:nth-child(1) .fs-key { color: var(--pink); }
.fstat:nth-child(2) {
  background: var(--pink);
  color: #fff;
}
.fstat:nth-child(2):hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 #000; }
.fstat:nth-child(2) .fs-key { color: #000; background: #fff; padding: 3px 8px; align-self: flex-start; }
.fs-key {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.fs-val {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.fs-val small {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

.franchise-package {
  max-width: var(--maxw);
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.package-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
}
.package-title .t-pink { color: var(--pink); }
.package-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 3px solid #fff;
}
.package-list li {
  display: flex;
  gap: 18px;
  padding: 24px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  align-items: flex-start;
  transition: background .2s, padding .2s;
  color: #fff;
}
.package-list li:hover { background: rgba(0,0,0,0.25); padding-left: 30px; }
.package-list li:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.25); }
.check {
  font-family: var(--f-display);
  color: var(--pink);
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
  text-shadow: 2px 2px 0 #000;
}
.package-list strong {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #fff;
}
.package-list span { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.85); }
@media (max-width: 720px) {
  .package-list { grid-template-columns: 1fr; }
  .package-list li:nth-child(odd) { border-right: none; }
}

/* form wrap */
.franchise-form-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  background: var(--bg-2);
  border: 2px solid var(--ink);
  padding: clamp(32px, 4vw, 56px);
}
@media (max-width: 980px) { .franchise-form-wrap { grid-template-columns: 1fr; } }
.form-h {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.form-left > p { color: var(--ink-2); margin-bottom: 32px; max-width: 36ch; line-height: 1.55; }
.form-direct {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}
.form-direct > div { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.form-direct a { color: var(--ink); }
.form-direct a:hover { color: var(--pink); }
.fd-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 4px;
}

.kontakt-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.field input, .field select, .field textarea {
  background: #000;
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--bg-3);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23ff2e7e' stroke-width='1.5'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.radio { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; background: #000; border: 1px solid var(--line-2); cursor: pointer; font-size: 13px; transition: border-color .2s; }
.radio:hover { border-color: var(--pink); }
.radio input { accent-color: var(--pink); }
.check-field { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--ink-dim); line-height: 1.5; }
.check-field input { accent-color: var(--pink); margin-top: 2px; }
.check-field a { color: var(--pink); text-decoration: underline; }
.form-success {
  display: none;
  background: rgba(221, 23, 20,0.12);
  border: 1px solid var(--pink);
  padding: 14px 16px;
  color: var(--ink);
  font-size: 14px;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: rgba(255,36,36,0.12);
  border: 1px solid var(--red);
  padding: 14px 16px;
  color: var(--ink);
  font-size: 14px;
}
.form-error.show { display: block; }
.form-error a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================
   STANDORTE
   ============================================ */
.standorte { background: var(--bg); }
.stores {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .stores { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stores { grid-template-columns: 1fr; } }

.store {
  background: var(--bg-2);
  border: 2px solid var(--ink);
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s, box-shadow .25s, background .25s;
  min-height: 280px;
  position: relative;
}
.store:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--pink); }
.store-live {
  grid-column: span 2;
  background: var(--pink);
  color: #000;
  border-color: #000;
}
.store-live:hover { box-shadow: 6px 6px 0 var(--ink); }
@media (max-width: 980px) { .store-live { grid-column: span 2; } }
@media (max-width: 540px) { .store-live { grid-column: span 1; } }

.store-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  width: fit-content;
  background: #000;
  color: var(--pink);
  border: 1px solid var(--pink);
}
.store-live .store-tag { background: #000; color: var(--pink); border-color: #000; }
.dot-live {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(221, 23, 20,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(221, 23, 20,0); }
}
.tag-soon { background: transparent; color: var(--ink); border-color: var(--line-2); }
.tag-coming { background: var(--yellow); color: #000; border-color: #000; }
.tag-coming .dot-live { background: #000; animation: pulseDotDark 1.6s ease-in-out infinite; }
@keyframes pulseDotDark {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(0,0,0,0); }
}
.store-coming { border-color: var(--yellow); }
.store-coming:hover { box-shadow: 6px 6px 0 var(--yellow); }
.tag-empty { background: var(--ink); color: #000; border-color: var(--ink); }

.store-city {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.store-area {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
}
.store-live .store-area { color: rgba(0,0,0,0.6); border-color: rgba(0,0,0,0.2); }
.store-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 2px solid #000;
}
.store-info > div { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.si-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 4px;
}
.store-empty { background: transparent; border-style: dashed; border-color: var(--line-2); justify-content: space-between; align-items: flex-start; }
.store-empty:hover { box-shadow: 6px 6px 0 var(--ink); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #000;
  padding: clamp(64px, 8vw, 100px) var(--pad) 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--ink);
}
.foot-top {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-2);
}
@media (max-width: 880px) { .foot-top { grid-template-columns: 1fr; } }
.foot-tagline { position: relative; }
.foot-tagline .ft-quote {
  font-family: var(--f-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--pink);
}
.foot-tagline p {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-top: 18px;
}
.foot-cta { display: flex; justify-content: flex-end; }
@media (max-width: 880px) { .foot-cta { justify-content: flex-start; } }

.foot-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
.foot-grid ul { display: flex; flex-direction: column; gap: 8px; }
.foot-grid li, .foot-grid a { font-size: 14px; color: var(--ink-2); }
.foot-grid a:hover { color: var(--pink); }
.foot-lbl {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
}

.foot-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 0 24px;
  margin-top: 48px;
  border-top: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.foot-links { display: flex; gap: 20px; }
.foot-links a:hover { color: var(--pink); }

.foot-mega {
  font-family: var(--f-display);
  font-size: clamp(120px, 28vw, 460px);
  text-align: center;
  line-height: 0.84;
  letter-spacing: -0.025em;
  color: var(--ink);
  pointer-events: none;
  user-select: none;
  margin-top: 12px;
  margin-left: -6px;
  margin-right: -6px;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--ink);
  padding-top: 12px;
}

/* ============================================
   MOOD STATES — calm / poster (default) / wahn
   ============================================ */
/* ZEN: drop the noise, kill glitch, slow everything down */
html.mood-zen body::before { opacity: 0.3; }
html.mood-zen body::after { display: none; }
html.mood-zen *,
html.mood-zen *::before,
html.mood-zen *::after {
  animation-duration: 30s !important;
}
html.mood-zen .hw-buu,
html.mood-zen .hw-chii,
html.mood-zen .section-title {
  animation: none !important;
  text-shadow: none !important;
  transform: none !important;
}
html.mood-zen .hero-star-mega { animation-duration: 240s !important; opacity: 0.05 !important; }
html.mood-zen .stamp { animation: none !important; }
html.mood-zen .ticker-track,
html.mood-zen .marquee-track,
html.mood-zen .hero-tape-track {
  animation-duration: 180s !important;
}
html.mood-zen .splash-flash { display: none !important; }

/* WAHN: crank the chaos */
html.mood-wahn body::before { opacity: 1.6; }
html.mood-wahn body::after {
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(var(--accent-rgb, 0,47,210), 0.10), transparent 60%);
  animation-duration: 1.6s !important;
}
html.mood-wahn .hw-buu { animation: chromaBuu 1.6s steps(1) infinite !important; }
html.mood-wahn .hw-chii { animation: chromaChii 1.6s steps(1) infinite !important; }
html.mood-wahn .section-title { animation: chromaTitle 2.4s steps(1) infinite !important; }
html.mood-wahn .hero-star-mega {
  animation-duration: 22s !important;
  opacity: 0.18 !important;
}
html.mood-wahn .ticker-track,
html.mood-wahn .marquee-track,
html.mood-wahn .hero-tape-track {
  animation-duration: 18s !important;
}
html.mood-wahn .hero {
  animation: wahnVibrate 0.12s steps(2) infinite;
}
@keyframes wahnVibrate {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(0.5px, -0.3px); }
}
html.mood-wahn .wert:hover,
html.mood-wahn .burger:hover,
html.mood-wahn .store:hover {
  animation: madnessShake 0.18s ease-in-out infinite;
}


[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ============================================
   SPLASH SCREEN
   ============================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  animation: splashOut 0.8s cubic-bezier(.7,0,.3,1) 3.2s forwards;
}
.splash.gone { display: none; }
@keyframes splashOut {
  to { opacity: 0; transform: scale(1.05); visibility: hidden; }
}
.splash-scanlines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0, 47, 210,0.05) 0 1px, transparent 1px 4px);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}
.splash-noise {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 47, 210,0.06), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255,36,36,0.07), transparent 50%);
  filter: contrast(1.2);
  z-index: 0;
  animation: splashNoise 2s steps(8) infinite;
}
@keyframes splashNoise {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -1%); }
}
.splash-moon {
  position: absolute;
  top: 7%;
  right: 9%;
  width: clamp(80px, 12vw, 160px);
  height: auto;
  z-index: 2;
  animation: splashMoonIn 1.2s cubic-bezier(.2,.9,.2,1) 0.4s both, madnessFloat 5s ease-in-out infinite 1.6s;
}
@keyframes splashMoonIn {
  from { opacity: 0; transform: scale(0.3) rotate(-90deg); }
  to   { opacity: 1; transform: none; }
}

.splash-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  padding: 32px;
  text-align: center;
}
.splash-kana {
  font-family: var(--f-jp);
  font-weight: 900;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.4em;
  color: var(--yellow);
  text-transform: uppercase;
  opacity: 0;
  animation: splashFade 0.6s ease-out 0.15s forwards;
}
@keyframes splashFade { to { opacity: 1; } }

.splash-star {
  width: clamp(80px, 10vw, 130px);
  height: clamp(80px, 10vw, 130px);
  display: grid;
  place-items: center;
  opacity: 0;
  animation: splashStarIn 0.7s cubic-bezier(.2,.9,.2,1) 0.35s forwards, madnessSpin 14s linear 1.5s infinite;
  filter: drop-shadow(0 0 24px rgba(0, 47, 210,0.5));
}
@keyframes splashStarIn {
  from { opacity: 0; transform: scale(0.2) rotate(-180deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}
.splash-star img { width: 100%; height: 100%; object-fit: contain; }

.splash-mega {
  font-family: var(--f-display);
  font-size: clamp(64px, 14vw, 240px);
  line-height: 0.78;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.splash-mega span {
  display: block;
  position: relative;
  opacity: 0;
}
.s-buu {
  color: var(--ink);
  animation: splashSlamL 0.55s cubic-bezier(.2,.9,.2,1) 0.85s forwards, glitchBuu 0.35s steps(2) 1.6s 2;
}
.s-chii {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  margin-top: -0.04em;
  animation: splashSlamR 0.55s cubic-bezier(.2,.9,.2,1) 1.15s forwards, glitchChii 0.35s steps(2) 1.85s 2;
}
@keyframes splashSlamL {
  from { opacity: 0; transform: translateX(-40px) skewX(-12deg); }
  to   { opacity: 1; transform: none; }
}
@keyframes splashSlamR {
  from { opacity: 0; transform: translateX(40px) skewX(12deg); }
  to   { opacity: 1; transform: none; }
}
@keyframes glitchBuu {
  0%,100% { text-shadow: none; transform: translateX(0); }
  50% { text-shadow: -3px 0 var(--red), 3px 0 var(--yellow); transform: translateX(-2px); }
}
@keyframes glitchChii {
  0%,100% { text-shadow: none; transform: translateX(0); }
  50% { text-shadow: 3px 0 var(--pink), -3px 0 var(--yellow); transform: translateX(2px); }
}

.splash-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  opacity: 0;
  animation: splashFade 0.5s ease-out 1.8s forwards;
}
.s-line {
  width: clamp(20px, 4vw, 50px);
  height: 1px;
  background: var(--yellow);
}
.s-text {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
  white-space: nowrap;
}

.splash-skip {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s, color .15s;
  opacity: 0;
  animation: splashFade 0.4s ease-out 0.6s forwards;
}
.splash-skip:hover { background: var(--yellow); color: #000; }

.splash-flash {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: var(--yellow);
  opacity: 0;
  pointer-events: none;
  animation: splashFlash 0.5s steps(1) 2.6s;
}
@keyframes splashFlash {
  0%, 100% { opacity: 0; }
  20% { opacity: 0.85; }
  40% { opacity: 0; }
  60% { opacity: 0.5; }
  80% { opacity: 0; }
}

/* ============================================
   MADNESS ANIMATIONS (re-usable)
   ============================================ */
@keyframes madnessFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}
@keyframes madnessSpin {
  to { transform: rotate(360deg); }
}
@keyframes madnessShake {
  0%,100% { transform: translate(0,0) rotate(0); }
  20% { transform: translate(-2px, 1px) rotate(-1deg); }
  40% { transform: translate(2px, -1px) rotate(1deg); }
  60% { transform: translate(-1px, -1px) rotate(-0.5deg); }
  80% { transform: translate(1px, 1px) rotate(0.5deg); }
}
.madness-spin { animation: madnessSpin 26s linear infinite; }
.madness-float { animation: madnessFloat 6s ease-in-out infinite; }

/* madness shake on hover for headers + interactive cards */
.wert:hover .wert-title,
.burger:hover .b-name,
.store:hover .store-city {
  animation: madnessShake 0.35s ease-in-out 1;
}

/* ============================================
   HERO MOON + SUN decorations
   ============================================ */
.hero-moon {
  position: absolute;
  top: clamp(80px, 12vh, 120px);
  right: clamp(20px, 6vw, 80px);
  width: clamp(80px, 9vw, 140px);
  z-index: 3;
  filter: drop-shadow(0 0 18px rgba(0, 47, 210,0.4));
}
.hero-rays {
  position: absolute;
  bottom: clamp(60px, 10vh, 120px);
  left: clamp(20px, 5vw, 60px);
  width: clamp(60px, 7vw, 110px);
  z-index: 3;
  filter: drop-shadow(0 0 18px rgba(255,36,36,0.5));
}
@media (max-width: 720px) {
  .hero-moon { width: 70px; top: 80px; right: 16px; }
  .hero-rays { width: 56px; bottom: 130px; left: 16px; }
}

/* ============================================
   JAGGED DIVIDERS (sawtooth / teeth)
   ============================================ */
.jag {
  display: block;
  width: 100%;
  height: 22px;
  background: var(--pink);
  --tooth: 16px;
  -webkit-mask: linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0);
  position: relative;
}
.jag::before, .jag::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background:
    linear-gradient(135deg, var(--pink) 25%, transparent 25.5%) 0 0/var(--tooth) 100%,
    linear-gradient(45deg, var(--pink) 25%, transparent 25.5%) 0 0/var(--tooth) 100%;
}
.jag::before { top: -11px; }
.jag::after  { bottom: -11px; transform: scaleY(-1); }

/* simplified teeth bar — clip-path version */
.teeth {
  display: block;
  width: 100%;
  height: 28px;
  background: var(--pink);
  --t: 22px;
  -webkit-mask: conic-gradient(from -45deg at 50% 100%, #0000, #000 1deg 89deg, #0000 90deg) 50% 100%/var(--t) 100% repeat-x;
  mask: conic-gradient(from -45deg at 50% 100%, #0000, #000 1deg 89deg, #0000 90deg) 50% 100%/var(--t) 100% repeat-x;
}
.teeth-yellow { background: var(--yellow); }
.teeth-red { background: var(--red); }
.teeth-down {
  -webkit-mask: conic-gradient(from 135deg at 50% 0%, #0000, #000 1deg 89deg, #0000 90deg) 50% 0%/var(--t) 100% repeat-x;
  mask: conic-gradient(from 135deg at 50% 0%, #0000, #000 1deg 89deg, #0000 90deg) 50% 0%/var(--t) 100% repeat-x;
}

/* ============================================
   YELLOW ACCENT TOUCHES
   ============================================ */
.banner-italic { -webkit-text-stroke-color: var(--yellow); }
.banner-eyebrow { color: var(--yellow); border-bottom-color: var(--yellow); }
.banner-sub strong { background: var(--yellow); color: #000; }
.burger-feature .b-tag { background: var(--yellow); border-color: #000; color: #000; }

/* ============================================
   reduced motion fallback
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .splash { animation: splashOut 0.3s linear 0.5s forwards; }
}


/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  left: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 200;
  background: #000;
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--pink);
  padding: clamp(18px, 2vw, 28px) clamp(20px, 2.4vw, 32px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .4s cubic-bezier(.2,.7,.2,1), transform .4s cubic-bezier(.2,.7,.2,1);
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner.in { opacity: 1; transform: none; }
.cookie-banner.out { opacity: 0; transform: translateY(24px); }

.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}
@media (max-width: 720px) {
  .cookie-inner { grid-template-columns: 1fr; }
}

.cookie-text { display: flex; flex-direction: column; gap: 8px; }
.cookie-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.cookie-h {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.cookie-text p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}
.cookie-text a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-text a:hover { color: var(--ink); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner .btn { padding: 12px 18px; font-size: 12px; }
.cookie-banner .cookie-decline:hover {
  background: var(--ink);
  color: #000;
  transform: translate(-3px,-3px);
  box-shadow: 5px 5px 0 var(--pink);
}
@media (max-width: 540px) {
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-banner .btn { width: 100%; justify-content: center; }
}


/* ============================================
   MOBILE NAV — burger + overlay menu
   ============================================ */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-self: center;
  margin-right: clamp(12px, 2vw, 24px);
  background: transparent;
  border: 2px solid var(--ink);
  position: relative;
  cursor: pointer;
}
.nav-burger span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .15s, top .25s;
}
.nav-burger span:nth-child(1) { top: 12px; }
.nav-burger span:nth-child(2) { top: 20px; }
.nav-burger span:nth-child(3) { top: 28px; }
.nav-burger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 64px clamp(20px, 5vw, 40px) 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s, transform .25s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--f-display);
  font-size: clamp(36px, 9vw, 64px);
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
  letter-spacing: -0.005em;
}
.mobile-menu a:active { color: var(--pink); }
.mm-num {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--pink);
  letter-spacing: 0.1em;
  font-weight: 700;
}
.mobile-menu .mm-cta {
  margin-top: 24px;
  background: var(--pink);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 22px;
  border: 2px solid var(--pink);
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .mm-cta:active { background: #000; color: var(--pink); }

@media (max-width: 980px) {
  .nav-burger { display: block; }
  .nav { grid-template-columns: 1fr auto auto; }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* ============================================
   PHONE (≤ 720px) — global tighter spacing
   ============================================ */
@media (max-width: 720px) {
  :root { --pad: 16px; }

  /* HERO */
  .hero { min-height: auto; padding-top: 40px; padding-bottom: 56px; gap: 20px; }
  .hero-meta-strip { flex-direction: column; align-items: flex-start; }
  .hero-meta-strip .m-cell {
    border-right: none;
    border-bottom: 1px solid var(--line-2);
    width: 100%;
    font-size: 10px;
    padding: 7px 12px;
  }
  .hero-meta-strip .m-cell:last-child { border-bottom: none; }
  .mega-row, .hero-word { font-size: clamp(96px, 32vw, 200px); }
  .hero-word { line-height: 0.82; }
  .hero-content { padding-top: 16px; }
  .hero-tagline { font-size: clamp(20px, 5.5vw, 28px); }
  .hero-star-orbit { width: 96vw; height: 96vw; }
  .hero-tape-track { font-size: clamp(20px, 5.5vw, 28px); gap: 24px; padding-left: 24px; }
  .hero-tape-track span { padding-right: 0; }

  /* Hide vertical kana band on phone */
  .hero-kana-band { display: none; }

  /* Splash */
  .splash-mega { font-size: clamp(72px, 22vw, 140px); }
  .splash-moon { width: 70px; top: 5%; right: 5%; }

  /* Stamps shrink and reposition */
  .stamp-1 {
    width: 88px;
    height: 88px;
    font-size: 9px;
    top: 90px;
    right: 12px;
  }
  .stamp-2 {
    display: grid;
    width: 78px;
    height: 78px;
    font-size: 9px;
    bottom: 90px;
    left: 12px;
  }

  /* Sections — tighter padding */
  .section { padding: 56px var(--pad); }
  .section-head { margin-bottom: 28px; }
  .section-title { font-size: clamp(36px, 11vw, 64px); }
  .section-num { font-size: 10px; }

  /* WERTE */
  .werte { padding-block: 48px; }
  .werte::after { font-size: 30vw; bottom: -4%; right: -8%; }
  .werte-grid { gap: 10px; }
  .wert { padding: 18px; min-height: auto; }
  .wert-title { font-size: clamp(24px, 7vw, 32px); }
  .wert p { font-size: 13px; }

  /* MENU */
  .menu-hero { display: block; }
  .menu-mega { font-size: clamp(72px, 22vw, 140px); margin-top: 4px; }
  .menu-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab {
    padding: 12px 16px 10px;
    font-size: 16px;
    flex-shrink: 0;
  }
  .burger {
    min-height: auto;
    padding: 16px 18px 20px;
  }
  .b-name { font-size: clamp(34px, 11vw, 44px); }
  .b-vis { height: 84px; }
  .menu-grid-wings, .menu-grid-sides { gap: 10px; }
  .wing, .side { min-height: auto; padding: 18px; }
  .wing-name, .side-name { font-size: clamp(28px, 9vw, 36px); }
  .combo { padding: 22px; gap: 22px; }
  .combo-name { font-size: clamp(36px, 11vw, 52px); }
  .combo-list li { gap: 12px; padding: 12px 0; }

  /* STORY */
  .story-grid { gap: 28px; }
  .story-aside { position: static; }
  .story-quote { padding: 24px 22px 22px; }
  .story-quote p { font-size: clamp(26px, 8vw, 36px); }
  .q-mark { font-size: 70px; }
  .story-facts { grid-template-columns: 1fr 1fr; }
  .fact { padding: 16px 14px; }
  .f-num { font-size: 22px; }
  .story-body .lead { font-size: 16px; }
  .story-body p { font-size: 15px; }

  /* FRANCHISE */
  .franchise { padding: 56px var(--pad); }
  .franchise-title { font-size: clamp(48px, 14vw, 80px); }
  .franchise-title .line-outline { margin-left: 0; }
  .f-eyebrow { font-size: 10px; padding: 4px 10px; margin-bottom: 22px; }
  .franchise::after { width: 80vw; height: 80vw; right: -20%; }
  .franchise-lead { font-size: 15px; }
  .fstat { padding: 22px 20px 24px; }
  .fs-val { font-size: clamp(42px, 14vw, 64px); }
  .fstat-wide .fs-note { font-size: 12px; }
  .package-title { font-size: clamp(28px, 9vw, 40px); }
  .package-list li { padding: 18px 16px; gap: 14px; }
  .package-list strong { font-size: 18px; }
  .package-list span { font-size: 13px; }

  /* FORM */
  .franchise-form-wrap { padding: 22px; gap: 28px; }
  .form-h { font-size: clamp(32px, 10vw, 48px); }
  .form-left > p { font-size: 14px; }
  .form-direct { padding-top: 20px; }
  .form-direct > div { font-size: 13px; }
  .kontakt-form { gap: 14px; }
  .field input, .field select, .field textarea { font-size: 16px; padding: 12px 14px; } /* 16px prevents iOS zoom */
  .radio { padding: 10px 12px; font-size: 12px; }
  .radio-row { gap: 6px; }
  .check-field { font-size: 11px; }

  /* STANDORTE */
  .stores { grid-template-columns: 1fr; gap: 10px; }
  .store, .store-live, .store-empty { grid-column: span 1 !important; padding: 20px; min-height: auto; }
  .store-city { font-size: clamp(32px, 10vw, 44px); }
  .store-info { grid-template-columns: 1fr; gap: 16px; padding-top: 14px; }
  .store-info > div { font-size: 13px; }
  .store-tag { font-size: 9px; padding: 4px 8px; }
  .store-area { font-size: 10px; }

  /* MARQUEES */
  .marquee, .ticker { padding: 6px 0; }
  .ticker-track { font-size: 10px; letter-spacing: 0.1em; padding: 7px 0 7px 16px; gap: 16px; }
  .marquee-track { gap: 20px; }
  .marquee-track span { font-size: clamp(28px, 9vw, 44px); }
  .marquee-track img { width: 28px; height: 28px; }

  /* FOOTER */
  .footer { padding: 48px var(--pad) 0; }
  .foot-top { grid-template-columns: 1fr; gap: 22px; padding-bottom: 32px; margin-bottom: 32px; }
  .foot-tagline p { font-size: clamp(24px, 8vw, 32px); }
  .foot-grid { gap: 22px; }
  .foot-bottom { font-size: 10px; padding: 18px 0; margin-top: 24px; }
  .foot-bottom > span { width: 100%; }
  .foot-links { gap: 16px; flex-wrap: wrap; }
  .foot-mega { font-size: 26vw; }

  /* Legal */
  .legal { padding: 56px var(--pad) 48px; }
  .legal-title { font-size: clamp(48px, 14vw, 80px); }
  .legal-block { padding: 22px 0; }
  .legal-block h2 { font-size: clamp(18px, 5.5vw, 24px); }
  .legal-block p, .legal-block li { font-size: 14px; line-height: 1.6; }

  /* Cookie banner */
  .cookie-banner {
    padding: 18px 18px 18px;
    box-shadow: 4px 4px 0 var(--pink);
    bottom: 12px;
  }
  .cookie-h { font-size: 18px; }
  .cookie-text p { font-size: 12px; }
}

/* ============================================
   SMALL PHONE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  :root { --pad: 14px; }
  .nav { padding: 0; }
  .nav-brand { padding: 12px 14px; font-size: 22px; gap: 8px; border-right: 1px solid var(--line-2); }
  .nav-star { width: 24px; height: 24px; }
  .nav-cta { padding: 0 14px; font-size: 11px; gap: 6px; }
  .nav-burger { width: 40px; height: 40px; margin-right: 8px; }

  .hero { padding-top: 28px; }
  .splash-mega { font-size: 22vw; }
  .splash-tag { gap: 8px; }
  .s-text { font-size: 9px; letter-spacing: 0.18em; }

  .stamp-1, .stamp-2 { width: 72px; height: 72px; font-size: 8px; }

  .b-price { font-size: 22px; }
  .menu-tab { font-size: 14px; padding: 10px 12px 8px; }

  .form-row { grid-template-columns: 1fr; }
  .form-row { gap: 10px; }
}

/* ============================================
   TABLET (721px – 1100px) — keep two-up layouts
   ============================================ */
@media (min-width: 721px) and (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .stores { grid-template-columns: repeat(2, 1fr); }
  .package-list { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
