/* ═══ ANIMATIONS ═══ */
@keyframes flicker {
  0%,100%{opacity:1} 4%{opacity:.84} 6%{opacity:1}
  42%{opacity:1} 44%{opacity:.88} 46%{opacity:1}
  78%{opacity:1} 80%{opacity:.82} 82%{opacity:1}
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes stickerIn {
  0%{opacity:0;transform:rotate(var(--r,-2deg)) scale(.3)}
  60%{opacity:1;transform:rotate(var(--r,-2deg)) scale(1.06)}
  100%{opacity:1;transform:rotate(var(--r,-2deg)) scale(1)}
}
@keyframes drip {
  0%{height:0;opacity:0} 15%{opacity:.8} 100%{height:var(--h,30px);opacity:.5}
}
@keyframes tagBob {
  0%,100%{transform:translateY(0) rotate(var(--r,0deg))}
  50%{transform:translateY(-5px) rotate(var(--r,0deg))}
}
@keyframes glowPulse {
  0%,100%{filter:drop-shadow(0 0 20px rgba(218,0,115,.2)) drop-shadow(0 0 60px rgba(100,20,180,.12))}
  50%{filter:drop-shadow(0 0 32px rgba(218,0,115,.38)) drop-shadow(0 0 80px rgba(100,20,180,.22))}
}
@keyframes truckDrive {
  0%   { transform: translateX(calc(100vw + 100%)); }
  100% { transform: translateX(calc(-100%)); }
}
@keyframes truckBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-3px); }
}

/* ═══ RESET & VARS ═══ */
*{margin:0;padding:0;box-sizing:border-box}

:root {
  --pink: #da0073;
  --mag: #ff2d92;
  --dpurp: #2a0845;
  --mpurp: #4a1068;
  --bpurp: #1a0a3e;
  --dk: #0a0514;
  --dkr: #06030e;
  --cream: #f5f0e8;
  --f-display: 'Finger Paint', cursive;
  --f-body: 'Saira Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dkr);
  color: var(--cream);
  font-family: var(--f-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: .3;
  mix-blend-mode: overlay;
}

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(6,3,14,.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--pink);
}
.nav-logo {
  height: 36px; width: auto;
  filter: brightness(10);
  animation: flicker 5s infinite;
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-family: var(--f-display);
  font-size: 14px; color: rgba(255,255,255,.7);
  text-decoration: none; position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--mag); box-shadow: 0 0 8px var(--mag);
  transition: width .3s cubic-bezier(.23,1,.32,1);
}
.nav-links a:hover { color: var(--mag); }
.nav-links a:hover::after { width: 100%; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 24px 60px;
  background: linear-gradient(165deg, var(--dk) 0%, var(--dpurp) 35%, var(--bpurp) 65%, var(--dkr) 100%);
}
.hero-g1 {
  position: absolute; top: -10%; right: -5%;
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(218,0,115,.2) 0%, transparent 65%);
  pointer-events: none; border-radius: 50%;
}
.hero-g2 {
  position: absolute; bottom: -15%; left: -10%;
  width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(74,16,104,.3) 0%, transparent 60%);
  pointer-events: none; border-radius: 50%;
}
.hero-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 100px, rgba(218,0,115,.015) 100px, rgba(218,0,115,.015) 102px);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 1000px; width: 100%;
}

/* Sticker label */
.sticker {
  display: inline-block;
  background: var(--pink); color: #fff;
  font-family: var(--f-body); font-weight: 800;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  padding: 8px 22px;
  transform: rotate(var(--r, -2deg));
  box-shadow: 3px 3px 0 rgba(0,0,0,.5);
  --r: -2deg;
  animation: stickerIn .6s cubic-bezier(.23,1,.32,1) both;
}

/* Real logo as main hero image */
.hero-logo {
  max-width: min(75vw, 680px);
  margin: 0 auto 12px;
  animation: glowPulse 4s ease-in-out infinite;
}
.hero-logo img { width: 100%; height: auto; }

/* Drips */
.drips { display: flex; justify-content: center; gap: 14px; margin-bottom: 24px; pointer-events: none; }
.drip {
  width: 3px; border-radius: 0 0 3px 3px;
  background: var(--mag); opacity: 0;
  animation: drip 1.4s ease-out forwards;
  animation-delay: var(--d, 0s);
  box-shadow: 0 0 8px rgba(218,0,115,.5);
}

.hero-sub {
  font-family: var(--f-display);
  font-size: clamp(20px, 4vw, 34px);
  color: rgba(255,255,255,.45);
  margin-bottom: 36px;
}
.hero-sub em {
  font-style: normal;
  color: var(--mag);
  text-shadow: 0 0 18px rgba(218,0,115,.35);
}

/* ═══ ANIMATED TRUCK ═══ */
.truck-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  margin: 24px 0 0;
}
.truck-strip-inner {
  animation: truckBounce 1.2s ease-in-out infinite;
}
.truck-strip img {
  width: min(70vw, 600px);
  height: auto;
  animation: truckDrive 10s linear infinite;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.5)) drop-shadow(0 0 20px rgba(218,0,115,.1));
}

/* Hero CTA */
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

.btn {
  font-family: var(--f-display);
  font-size: 16px;
  text-decoration: none;
  padding: 16px 36px;
  border: 3px solid;
  position: relative;
  transition: transform .25s cubic-bezier(.23,1,.32,1), box-shadow .25s;
  cursor: pointer;
  display: inline-block;
}
.btn--fill {
  background: var(--pink); color: #fff; border-color: var(--pink);
  transform: rotate(-1deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,.45), 0 0 20px rgba(218,0,115,.2);
}
.btn--fill:hover {
  transform: rotate(0) scale(1.05);
  box-shadow: 5px 5px 0 rgba(0,0,0,.4), 0 0 30px rgba(218,0,115,.35);
}
.btn--ghost {
  background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.18);
  transform: rotate(.8deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,.2);
}
.btn--ghost:hover {
  transform: rotate(0) scale(1.05);
  border-color: var(--mag); color: #fff;
  box-shadow: 5px 5px 0 rgba(218,0,115,.15);
}

/* ═══ TAPE MARQUEE ═══ */
.tape {
  overflow: hidden; white-space: nowrap;
  padding: 13px 0;
  font-family: var(--f-display);
  font-size: 18px;
  position: relative; z-index: 5;
}
.tape--pink {
  background: var(--pink); color: #fff;
  transform: rotate(-1deg) scale(1.02); margin: -6px 0;
  box-shadow: 0 4px 24px rgba(218,0,115,.3);
}
.tape--purp {
  background: var(--mpurp); color: rgba(255,255,255,.8);
  transform: rotate(.7deg) scale(1.02); margin: -6px 0;
  box-shadow: 0 4px 24px rgba(74,16,104,.4);
}
.tape-in { display: inline-flex; animation: marquee 22s linear infinite; }
.tape--purp .tape-in { animation-direction: reverse; animation-duration: 28s; }
.tape-in span { padding: 0 28px; flex-shrink: 0; }
.tdot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; margin: 0 6px; vertical-align: middle;
}
.tape--pink .tdot { background: rgba(255,255,255,.5); }
.tape--purp .tdot { background: var(--mag); }

/* ═══ WHAT WE DO ═══ */
.what { padding: 120px 28px; position: relative; background: var(--dk); overflow: hidden; }
.what::before {
  content: 'SMASH';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-6deg);
  font-family: var(--f-display);
  font-size: clamp(100px, 22vw, 280px);
  color: rgba(218,0,115,.03);
  pointer-events: none; white-space: nowrap;
}
.what-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  position: relative; z-index: 1;
}
.wc {
  background: rgba(42,8,69,.35);
  border: 2px solid rgba(218,0,115,.1);
  padding: 40px 28px;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.23,1,.32,1), border-color .3s, background .3s;
}
.wc:nth-child(1) { transform: rotate(-.6deg); }
.wc:nth-child(2) { transform: rotate(.4deg); }
.wc:nth-child(3) { transform: rotate(-.9deg); }
.wc:hover { transform: rotate(0) scale(1.02) !important; border-color: var(--mag); background: rgba(42,8,69,.55); }
.wc::before {
  content: attr(data-n);
  position: absolute; top: -8px; right: 14px;
  font-family: var(--f-display); font-size: 60px;
  color: rgba(218,0,115,.06); pointer-events: none;
}
.wc-icon { font-size: 34px; margin-bottom: 18px; display: block; }
.wc h3 {
  font-family: var(--f-display);
  font-size: 26px; color: var(--mag);
  margin-bottom: 10px;
  text-shadow: 0 0 14px rgba(218,0,115,.2);
}
.wc p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.5); font-weight: 400; }

/* ═══ SPEISEKARTE ═══ */
.menu-sec {
  padding: 100px 28px;
  background: var(--dkr);
  border-top: 1px solid rgba(218,0,115,.08);
  position: relative; overflow: hidden;
}
.menu-in { max-width: 1000px; margin: 0 auto; }
.menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.menu-item {
  background: rgba(42,8,69,.3);
  border: 2px solid rgba(218,0,115,.12);
  border-left: 4px solid var(--pink);
  padding: 28px 26px;
  transition: border-color .3s, background .3s, transform .3s;
}
.menu-item:hover {
  border-color: var(--mag);
  background: rgba(42,8,69,.5);
  transform: translateY(-2px);
}
.menu-item h3 {
  font-family: var(--f-display);
  font-size: 22px; color: var(--mag);
  margin-bottom: 8px;
}
.menu-item p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.5); }
.menu-note {
  text-align: center; margin-top: 36px;
  font-size: 13px; color: rgba(255,255,255,.3);
}
.menu-note a { color: var(--mag); text-decoration: none; }
.menu-note a:hover { text-decoration: underline; }

/* ═══ CATERING ═══ */
.cat {
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--dpurp) 0%, var(--dk) 100%);
  min-height: 420px;
}
.cat-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .45;
  mix-blend-mode: lighten;
  pointer-events: none;
}
.cat-ov {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  text-align: center;
  padding: 80px 28px;
  background: rgba(6,3,14,.35);
  min-height: 420px;
}
.cat-ov h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 9vw, 80px);
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0,0,0,.5), 0 0 40px rgba(218,0,115,.2);
  margin-bottom: 16px; line-height: 1.1;
}
.cat-ov p { font-size: 17px; color: rgba(255,255,255,.55); max-width: 560px; line-height: 1.7; margin-bottom: 32px; }

/* ═══ CATERING DETAILS ═══ */
.cat-details {
  padding: 80px 28px;
  background: var(--dk);
  border-top: 1px solid rgba(218,0,115,.1);
}
.cat-details-in {
  max-width: 1000px; margin: 0 auto;
}
.cat-details h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 6vw, 52px);
  color: var(--cream);
  text-shadow: 2px 2px 0 rgba(0,0,0,.4);
  margin-bottom: 14px;
  text-align: center;
}
.cat-details > .cat-details-in > p {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,.45);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  background: rgba(42,8,69,.3);
  border: 2px solid rgba(218,0,115,.1);
  padding: 32px 24px;
  transition: border-color .3s, background .3s;
}
.cat-card:hover { border-color: var(--mag); background: rgba(42,8,69,.5); }
.cat-card-icon { font-size: 32px; margin-bottom: 14px; }
.cat-card h3 {
  font-family: var(--f-display);
  font-size: 20px; color: var(--mag);
  margin-bottom: 8px;
}
.cat-card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.45); }
.cat-cta { text-align: center; margin-top: 48px; }

/* ═══ INSTAGRAM ═══ */
.insta { padding: 120px 28px 140px; background: var(--dkr); position: relative; overflow: hidden; }
.insta::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--pink) 0, var(--pink) 20px, transparent 20px, transparent 30px);
}
.sh { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.sh h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 8vw, 80px);
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 3px 3px 0 rgba(0,0,0,.4), 0 0 40px rgba(218,0,115,.08);
}

.igm { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: auto auto; gap: 4px; max-width: 1100px; margin: 0 auto; }
.igm a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.igi {
  position: relative; overflow: hidden; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--dpurp), rgba(218,0,115,.15));
  display: block; text-decoration: none;
}
.igi.miss::after { content: '📸'; position: absolute; inset: 0; display: grid; place-items: center; font-size: 28px; z-index: 1; }
.igi img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.23,1,.32,1), filter .4s; filter: saturate(1.05) contrast(1.05); }
.igi.miss img { opacity: 0; pointer-events: none; }
.igi:hover img { transform: scale(1.08); filter: saturate(.5) contrast(1.2) brightness(.65); }
.igi-ov {
  position: absolute; inset: 0;
  background: rgba(6,3,14,.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; z-index: 2;
}
.igi:hover .igi-ov { opacity: 1; }
.igi-ov span {
  font-family: var(--f-display);
  font-size: 18px; color: var(--mag);
  text-shadow: 0 0 12px rgba(218,0,115,.35);
}

.ig-bot { text-align: center; margin-top: 36px; }
.ig-bot a {
  font-family: var(--f-body); font-weight: 700;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mag); text-decoration: none; transition: color .2s;
}
.ig-bot a::after { content: ' →'; display: inline-block; transition: transform .2s; }
.ig-bot a:hover { color: #fff; }
.ig-bot a:hover::after { transform: translateX(6px); }

/* ═══ FIND US ═══ */
.find {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 28px;
  position: relative; overflow: hidden; background: var(--dk);
}
.find::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 30% 40%, rgba(218,0,115,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 60%, rgba(74,16,104,.12) 0%, transparent 60%);
  pointer-events: none;
}
.find-in { max-width: 760px; text-align: center; position: relative; z-index: 1; }
.find-in h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 10vw, 100px);
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 4px 4px 0 rgba(0,0,0,.4);
  margin-bottom: 20px;
}
.find-in h2 .hl { color: var(--mag); text-shadow: 0 0 30px rgba(218,0,115,.3), 3px 3px 0 rgba(0,0,0,.4); }
.find-desc { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.45); margin-bottom: 44px; font-weight: 400; }

.tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.tp {
  font-family: var(--f-body); font-weight: 700;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid rgba(218,0,115,.2);
  color: var(--mag); background: rgba(218,0,115,.04);
  transition: background .25s, border-color .25s, transform .25s;
  --r: 0deg;
  animation: tagBob 3.5s ease-in-out infinite;
  animation-delay: var(--ad, 0s);
}
.tp:nth-child(odd) { --r: -.4deg; }
.tp:nth-child(even) { --r: .4deg; }
.tp:hover { background: rgba(218,0,115,.12); border-color: var(--mag); transform: scale(1.06) rotate(0deg) !important; }

.find-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══ FAQ ═══ */
.faq-sec {
  padding: 100px 28px;
  background: var(--dk);
  border-top: 1px solid rgba(218,0,115,.08);
}
.faq-in { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 2px solid rgba(218,0,115,.12);
  background: rgba(42,8,69,.25);
  margin-bottom: 12px;
  transition: border-color .3s;
}
.faq-item[open] { border-color: var(--mag); background: rgba(42,8,69,.45); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 17px; color: var(--cream);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--f-display);
  font-size: 22px; color: var(--mag);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,.5);
}
.faq-item p a { color: var(--mag); text-decoration: none; }
.faq-item p a:hover { text-decoration: underline; }

/* ═══ SEO TEXT ═══ */
.seo { padding: 80px 28px; background: var(--dkr); border-top: 1px solid rgba(218,0,115,.08); }
.seo-g { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 36px 40px; }
.seo-g h3 {
  font-family: var(--f-display);
  font-size: 17px; color: var(--mag);
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(218,0,115,.12);
}
.seo-g p { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,.28); font-weight: 400; }
.seo-g a { color: var(--mag); text-decoration: none; }

/* ═══ FOOTER ═══ */
footer { background: var(--dkr); border-top: 3px solid var(--pink); text-align: center; padding: 40px 28px; }
.f-logo { height: 48px; margin: 0 auto 10px; filter: brightness(10); animation: flicker 6s infinite; }
.f-copy { font-size: 12px; color: rgba(255,255,255,.2); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.f-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.f-links a { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.22); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--mag); }

/* ═══ REVEAL ═══ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.23,1,.32,1), transform .7s cubic-bezier(.23,1,.32,1); }
.rv.vis { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .22s; }
.rv-d3 { transition-delay: .36s; }
.rv-d4 { transition-delay: .5s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .what-grid { grid-template-columns: 1fr; gap: 14px; }
  .wc:nth-child(n) { transform: rotate(0); }
  .seo-g { grid-template-columns: 1fr; }
  .igm { grid-template-columns: repeat(2,1fr); }
  .igm a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .cat-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .nav-logo { height: 28px; }
  .hero { padding: 88px 16px 36px; }
  .hero-logo { max-width: 88vw; }
  .hero-sub { font-size: 18px; margin-bottom: 24px; }
  .truck-strip img { width: 80vw; animation-duration: 7s; }
  .what, .insta, .find, .seo, .cat-details, .menu-sec, .faq-sec { padding-left: 16px; padding-right: 16px; }
  .cat-ov { padding: 60px 16px; min-height: 360px; }
  .igm { grid-template-columns: 1fr 1fr; }
  .igm a:nth-child(1) { grid-column: span 2; }
  .btn { width: 100%; max-width: 320px; text-align: center; transform: rotate(0); }
  .tape { font-size: 15px; }
  .cat-ov h2 { font-size: clamp(28px, 10vw, 50px); }
}

@media (hover: none) {
  .igi:hover img { transform: none; filter: saturate(1.05) contrast(1.05); }
  .igi:hover .igi-ov { opacity: 0; }
  .wc:hover { transform: rotate(0) !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ═══ UTILITY-KLASSEN (ersetzen Inline-Styles) ═══ */
.hl { color: var(--mag); }
.btn--straight { transform: rotate(0); }

.sticker--hero { margin-bottom: 28px; }
.sticker--sh { margin-bottom: 22px; }
.sticker--r1 { --r: 1deg; }
.sticker--r12 { --r: 1.2deg; }
.sticker--rm1 { --r: -1deg; }

.sh--tight { margin-bottom: 48px; }
.sh--tight44 { margin-bottom: 44px; }

.sec-title {
  font-family: var(--f-display);
  color: var(--cream);
  text-shadow: 3px 3px 0 rgba(0,0,0,.4);
}
.sec-title--menu { font-size: clamp(32px, 7vw, 64px); }
.sec-title--faq { font-size: clamp(30px, 6vw, 56px); }

/* Drip-Animationsparameter (vorher Inline-Styles) */
.drips .drip:nth-child(1) { --h: 24px; --d: .5s; }
.drips .drip:nth-child(2) { --h: 38px; --d: .65s; }
.drips .drip:nth-child(3) { --h: 16px; --d: .8s; }
.drips .drip:nth-child(4) { --h: 32px; --d: .9s; }
.drips .drip:nth-child(5) { --h: 20px; --d: 1s; }

/* Tag-Bob-Delays (vorher Inline-Styles) */
.tags .tp:nth-child(1) { --ad: 0s; }
.tags .tp:nth-child(2) { --ad: .12s; }
.tags .tp:nth-child(3) { --ad: .24s; }
.tags .tp:nth-child(4) { --ad: .36s; }
.tags .tp:nth-child(5) { --ad: .48s; }

/* ═══ FIND-MORE (Standort-Text) ═══ */
.find-more { max-width: 640px; margin: 0 auto 44px; text-align: left; }
.find-more h3 {
  font-family: var(--f-display);
  font-size: 19px; color: var(--mag);
  margin: 26px 0 8px;
  text-shadow: 0 0 10px rgba(218,0,115,.15);
}
.find-more h3:first-child { margin-top: 0; }
.find-more p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.45); }
