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

@media (hover: hover) and (pointer: fine) {
  * { cursor: none; }
}

/* ── Custom Cursor ── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 36px;
  height: 30px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, opacity 0.2s;
  opacity: 0;
}

#cursor.visible { opacity: 1; }
#cursor.clicking { transform: translate(-50%, -50%) scale(0.85); }

#cursor svg { width: 100%; height: 100%; filter: drop-shadow(0 0 4px rgba(255,255,255,0.3)); }

/* Click spark */
.spark {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  animation: spark-burst 0.4s ease-out forwards;
}

.spark svg { width: 40px; height: 40px; }

@keyframes spark-burst {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(0.4) rotate(0deg); }
  60%  { opacity: 1; transform: translate(-50%, -50%) scale(1.1) rotate(15deg); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3) rotate(20deg); }
}

html { scroll-behavior: smooth; }

body {
  background: #0c0c0c;
  color: #e8e8e8;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
}

nav.scrolled {}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

nav ul a {
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active { color: #fff; }

/* ── Hero ── */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.72);
}

.hero-text {
  position: absolute;
  bottom: 90px;
  left: 48px;
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-intro {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin-top: 16px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

.hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.12);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}

.hero-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  writing-mode: vertical-rl;
}

/* ── Sections ── */
.section {
  padding: 100px 48px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  max-width: 560px;
}

/* ── Photos ── */
.photo {
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.95);
}

.photo:hover img {
  transform: scale(1.02);
  filter: brightness(1);
}

.photo-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.photo:hover .photo-label { opacity: 1; }

/* ── Scroll Gallery ── */
.gallery-wrap {
  position: relative;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(12,12,12,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}

.gallery-arrow svg { width: 20px; height: 20px; }

.gallery-arrow--prev { left: 16px; }
.gallery-arrow--next { right: 16px; }

.gallery-wrap:hover .gallery-arrow { opacity: 1; }

.gallery-arrow:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

.scroll-gallery {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  height: 620px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.scroll-gallery::-webkit-scrollbar { display: none; }
.scroll-gallery.dragging { cursor: grabbing; }

.scroll-gallery .photo {
  flex: 0 0 auto;
  height: 100%;
  scroll-snap-align: start;
}

.scroll-gallery .photo img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  filter: brightness(0.95);
  transition: filter 0.4s ease;
}

.scroll-gallery .photo:hover img { filter: brightness(1); }

/* ── Content grid ── */
.grid-content {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  grid-template-rows: 540px;
  gap: 6px;
  align-items: stretch;
}

.content-card--yt {
  width: calc(540px * 9 / 16);
  background: #111;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.05);
}

.yt-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.yt-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.content-card__label--below {
  padding: 14px 16px;
  align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.content-card {
  background: #111;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.content-card--large {
  grid-column: 1;
}

.content-card__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #161616 0%, #0c0c0c 100%);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s;
}

.content-card:hover .content-card__inner {
  border-color: rgba(255,255,255,0.15);
}

.play-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.content-card:hover .play-icon {
  opacity: 1;
  transform: scale(1.08);
}

.content-card__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.content-card__cat {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.content-card__title {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 48px;
}

/* ── Über uns ── */
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  gap: 6px;
}

.ueber-img {
  overflow: hidden;
  background: #1a1a1a;
}

.ueber-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) brightness(0.85);
  transition: filter 0.5s;
}

.ueber-img:hover img { filter: grayscale(0%) brightness(0.95); }

.ueber-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background: #111;
}

.ueber-text h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.2;
}

.ueber-text p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  max-width: 480px;
}

.ueber-text .name-tag {
  margin-top: 32px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── Kontakt ── */
#kontakt {
  padding: 120px 48px;
  text-align: center;
}

#kontakt .section-label {
  display: block;
  margin-bottom: 16px;
}

#kontakt h2 {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

#kontakt p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}

.contact-options {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all 0.25s;
}

.contact-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.contact-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.contact-btn.primary {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
}

.contact-btn.primary:hover {
  background: rgba(80,140,255,0.12);
  border-color: rgba(80,140,255,0.5);
  color: #508cff;
}

.contact-btn.whatsapp:hover {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.5);
  color: #25d366;
}

.contact-btn.instagram:hover {
  background: rgba(255,60,180,0.12);
  border-color: rgba(255,60,180,0.5);
  color: #ff3cb4;
}

/* ── Footer ── */
footer {
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer .logo img { height: 36px; width: auto; opacity: 0.5; }

footer p {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.18);
}

.social-links { display: flex; gap: 24px; }

.social-links a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.social-links a:hover { color: #fff; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Glitch Logo ── */
.logo {
  position: relative;
}

.logo::before,
.logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/logo_white.png') no-repeat center/contain;
  opacity: 0;
  pointer-events: none;
}

.logo.glitching img {
  animation: glitch-main 0.55s steps(1) forwards;
}

.logo.glitching::before {
  opacity: 1;
  animation: glitch-red 0.55s steps(1) forwards;
  filter: hue-rotate(280deg) saturate(8) brightness(2.5);
  mix-blend-mode: screen;
}

.logo.glitching::after {
  opacity: 1;
  animation: glitch-cyan 0.55s steps(1) forwards;
  filter: hue-rotate(160deg) saturate(8) brightness(2.5);
  mix-blend-mode: screen;
}

@keyframes glitch-main {
  0%, 100% { transform: none; clip-path: none; }
  8%  { transform: translate(-4px, 0) skewX(-3deg); clip-path: inset(15% 0 65% 0); }
  16% { transform: translate(4px, 1px);             clip-path: inset(60% 0 15% 0); }
  24% { transform: translate(-2px, -1px) skewX(2deg); clip-path: inset(35% 0 45% 0); }
  32% { transform: none; clip-path: none; }
  40% { transform: translate(5px, 0) skewX(-4deg);  clip-path: inset(5% 0 80% 0); }
  48% { transform: translate(-3px, 2px);             clip-path: inset(70% 0 8% 0); }
  56% { transform: none; clip-path: none; }
  64% { transform: translate(3px, -1px) skewX(2deg); clip-path: inset(25% 0 55% 0); }
  72% { transform: none; clip-path: none; }
  80% { transform: translate(-2px, 0);               clip-path: inset(50% 0 30% 0); }
  88% { transform: none; clip-path: none; }
}

@keyframes glitch-red {
  0%, 100% { transform: none; opacity: 0; }
  8%  { transform: translate(6px, 0);  clip-path: inset(15% 0 65% 0);  opacity: 0.8; }
  16% { transform: translate(-6px, 0); clip-path: inset(60% 0 15% 0);  opacity: 0.7; }
  24% { transform: translate(4px, 1px); clip-path: inset(35% 0 45% 0); opacity: 0.6; }
  32% { opacity: 0; }
  40% { transform: translate(8px, 0);  clip-path: inset(5% 0 80% 0);   opacity: 0.7; }
  48% { transform: translate(-5px, 0); clip-path: inset(70% 0 8% 0);   opacity: 0.8; }
  56% { opacity: 0; }
  64% { transform: translate(5px, -1px); clip-path: inset(25% 0 55% 0); opacity: 0.6; }
  72% { opacity: 0; }
  80% { transform: translate(-3px, 0); clip-path: inset(50% 0 30% 0);  opacity: 0.7; }
  88% { opacity: 0; }
}

@keyframes glitch-cyan {
  0%, 100% { transform: none; opacity: 0; }
  8%  { transform: translate(-6px, 0);  clip-path: inset(15% 0 65% 0); opacity: 0.8; }
  16% { transform: translate(6px, 0);   clip-path: inset(60% 0 15% 0); opacity: 0.7; }
  24% { transform: translate(-4px, -1px); clip-path: inset(35% 0 45% 0); opacity: 0.6; }
  32% { opacity: 0; }
  40% { transform: translate(-8px, 0);  clip-path: inset(5% 0 80% 0);  opacity: 0.7; }
  48% { transform: translate(5px, 0);   clip-path: inset(70% 0 8% 0);  opacity: 0.8; }
  56% { opacity: 0; }
  64% { transform: translate(-5px, 1px); clip-path: inset(25% 0 55% 0); opacity: 0.6; }
  72% { opacity: 0; }
  80% { transform: translate(3px, 0);   clip-path: inset(50% 0 30% 0); opacity: 0.7; }
  88% { opacity: 0; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled {}

  .logo img { height: 64px; }

  .hamburger { display: flex; }

  nav ul {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(12,12,12,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }

  nav ul.open { display: flex; }
  nav ul a { font-size: 14px; letter-spacing: 0.2em; }

  .hero-text { left: 24px; bottom: 60px; right: 24px; }
  .hero-intro { font-size: 13px; max-width: 100%; }
  .hero-cta { display: none; }
  .scroll-hint { display: none; }

  .section { padding: 60px 24px; }

  #ueber-uns { padding: 60px 24px !important; }

  .scroll-gallery {
    height: 360px;
  }

  .gallery-arrow { display: none; }

  .grid-content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    align-items: start;
  }
  .content-card--yt {
    width: 100%;
    grid-column: 1 / 3;
  }
  .yt-wrap { aspect-ratio: 9/16; position: relative; height: auto; }
  .yt-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

  .ueber-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ueber-img { height: 320px; }
  .ueber-text { padding: 40px 28px; }

  #kontakt { padding: 80px 24px; }

  .contact-options { flex-direction: column; align-items: center; }
  .contact-btn { width: 100%; max-width: 320px; justify-content: center; padding: 16px 24px; }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 40px 24px;
  }

  .divider { margin: 0 24px; }
}
