:root {
  --bg: #131313;
  --surface: rgba(255, 203, 46, 0.06);
  --surface-strong: rgba(255, 203, 46, 0.1);
  --text: #f7f5ec;
  --muted: rgba(247, 245, 236, 0.74);
  --brand: #ffcb2e;
  --brand-hot: #ff8a00;
  --brand-deep: #dca300;
  --stroke: rgba(255, 203, 46, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(14, 14, 14, 0.74), rgba(14, 14, 14, 0.84)),
    url("./assets/chalkboard.jpg");
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x: hidden;
}

body > * {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.055), transparent 20%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.04), transparent 18%),
    radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.045), transparent 24%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      12deg,
      rgba(255, 255, 255, 0.014) 0,
      rgba(255, 255, 255, 0.014) 1px,
      transparent 1px,
      transparent 140px
    ),
    repeating-linear-gradient(
      -9deg,
      rgba(255, 255, 255, 0.01) 0,
      rgba(255, 255, 255, 0.01) 1px,
      transparent 1px,
      transparent 180px
    ),
    linear-gradient(rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
  opacity: 0.1;
  z-index: 0;
}

main::before {
  content: "";
  position: absolute;
  inset: 6rem 0 auto;
  height: 24rem;
  pointer-events: none;
  z-index: 0;
  opacity: 0.02;
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.025), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.02), transparent 16%),
    radial-gradient(circle at 55% 72%, rgba(255, 255, 255, 0.02), transparent 20%);
  filter: blur(42px);
}

main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.018;
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.04), transparent 10%),
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.03), transparent 12%),
    radial-gradient(circle at 38% 62%, rgba(255, 255, 255, 0.026), transparent 14%),
    radial-gradient(circle at 86% 74%, rgba(255, 255, 255, 0.026), transparent 12%);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar,
.hero-content,
.overview,
.stores,
.media-hub,
.menus,
.footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 203, 46, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 12, 0.62);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  padding-right: 1rem;
}

.brand-badge {
  position: relative;
  display: inline-block;
  width: 3.35rem;
  height: 3.35rem;
  overflow: hidden;
  border-radius: 50%;
  background: center / contain no-repeat url("./assets/logo-mark.svg");
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.brand-mini-top,
.brand-mini-main {
  display: none;
}

.brand-text,
.nav-links a,
.eyebrow,
.section-label,
.hero-note,
.store-city,
.social-name {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    transform 220ms ease,
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0.55rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 203, 46, 0.08);
  border-color: rgba(255, 203, 46, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 5rem;
  perspective: 1400px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 203, 46, 0.72), transparent);
}

.eyebrow,
.section-label {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
.logo-small,
.logo-big {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  max-width: 11ch;
  margin-top: 0.85rem;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);
}

.lead,
.intro p,
.store-card p,
.store-card li,
.social-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-copy .lead {
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover,
.social-card:hover,
.store-card:hover {
  transform: translateY(-4px);
}

.button-primary {
  background: var(--brand);
  color: #000;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.button-primary:hover {
  background: #ffd54f;
}

.button-secondary {
  border-color: var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.hero-mark {
  justify-self: end;
  position: relative;
}

.hero-mark::after {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.025), transparent 62%);
  filter: blur(28px);
  z-index: -2;
  animation: haloPulse 8s ease-in-out infinite;
}

.logo-disc {
  width: min(31rem, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  border: 8px solid var(--brand);
  color: var(--brand);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotate(-5deg);
  position: relative;
  isolation: isolate;
  animation: bob 7.5s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.logo-disc::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 203, 46, 0.08);
  animation: pulseRing 5s ease-in-out infinite;
  z-index: -1;
}

.logo-disc::after {
  content: "";
  position: absolute;
  inset: 14% 18%;
  border-radius: 50%;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.03) 50%, transparent 80%);
  filter: blur(12px);
  opacity: 0.28;
  transform: translateX(-140%) rotate(12deg);
  animation: logoSweep 6.8s ease-in-out infinite;
  z-index: -1;
}

.logo-small {
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  line-height: 1;
}

.logo-big {
  font-size: clamp(4rem, 7vw, 6.9rem);
  line-height: 0.88;
}

.hero-note {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
}

.overview,
.stores,
.media-hub,
.menus,
.footer {
  padding-bottom: 4.25rem;
}

.overview {
  padding-top: 1rem;
}

.overview,
.media-hub,
.social-wall {
  position: relative;
  padding-inline: 1.4rem;
  padding-top: 1.4rem;
}

.menus {
  padding-inline: 1.4rem;
  padding-top: 1.4rem;
}

.overview::before,
.media-hub::before,
.social-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.006);
  pointer-events: none;
}

.menu-grid,
.overview-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.menu-grid {
  grid-template-columns: minmax(0, 18.5rem);
  gap: 0.65rem;
  align-content: start;
}

.snack-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.intro-pulse {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.72);
}

.pulse-line {
  position: relative;
  width: 5.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 203, 46, 0.1), rgba(255, 203, 46, 0.95), rgba(255, 203, 46, 0.1));
  overflow: hidden;
}

.pulse-line::after {
  content: "";
  position: absolute;
  inset: -2px auto -2px -14px;
  width: 14px;
  background: rgba(255, 255, 255, 0.95);
  filter: blur(2px);
  animation: pulseTravel 2.8s linear infinite;
}

.pulse-copy {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.snack-strip span,
.menu-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 138, 0, 0.22);
  background: linear-gradient(135deg, rgba(255, 203, 46, 0.12), rgba(255, 138, 0, 0.08));
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 700;
  transform: rotate(-2deg);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.1rem;
}

.media-heading {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.6rem;
}

.media-heading-copy {
  max-width: 52rem;
}

.media-heading-copy p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.overview-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: start;
}

.overview-text {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 34ch;
}

.overview-button {
  margin-top: 1.4rem;
}

.overview-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.story-card {
  position: relative;
  padding: 1.15rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 203, 46, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.012);
  box-shadow: var(--shadow);
}

.story-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hot) 100%);
  color: #090909;
  font-weight: 800;
  font-size: 0.95rem;
}

.story-card h3 {
  margin-top: 0.85rem;
  font-size: 1.3rem;
}

.story-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.68;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
  max-width: 12ch;
  text-wrap: balance;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 0.1rem;
}

.store-card,
.social-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.012);
  backdrop-filter: blur(10px);
  border-radius: 1.8rem;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.store-card {
  padding: 0.95rem;
}

.store-card::after,
.social-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.14);
  filter: blur(18px);
}

.store-card::before,
.social-card::before,
.menu-card::before,
.gallery-card::before,
.wall-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 55%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: rotate(18deg) translateX(-140%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.store-card:hover::before,
.social-card:hover::before,
.menu-card:hover::before,
.gallery-card:hover::before,
.wall-card:hover::before {
  opacity: 1;
  animation: cardSweep 900ms ease;
}

.store-city {
  font-size: 0.74rem;
  color: var(--brand);
}

.store-card h3 {
  font-size: 1.9rem;
  margin-top: 0.65rem;
}

.store-body {
  padding: 0.7rem 0.65rem 0.1rem;
}

.store-media {
  min-height: 16rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 203, 46, 0.18);
  background-color: #1a1a1a;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.photo-essen {
  background-image:
    linear-gradient(180deg, rgba(20, 20, 20, 0.08), rgba(20, 20, 20, 0.4)),
    url("./assets/store-counter.jpeg");
}

.photo-bochum {
  background-image:
    linear-gradient(180deg, rgba(20, 20, 20, 0.08), rgba(20, 20, 20, 0.4)),
    url("./assets/team-tshirt.jpg");
}

.photo-ruhrpark {
  background-image:
    linear-gradient(180deg, rgba(20, 20, 20, 0.08), rgba(20, 20, 20, 0.4)),
    url("./assets/food-truck-1.jpg");
}

.store-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.store-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 700;
}

.map-frame {
  margin-top: 1rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 203, 46, 0.18);
  min-height: 16rem;
  background: rgba(255, 255, 255, 0.03);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.1) brightness(0.9);
}

.map-frame.map-disabled {
  position: relative;
  overflow: hidden;
}

.map-frame.map-disabled iframe {
  display: none;
}

.map-frame.map-disabled::after {
  content: "Google Maps wird erst nach deiner Zustimmung geladen.";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  color: var(--text);
  font-weight: 600;
  background: rgba(12, 12, 12, 0.52);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.2rem;
}

.media-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.2rem;
}

.media-copy,
.social-wall-reworked {
  padding: 1.6rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 203, 46, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.012);
  box-shadow: var(--shadow);
}

.media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
}

.media-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 203, 46, 0.2);
  background: rgba(255, 203, 46, 0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
}

.media-feature-card {
  position: relative;
  min-height: 19rem;
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 203, 46, 0.26);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.gallery-grid-reworked {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.gallery-card {
  position: relative;
  min-height: 19rem;
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 203, 46, 0.26);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 39rem;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.3rem;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.86));
}

.gallery-tag,
.wall-platform {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(255, 203, 46, 0.2), rgba(255, 138, 0, 0.12));
  border: 1px solid rgba(255, 138, 0, 0.22);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-overlay h3 {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  max-width: 15ch;
}

.social-wall {
  overflow: hidden;
}

.social-wall-reworked {
  margin-top: 1rem;
}

.social-wall-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-wall-head h3 {
  max-width: 18ch;
  font-size: 2rem;
}

.social-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.social-marquee::before,
.social-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 2;
  pointer-events: none;
}

.social-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.92), transparent);
}

.social-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(20, 20, 20, 0.92), transparent);
}

.social-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: wallScroll 34s linear infinite;
  padding-inline: 0.25rem;
}

.wall-card {
  width: clamp(16.5rem, 24vw, 19rem);
  min-height: 13.5rem;
  padding: 1.4rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 203, 46, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.012);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.wall-card h3 {
  margin-top: 1rem;
  font-size: 1.55rem;
}

.wall-card p {
  color: var(--muted);
  line-height: 1.7;
}

.wall-image {
  position: relative;
  min-height: 21rem;
  padding: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.wall-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.06), rgba(12, 12, 12, 0.5));
}

.wall-image .wall-platform {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.social-content-1 { background-image: url("./assets/social-content-1.png"); }
.social-content-2 { background-image: url("./assets/social-content-2.png"); }
.social-content-3 { background-image: url("./assets/social-content-3.png"); }
.social-content-4 { background-image: url("./assets/social-content-4.png"); }
.social-content-5 { background-image: url("./assets/social-content-5.png"); }
.social-content-6 { background-image: url("./assets/social-content-6.png"); }
.social-content-7 { background-image: url("./assets/social-content-7.png"); }
.social-content-8 { background-image: url("./assets/social-content-8.png"); }
.social-content-9 { background-image: url("./assets/social-content-9.png"); }
.social-content-10 { background-image: url("./assets/social-content-10.png"); }
.social-content-11 { background-image: url("./assets/social-content-11.png"); }
.social-content-12 { background-image: url("./assets/social-content-12.png"); }

.menus {
  position: relative;
}

.menu-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  padding: 1.5rem;
  margin-top: 0.2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 203, 46, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.01);
  box-shadow: var(--shadow);
  position: relative;
}

.menu-showcase::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(1.5rem - 1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 30%);
  pointer-events: none;
}

.menu-showcase-copy {
  max-width: 32rem;
}

.menu-showcase-copy h2 {
  max-width: 10ch;
}

.menu-showcase-copy p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 32ch;
}

.menu-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  min-height: 0;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 203, 46, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.014);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transform: none;
  transform-style: flat;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.menu-card:hover {
  border-color: rgba(255, 203, 46, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.016);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.menu-card::after {
  display: none;
}

.menu-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.12;
}

.menu-card p {
  margin: 0;
  max-width: 30ch;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.8rem;
}

.menu-link {
  margin-top: auto;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.8rem;
}

.social-links {
  display: grid;
  gap: 1rem;
}

.social-card {
  padding: 1.6rem;
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1.4rem;
  background: rgba(255, 203, 46, 0.1);
  border: 1px solid rgba(255, 203, 46, 0.18);
  color: var(--brand);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-icon svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.social-label {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.02;
  color: var(--text);
}

.instagram {
  background:
    linear-gradient(135deg, rgba(255, 203, 46, 0.18), rgba(255, 138, 0, 0.08)),
    rgba(255, 255, 255, 0.015);
}

.tiktok {
  background:
    linear-gradient(135deg, rgba(255, 203, 46, 0.18), rgba(255, 138, 0, 0.08)),
    rgba(255, 255, 255, 0.015);
}

.jobs-teaser {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 1.4rem 4.25rem;
}

.franchise-teaser {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 1.4rem 4.25rem;
}

.jobs-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.8rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 203, 46, 0.24);
  background:
    radial-gradient(circle at top left, rgba(255, 203, 46, 0.13), transparent 26%),
    linear-gradient(180deg, rgba(255, 203, 46, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.012);
  box-shadow: var(--shadow);
}

.jobs-card p,
.jobs-contact p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.jobs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.jobs-contact {
  margin-top: 1.4rem;
}

.franchise-card,
.franchise-highlight {
  background:
    radial-gradient(circle at top left, rgba(255, 203, 46, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 203, 46, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.012);
}

.franchise-hero .about-hero-copy {
  background:
    radial-gradient(circle at top left, rgba(255, 203, 46, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 203, 46, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015);
}

.footer {
  padding-top: 1rem;
  padding-bottom: 2.4rem;
  border-top: 1px solid rgba(255, 211, 61, 0.16);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--brand);
}

.menu-page main::before {
  inset: 4rem 0 auto;
}

.location-layout {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4.5rem;
}

.location-topbar {
  margin-bottom: 1rem;
}

.location-hero,
.location-info,
.location-gallery {
  padding-bottom: 3.4rem;
}

.location-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: center;
}

.location-visual {
  min-height: 29rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 203, 46, 0.26);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.location-panel {
  padding: 1.4rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 203, 46, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.012);
  box-shadow: var(--shadow);
}

.location-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.location-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1rem;
}

.about-layout {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4.5rem;
}

.about-hero,
.about-grid,
.about-columns {
  padding-bottom: 3.4rem;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.about-hero-copy,
.about-panel,
.about-highlight-card {
  padding: 1.7rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 203, 46, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015);
  box-shadow: var(--shadow);
}

.about-hero-copy .lead,
.about-panel p,
.about-highlight-card p {
  color: var(--muted);
  line-height: 1.75;
}

.about-fields-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.28), rgba(10, 10, 10, 0.74)),
    url("./assets/kartoffelfelder.jpg");
  background-position: center;
  background-size: cover;
}

.about-fields-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.08), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, transparent 0%, rgba(12, 12, 12, 0.35) 100%);
  pointer-events: none;
}

.about-fields-card > * {
  position: relative;
  z-index: 1;
}

.about-hero-actions,
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 1rem;
}

.about-panel-large {
  grid-row: span 2;
}

.about-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.about-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 203, 46, 0.2);
  background: rgba(255, 203, 46, 0.08);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-social-links {
  margin-top: 1.4rem;
}

.about-press {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  padding-bottom: 3.4rem;
}

.about-press-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.about-press-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.about-press-gallery .gallery-card {
  min-height: 16rem;
}

.about-henssler-stage {
  background-image:
    linear-gradient(180deg, rgba(12, 12, 12, 0.04), rgba(12, 12, 12, 0.45)),
    url("./assets/henssler-stage.jpg");
  background-position: center;
  background-size: cover;
}

.about-henssler-portrait {
  background-image:
    linear-gradient(180deg, rgba(12, 12, 12, 0.04), rgba(12, 12, 12, 0.45)),
    url("./assets/henssler-portrait.jpg");
  background-position: center;
  background-size: cover;
}

.menu-layout {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 203, 46, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.menu-hero {
  padding: 0.8rem 0 2.4rem;
}

.menu-sections {
  display: grid;
  gap: 1.2rem;
}

.menu-section {
  padding: 1.5rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 203, 46, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
  box-shadow: var(--shadow);
}

.menu-items {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.menu-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item:first-child {
  border-top: 0;
  padding-top: 0.2rem;
}

.menu-item h3 {
  font-size: 1.45rem;
}

.menu-item p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.price-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 203, 46, 0.1);
  border: 1px solid rgba(255, 203, 46, 0.22);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
}

.legal-card {
  padding: 1.7rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 203, 46, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: 1.65rem;
  max-width: none;
  margin-top: 1.8rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  width: min(34rem, calc(100% - 2rem));
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 203, 46, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 203, 46, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(18, 18, 18, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cookie-copy strong {
  display: block;
  margin-bottom: 0.4rem;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cookie-button {
  min-height: 3rem;
}

.cookie-manage {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 19;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 203, 46, 0.24);
  background: rgba(18, 18, 18, 0.92);
  color: var(--brand);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.cookie-manage:hover {
  color: var(--text);
  border-color: rgba(255, 203, 46, 0.34);
  background: rgba(255, 203, 46, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bob {
  0%,
  100% {
    transform: rotate(-5deg) translate3d(0, 0, 0) scale(1);
  }
  25% {
    transform: rotate(-2deg) translate3d(0.35rem, -0.8rem, 0) scale(1.015);
  }
  50% {
    transform: rotate(-4deg) translate3d(-0.25rem, -1.1rem, 0) scale(1.02);
  }
  75% {
    transform: rotate(-6deg) translate3d(-0.2rem, -0.45rem, 0) scale(1.01);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.5rem, -1.8rem, 0) scale(1.08);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.03);
  }
}

@keyframes logoSweep {
  0%,
  100% {
    transform: translateX(-140%) rotate(12deg);
    opacity: 0;
  }
  18% {
    opacity: 0.72;
  }
  45% {
    transform: translateX(130%) rotate(12deg);
    opacity: 0.24;
  }
  60% {
    opacity: 0;
  }
}

@keyframes wallScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes haloPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes cardSweep {
  0% {
    transform: rotate(18deg) translateX(-140%);
  }
  100% {
    transform: rotate(18deg) translateX(320%);
  }
}

@keyframes pulseTravel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(82px);
  }
}

@media (max-width: 920px) {
  .hero-content,
  .overview-main,
  .overview-links,
  .overview-side,
  .media-intro,
  .about-hero,
  .about-grid,
  .about-columns,
  .about-press,
  .about-press-gallery,
  .location-hero,
  .location-grid,
  .location-gallery-grid,
  .gallery-grid,
  .store-grid,
  .menu-showcase,
  .menu-grid,
  .jobs-card {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    justify-self: center;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .gallery-card-large {
    grid-row: auto;
    min-height: 22rem;
  }

  .gallery-grid-reworked {
    grid-template-columns: 1fr;
  }

  .wall-card {
    width: 17rem;
  }

  .overview,
  .media-hub,
  .social-wall,
  .menus {
    padding-inline: 1rem;
  }

}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    padding: 0.9rem;
  }

  .nav-links {
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-links a {
    min-height: 2.55rem;
    padding: 0 0.95rem;
  }

  .hero-content {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .logo-disc {
    border-width: 8px;
  }

  .logo-small {
    font-size: 3.7rem;
  }

  .logo-big {
    font-size: 6.2rem;
    line-height: 0.88;
  }

  .hero-note {
    flex-direction: column;
  }

  .menu-item {
    flex-direction: column;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .intro-pulse {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
