/* =========================================================================
   PLATTENHALLE GÜTERSLOH — Hippie / Lava-Lamp design language.
   Bowlby One (display, chunky round) + Caveat (script/hand) + Manrope (body).
   Palette ripped from the Plattenhalle logo: cream paper, deep purple,
   orange-record, lime-green, hot-pink accents. Animated lava blobs in BG.
   ========================================================================= */

:root {
  /* Logo-extracted palette */
  --cream:     #ECDFA8;
  --cream-2:   #F4E9C0;
  --cream-3:   #DBC987;
  --paper:     #FCF5DC;
  --ink:       #2A1450;
  --purple:    #5C2B7A;
  --purple-2:  #7C4AA0;
  --purple-3:  #B98CD6;
  --orange:    #E88B43;
  --orange-2:  #F2A86C;
  --orange-3:  #FFC79A;
  --lime:      #9FC647;
  --lime-2:    #BFD66E;
  --pink:      #E63A8C;
  --pink-2:    #F576AE;
  --teal:      #2EA987;
  --mute:      #6E5A3B;

  --max:       1280px;
  --max-narrow:880px;
  --gutter:    clamp(20px, 4vw, 56px);

  --display: "Bowlby One", "Lilita One", system-ui, sans-serif;
  --hand:    "Caveat", "Marker Felt", cursive;
  --body:    "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:    "Space Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --shadow-soft: 0 6px 0 var(--purple), 0 24px 50px -22px rgba(92,43,122,.45);
  --shadow-pop:  6px 6px 0 var(--purple);
  --shadow-pink: 6px 6px 0 var(--pink);
  --shadow-lime: 6px 6px 0 var(--lime);
}

/* -- reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--pink); color: var(--paper); }

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

.skip-link {
  position: absolute; left: -9999px; top: -9999px;
  background: var(--purple); color: var(--cream);
  padding: 12px 18px; font-family: var(--mono); font-size: 12px;
  border-radius: 999px;
}
.skip-link:focus-visible { left: 12px; top: 12px; z-index: 1000; }

/* ─────────── LAVA LAMP BACKGROUND ─────────── */
.lava {
  position: fixed; inset: -10%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.lava__blob {
  position: absolute;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  mix-blend-mode: multiply;
  will-change: transform;
}
.lava__blob--1 { background: var(--orange); top: -25%; left: -15%; animation: lava1 24s ease-in-out infinite; }
.lava__blob--2 { background: var(--pink);   top: 30%;  right: -30%; opacity: .45; animation: lava2 28s ease-in-out infinite; }
.lava__blob--3 { background: var(--lime);   bottom: -30%; left: 30%; opacity: .42; animation: lava3 32s ease-in-out infinite; }
.lava__blob--4 { background: var(--purple); top: 60%;  left: -15%;  opacity: .25; animation: lava4 36s ease-in-out infinite; }

@keyframes lava1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(15vw, 25vh) scale(1.15); }
  66% { transform: translate(-10vw, 15vh) scale(.9); }
}
@keyframes lava2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(-20vw, 15vh) scale(1.2); }
  75% { transform: translate(-12vw, -10vh) scale(.95); }
}
@keyframes lava3 {
  0%,100% { transform: translate(0,0) scale(1); }
  30% { transform: translate(15vw, -20vh) scale(.85); }
  65% { transform: translate(-15vw, -10vh) scale(1.15); }
}
@keyframes lava4 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(25vw, -10vh) scale(1.25); }
}
@media (prefers-reduced-motion: reduce) {
  .lava__blob { animation: none !important; }
}

/* -- layout helpers ----------------------------------------------------- */
.page { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.page--narrow { max-width: var(--max-narrow); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* -- typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.0;
  margin: 0;
}
h1 { font-size: clamp(3rem, 9.5vw, 7.8rem); line-height: .96; }
h2 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); line-height: 1; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); line-height: 1.04; }
h4 {
  font-family: var(--mono); font-size: 12.5px;
  letter-spacing: .2em; text-transform: uppercase;
  font-weight: 400; color: var(--purple);
}

p { margin: 0 0 1em; max-width: 60ch; font-size: 18px; line-height: 1.6; color: var(--ink); }
p strong { color: var(--purple); font-weight: 700; }
em { font-style: normal; font-family: var(--hand); color: var(--pink); font-size: 1.18em; line-height: .9; }

/* hand-script accent */
.hand {
  font-family: var(--hand); font-weight: 500;
  color: var(--pink);
  font-size: 1.32em; line-height: .9;
  display: inline-block;
}

/* wavy underline */
.squiggle {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 14'><path d='M0 7 Q 10 0 20 7 T 40 7 T 60 7 T 80 7' fill='none' stroke='%23E63A8C' stroke-width='3.5' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-position: left 100%;
  background-size: 80px 12px;
  padding-bottom: 12px;
}

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream);
  background: var(--purple);
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-weight: 400;
}
.tag--orange { background: var(--orange); color: var(--ink); }
.tag--lime   { background: var(--lime);   color: var(--ink); }
.tag--pink   { background: var(--pink);   color: var(--cream); }

/* numbered section title block */
.numbered { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; }
.numbered__num {
  width: 72px; height: 72px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: var(--ink);
  font-family: var(--display); font-size: 32px; line-height: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-4deg);
}
.numbered__num--lime { background: var(--lime); }
.numbered__num--pink { background: var(--pink); color: var(--cream); }
.numbered__num--purple { background: var(--purple); color: var(--cream); }
.numbered__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--ink);
}

/* -- BUTTONS / actions ------------------------------------------------- */
.action {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  background: var(--purple); color: var(--cream);
  font-family: var(--body);
  font-size: 16px; font-weight: 800; letter-spacing: .01em;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-pop);
  transition: transform .18s cubic-bezier(.3,1.5,.4,1), box-shadow .18s ease-out;
}
.action:hover  { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--purple); }
.action:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--purple); }
.action__arrow { display: inline-block; transition: transform .25s cubic-bezier(.3,1.5,.4,1); }
.action:hover .action__arrow { transform: translateX(4px) rotate(8deg); }
.action--orange { background: var(--orange); color: var(--ink); box-shadow: var(--shadow-pink); }
.action--orange:hover { box-shadow: 3px 3px 0 var(--pink); }
.action--lime { background: var(--lime); color: var(--ink); box-shadow: var(--shadow-pop); }
.action--pink { background: var(--pink); color: var(--cream); box-shadow: var(--shadow-lime); }
.action--pink:hover { box-shadow: 3px 3px 0 var(--lime); }
.action--ghost { background: var(--paper); color: var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.action--ghost:hover { box-shadow: 3px 3px 0 var(--ink); }
.action--big { padding: 19px 32px; font-size: 17px; }

/* -- HEADER ------------------------------------------------------------- */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  transition: box-shadow .3s ease;
}
.masthead.is-scrolled { box-shadow: 0 12px 32px -20px rgba(42,20,80,.4); }
.masthead__top {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
.masthead__brand {
  display: inline-flex; align-items: center; gap: 14px;
}
.masthead__seal {
  width: 64px; height: 64px;
  display: block;
  filter: drop-shadow(2px 3px 0 var(--ink));
  transition: transform .4s cubic-bezier(.3,1.5,.4,1);
}
.masthead__brand:hover .masthead__seal { transform: rotate(-8deg); }
.masthead__name { display: none; }
.masthead__edition {
  font-family: var(--hand);
  font-size: 22px;
  letter-spacing: .01em;
  color: var(--purple);
  text-align: center;
  transform: rotate(-2deg);
  line-height: 1;
}
.masthead__edition strong { color: var(--pink); font-weight: 500; }
.masthead__phone {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0;
  color: var(--purple);
  display: inline-flex; gap: 10px; align-items: center;
  padding: 8px 14px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
}
.masthead__phone:hover { background: var(--lime); }
.masthead__phone-dot {
  width: 8px; height: 8px; background: var(--pink); border-radius: 999px;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }

.masthead__nav {
  display: flex; gap: 6px;
  padding: 8px 0 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.masthead__nav a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  transition: background .2s, border-color .2s, color .2s;
}
.masthead__nav a:hover { background: var(--orange); border-color: var(--ink); color: var(--ink); transform: rotate(-2deg); }

.masthead__menu {
  display: none;
  padding: 10px 16px;
  background: var(--purple); color: var(--cream);
  font-family: var(--body); font-weight: 800; font-size: 14px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .masthead__top { grid-template-columns: auto 1fr auto; }
  .masthead__edition { display: none; }
  .masthead__nav { display: none; }
  .masthead__phone { display: none; }
  .masthead__menu { display: inline-flex; }
}
@media (max-width: 520px) {
  .masthead__seal { width: 52px; height: 52px; }
}

/* -- drawer ------------------------------------------------------------ */
.drawer {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 200;
  padding: 24px var(--gutter) 32px;
  display: none;
  flex-direction: column;
}
.drawer.is-open { display: flex; }
.drawer__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 2px dashed var(--purple); }
.drawer__close {
  font-family: var(--body); font-weight: 800; font-size: 14px;
  color: var(--cream); background: var(--purple);
  border: 2.5px solid var(--ink); padding: 10px 16px; border-radius: 999px;
}
.drawer__list { padding: 28px 0 0; display: flex; flex-direction: column; gap: 0; }
.drawer__list a {
  display: grid; grid-template-columns: 50px 1fr;
  align-items: baseline;
  gap: 16px; padding: 16px 0;
  border-bottom: 2px dashed var(--purple);
  font-family: var(--display);
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  color: var(--ink);
  line-height: 1;
}
.drawer__list a span {
  font-family: var(--hand); font-size: 28px; color: var(--pink);
  text-align: center;
}
.drawer__list a:hover { color: var(--purple); }
.drawer__foot { margin-top: auto; padding-top: 22px; border-top: 2px dashed var(--purple); display: flex; flex-direction: column; gap: 14px; }
.drawer__cta {
  background: var(--orange); color: var(--ink);
  font-family: var(--body); font-weight: 800; font-size: 16px;
  padding: 18px; text-align: center; border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
}
.drawer__direct {
  font-family: var(--mono); font-size: 13px; color: var(--purple);
  display: flex; flex-direction: column; gap: 6px; letter-spacing: .04em;
}
.drawer__direct a { color: var(--ink); font-family: var(--display); font-size: 18px; }
body.no-scroll { overflow: hidden; }

/* -- HERO --------------------------------------------------------------- */
.poster {
  padding: 0 0 clamp(40px, 6vw, 80px);
  position: relative;
}

.poster__strip {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px var(--gutter);
  font-family: var(--mono);
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream);
  background: var(--purple);
  border-bottom: 3px solid var(--ink);
  gap: 12px;
}
.poster__strip span strong { color: var(--orange-3); font-weight: 400; }
.poster__strip__icon { color: var(--lime); padding-right: 4px; }

.poster__main {
  padding-top: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(28px, 4vw, 56px);
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 920px) {
  .poster__main { grid-template-columns: 1fr; }
}

.poster__head {
  font-family: var(--display);
  font-size: clamp(3.4rem, 11vw, 9.5rem);
  letter-spacing: -.018em;
  line-height: .92;
  margin: 0;
  color: var(--ink);
}
.poster__head span { display: block; }
.poster__head .purple { color: var(--purple); }
.poster__head .orange {
  color: var(--orange);
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
  text-shadow: 4px 4px 0 var(--ink);
}
.poster__head .green {
  color: var(--lime);
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}
.poster__head em {
  display: block;
  font-family: var(--hand);
  font-size: .42em;
  color: var(--pink);
  font-weight: 500;
  line-height: 1;
  margin-top: .15em;
  transform: rotate(-3deg);
  transform-origin: left;
}

.poster__lead {
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 50ch;
  margin: 28px 0 0;
}
.poster__lead strong { color: var(--purple); font-weight: 800; }

.poster__cta {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin: 28px 0 0;
}

/* spinning vinyl in hero */
.poster__vinyl {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  justify-self: center;
}
.poster__vinyl__disc {
  width: 100%; height: 100%;
  animation: spin 20s linear infinite;
  filter: drop-shadow(0 30px 40px rgba(42,20,80,.35));
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .poster__vinyl__disc { animation: none; } }

.poster__sticker {
  position: absolute;
  top: 0; right: -10px;
  width: 130px; height: 130px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pink);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 22px;
  text-align: center;
  line-height: .95;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(15deg);
  animation: wobble 5s ease-in-out infinite;
}
.poster__sticker small {
  display: block;
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em;
  margin-top: 4px; color: var(--cream); opacity: .9;
}
@keyframes wobble {
  0%,100% { transform: rotate(15deg); }
  50%     { transform: rotate(8deg); }
}
@media (max-width: 920px) {
  .poster__vinyl { width: min(80%, 360px); margin-top: 32px; }
  .poster__sticker { width: 100px; height: 100px; font-size: 18px; }
}

/* full-width vinyl strip image (hero photo) */
.strip-image {
  position: relative;
  margin: 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
}
.strip-image img {
  width: 100%;
  height: clamp(260px, 38vw, 480px);
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  mix-blend-mode: normal;
}
.strip-image__caption {
  position: absolute;
  left: var(--gutter); bottom: 18px;
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
  padding: 8px 16px;
  background: var(--lime);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
}

/* -- STAMP STRIP (trust signals) --------------------------------------- */
.stamps {
  padding: clamp(64px, 8vw, 100px) 0;
  position: relative;
}
.stamps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
  align-items: start;
}
.stamp {
  display: flex; flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 28px;
  position: relative;
  box-shadow: var(--shadow-pop);
  transform: rotate(var(--rot, 0deg));
  transition: transform .3s cubic-bezier(.3,1.5,.4,1);
}
.stamp:nth-child(1) { --rot: -2deg; }
.stamp:nth-child(2) { --rot:  1.5deg; }
.stamp:nth-child(3) { --rot: -1deg; }
.stamp:nth-child(4) { --rot:  2.2deg; }
.stamp:hover { transform: rotate(0deg) translateY(-4px); }
.stamp__num {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  color: var(--orange);
  width: 56px; height: 56px;
  background: var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.stamp:nth-child(2) .stamp__num { background: var(--lime); color: var(--ink); }
.stamp:nth-child(3) .stamp__num { background: var(--pink); color: var(--cream); }
.stamp:nth-child(4) .stamp__num { background: var(--purple); color: var(--cream); }
.stamp__title {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.04;
  color: var(--ink);
  margin: 0;
}
.stamp__txt {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  opacity: .85;
}
@media (max-width: 880px) { .stamps__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .stamps__grid { grid-template-columns: 1fr; } }

/* -- ZONES ------------------------------------------------------------- */
.zone { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
.zone--cream-2 { background: var(--cream-2); }
.zone--ink {
  background: var(--ink); color: var(--cream);
}
.zone--ink h2, .zone--ink h3 { color: var(--cream); }
.zone--ink p { color: #C9B8E8; }
.zone--ink h4 { color: var(--lime); }
.zone--orange { background: var(--orange); }
.zone--orange h2, .zone--orange h3 { color: var(--ink); }
.zone--lime { background: var(--lime); }
.zone--purple { background: var(--purple); color: var(--cream); }
.zone--purple h2, .zone--purple h3 { color: var(--cream); }
.zone--purple p { color: #DEC4F0; }

.zone__head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.zone__intro p { font-size: 17px; max-width: 42ch; }
.zone--ink .zone__intro p { color: #C9B8E8; }
@media (max-width: 880px) {
  .zone__head { grid-template-columns: 1fr; align-items: start; }
}

/* wavy divider svg */
.wave-divider {
  display: block;
  width: 100%;
  height: clamp(48px, 6vw, 84px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.wave-divider--down { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0 0 Q 240 100 480 50 T 960 50 T 1440 50 L 1440 100 L 0 100 Z' fill='%23ECDFA8'/></svg>"); }
.wave-divider--up { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0 100 Q 240 0 480 50 T 960 50 T 1440 50 L 1440 0 L 0 0 Z' fill='%23ECDFA8'/></svg>"); }
.wave-divider--ink-down { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0 0 Q 240 100 480 50 T 960 50 T 1440 50 L 1440 100 L 0 100 Z' fill='%232A1450'/></svg>"); }
.wave-divider--orange-down { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0 0 Q 240 100 480 50 T 960 50 T 1440 50 L 1440 100 L 0 100 Z' fill='%23E88B43'/></svg>"); }
.wave-divider--lime-down { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0 0 Q 240 100 480 50 T 960 50 T 1440 50 L 1440 100 L 0 100 Z' fill='%239FC647'/></svg>"); }

/* -- TICKETS (ankauf cards) ------------------------------------------- */
.tickets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 2.4vw, 34px);
}
.ticket {
  background: var(--paper);
  padding: clamp(28px, 3.4vw, 42px);
  display: flex; flex-direction: column;
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 7px 7px 0 var(--ink);
  position: relative;
  transition: transform .3s cubic-bezier(.3,1.5,.4,1), box-shadow .3s ease-out;
}
.ticket:nth-child(1) { border-color: var(--ink); }
.ticket:nth-child(1) .ticket__sticker { background: var(--orange); }
.ticket:nth-child(2) .ticket__sticker { background: var(--lime); }
.ticket:nth-child(3) .ticket__sticker { background: var(--pink); color: var(--cream); }
.ticket:nth-child(4) .ticket__sticker { background: var(--purple); color: var(--cream); }
.ticket:hover { transform: translate(-3px, -3px) rotate(-1deg); box-shadow: 10px 10px 0 var(--ink); }
.ticket__sticker {
  position: absolute; top: -16px; right: 20px;
  padding: 6px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink);
  transform: rotate(4deg);
}
.ticket__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1;
  margin: 0 0 14px;
  color: var(--ink);
}
.ticket__txt {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
  opacity: .88;
}
.ticket__list {
  margin: 0 0 22px; padding: 0; list-style: none;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}
.ticket__list li {
  padding: 8px 0 8px 26px;
  position: relative;
}
.ticket__list li::before {
  content: "♥"; position: absolute; left: 0; top: 8px;
  color: var(--pink); font-size: 16px;
}
.ticket:nth-child(2) .ticket__list li::before { content: "♪"; color: var(--orange); }
.ticket:nth-child(3) .ticket__list li::before { content: "✿"; color: var(--lime); }
.ticket:nth-child(4) .ticket__list li::before { content: "✸"; color: var(--purple); }
.ticket__more {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--body);
  font-size: 14px; font-weight: 800;
  color: var(--purple);
  padding: 10px 18px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
}
.ticket__more:hover { background: var(--orange); color: var(--ink); }

@media (max-width: 720px) { .tickets { grid-template-columns: 1fr; } }

/* -- ABLAUF (step list) ----------------------------------------------- */
.steps-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 2.4vw, 34px);
}
.step-row {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 3vw, 40px);
  border: 3px solid var(--cream);
  border-radius: 28px;
  display: grid; grid-template-columns: 80px 1fr; gap: 18px;
  align-items: start;
}
.step-row__num {
  font-family: var(--display);
  font-size: 60px;
  line-height: .85;
  color: var(--cream);
  background: var(--ink);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 3px solid var(--cream);
}
.step-row:nth-child(1) .step-row__num { background: var(--orange); color: var(--ink); }
.step-row:nth-child(2) .step-row__num { background: var(--lime); color: var(--ink); }
.step-row:nth-child(3) .step-row__num { background: var(--pink); color: var(--cream); }
.step-row:nth-child(4) .step-row__num { background: var(--purple-2); color: var(--cream); }
.step-row__title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 10px;
}
.step-row__txt {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  opacity: .9;
  margin: 0;
  max-width: none;
}
@media (max-width: 720px) {
  .steps-list { grid-template-columns: 1fr; }
}

/* -- BEWERTUNG (3 pillars) -------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.4vw, 32px);
}
.pillar {
  background: var(--paper);
  padding: clamp(28px, 3vw, 42px);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(var(--rot, 0deg));
}
.pillar:nth-child(1) { --rot: -1.5deg; }
.pillar:nth-child(2) { --rot:  1.2deg; }
.pillar:nth-child(3) { --rot: -0.8deg; }
.pillar__no {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.pillar__title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
  margin: 0 0 14px;
  color: var(--ink);
}
.pillar__title em {
  display: inline-block;
  font-family: var(--hand); font-weight: 500;
  color: var(--pink);
  font-size: .95em;
  padding: 0 .1em;
}
.pillar__txt {
  font-family: var(--body);
  font-size: 16px; line-height: 1.55;
  color: var(--ink);
  margin: 0;
  opacity: .88;
}
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }

/* -- EDITORIAL / ÜBER ------------------------------------------------- */
.editorial {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.editorial__credit {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lime);
}
.editorial__quote {
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
  margin: 14px 0 22px;
  color: var(--cream);
}
.editorial__quote em {
  font-family: var(--hand);
  font-weight: 500;
  color: var(--orange-2);
  font-size: 1em;
}
.editorial__sig {
  font-family: var(--hand);
  font-size: 24px;
  color: var(--pink-2);
  margin-bottom: 6px;
}
.editorial__body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: #C9B8E8;
}
.editorial__body::first-letter {
  font-family: var(--display);
  font-size: 4.4em;
  float: left;
  line-height: .85;
  padding: 6px 14px 0 0;
  color: var(--orange);
}
@media (max-width: 880px) { .editorial { grid-template-columns: 1fr; } }

/* -- TICKER ------------------------------------------------------------ */
.ticker {
  background: var(--pink);
  color: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  padding: 18px 0;
}
.ticker__track {
  display: inline-flex; white-space: nowrap;
  animation: tick 40s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -.005em;
}
.ticker__track span { padding: 0 22px; }
.ticker__track span::after { content: "✿"; padding-left: 28px; color: var(--lime); }
.ticker__track span:nth-child(3n)::after { content: "☮"; color: var(--cream); }
.ticker__track span:nth-child(5n)::after { content: "♥"; color: var(--orange); }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* -- CITIES ----------------------------------------------------------- */
.cities {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.cities li {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 22px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  transform: rotate(var(--r, 0deg));
}
.cities li:nth-child(2n)  { --r:  -1.5deg; background: var(--orange); }
.cities li:nth-child(3n)  { --r:   1.2deg; background: var(--lime); }
.cities li:nth-child(4n)  { --r:  -0.8deg; background: var(--pink); color: var(--cream); }
.cities li:nth-child(5n)  { --r:   1.6deg; background: var(--purple); color: var(--cream); }
.cities li::before {
  content: "✿"; color: var(--pink);
  font-size: 18px;
}
.cities li:nth-child(2n)::before { color: var(--purple); content: "♪"; }
.cities li:nth-child(3n)::before { color: var(--ink);    content: "☮"; }
.cities li:nth-child(4n)::before { color: var(--lime);   content: "♥"; }
.cities li:nth-child(5n)::before { color: var(--orange); content: "✸"; }
.cities li:hover { transform: rotate(0) scale(1.04); }

/* -- GALLERY ---------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
}
.gallery figure {
  margin: 0; position: relative; overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(var(--rot, 0deg));
}
.gallery figure:nth-child(1) { --rot: -1.2deg; }
.gallery figure:nth-child(2) { --rot:  1.4deg; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.gallery figcaption {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--display); font-size: 16px;
  color: var(--ink);
  background: var(--lime); padding: 6px 14px;
  border: 2px solid var(--ink); border-radius: 999px;
}
.gallery figure:nth-child(2) figcaption { background: var(--orange); }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr; } }

/* -- FAQ -------------------------------------------------------------- */
.qna { display: flex; flex-direction: column; gap: 14px; }
.qna details {
  background: rgba(255,255,255,.08);
  border: 2.5px solid var(--lime);
  border-radius: 22px;
  padding: 20px 24px;
  transition: background .2s, border-color .2s;
}
.qna details[open] { background: rgba(255,255,255,.13); border-color: var(--orange); }
.qna summary {
  list-style: none;
  cursor: pointer;
  display: grid; grid-template-columns: 50px 1fr 32px;
  align-items: center; gap: 14px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--cream);
  line-height: 1.1;
}
.qna summary::-webkit-details-marker { display: none; }
.qna summary > b {
  font-family: var(--hand);
  font-size: 28px;
  color: var(--orange-2);
  font-weight: 500;
  text-align: center;
}
.qna summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 32px;
  color: var(--lime);
  text-align: right;
}
.qna details[open] summary::after { content: "−"; color: var(--orange); }
.qna__txt {
  margin: 12px 0 0 64px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: #C9B8E8;
  max-width: 64ch;
}
@media (max-width: 520px) {
  .qna summary { grid-template-columns: 36px 1fr 28px; }
  .qna__txt { margin-left: 50px; }
}

/* -- KONTAKT ---------------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 3vw, 36px);
}
.contact__addr {
  padding: clamp(28px, 4vw, 44px);
  background: var(--purple);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 7px 7px 0 var(--ink);
  display: flex; flex-direction: column; gap: 28px;
}
.contact__addr h3 { color: var(--cream); }
.contact__rows { margin: 0; padding: 0; display: flex; flex-direction: column; }
.contact__row {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 2px dashed rgba(252,245,220,.25);
  font-family: var(--body); font-size: 15px;
}
.contact__row dt {
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--orange-2);
}
.contact__row dd { margin: 0; color: var(--cream); font-weight: 600; }
.contact__row dd a:hover { color: var(--lime); }

.contact__form {
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 7px 7px 0 var(--ink);
  display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 400;
}
.field input, .field textarea {
  border: 2.5px solid var(--ink);
  background: var(--cream-2);
  padding: 12px 16px;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  border-radius: 14px;
  transition: background .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--pink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field--check {
  flex-direction: row; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink);
}
.field--check input { width: 18px; height: 18px; accent-color: var(--pink); }
.field--check label {
  text-transform: none; letter-spacing: 0;
  font-family: var(--body); font-size: 14px;
  color: var(--ink);
}
.field--check a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.contact__form .action { align-self: flex-start; }
.contact__notice {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--purple); margin: 0;
}
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }

/* -- COLOPHON --------------------------------------------------------- */
.colophon {
  background: var(--ink);
  color: var(--cream);
  border-top: 3px solid var(--ink);
  padding: 56px 0 32px;
  position: relative;
}
.colophon__top {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  padding-bottom: 36px;
  border-bottom: 2px dashed rgba(252,245,220,.2);
}
.colophon__brand {
  font-family: var(--display); font-size: 32px;
  display: flex; align-items: center; gap: 14px;
  color: var(--cream);
}
.colophon__brand img { width: 56px; height: 56px; }
.colophon__brand-block p {
  font-family: var(--body); font-size: 15.5px; line-height: 1.6;
  color: #C9B8E8; margin-top: 14px; max-width: 36ch;
}
.colophon h4 { color: var(--lime); margin-bottom: 14px; }
.colophon ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.colophon ul li, .colophon ul a {
  font-family: var(--body); font-size: 15px; color: var(--cream);
}
.colophon ul a:hover { color: var(--orange-2); }
.colophon__bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: #C9B8E8;
}
.colophon__bot a:hover { color: var(--lime); }
.colophon__bot .sep { padding: 0 8px; color: var(--purple-2); }
@media (max-width: 880px) { .colophon__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
  .colophon__top { grid-template-columns: 1fr; }
  .colophon__bot { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* -- callbar --------------------------------------------------------- */
.callbar {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 4px 4px 0 var(--ink);
}
.callbar a {
  flex: 1; text-align: center; padding: 11px;
  font-family: var(--body);
  font-size: 14px; font-weight: 800;
  color: var(--ink);
  border-radius: 999px;
}
.callbar a + a { background: var(--orange); margin-left: 4px; }
@media (max-width: 720px) { .callbar { display: flex; } body { padding-bottom: 70px; } }

/* -- legal pages ----------------------------------------------------- */
.legal { padding: 72px 0 100px; }
.legal h1 { font-size: clamp(2.6rem, 6.6vw, 5rem); margin-bottom: 28px; color: var(--ink); }
.legal h2 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin: 40px 0 14px;
  color: var(--purple);
}
.legal p, .legal li { font-family: var(--body); font-size: 17px; line-height: 1.65; color: var(--ink); }
.legal a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
.legal ul { padding-left: 22px; }
.legal ul li::marker { color: var(--orange); }

/* -- reveal ---------------------------------------------------------- */
.js-on .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; transition-delay: var(--d, 0s); }
.js-on .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-on .reveal { opacity: 1 !important; transform: none !important; }
}
