/* ═══════════════════════════════════════════
   MacCheeseKraftwerk — Main Site Styles
   Ultra-modern food brand experience
   ═══════════════════════════════════════════ */

:root {
  --bg: #080604;
  --bg-elevated: #12100c;
  --bg-card: rgba(255, 246, 232, 0.04);
  --surface: #1a1510;
  --gold: #f5b942;
  --gold-light: #ffd97a;
  --cheese: #e8a838;
  --cheese-deep: #c47a1a;
  --orange: #e85d04;
  --cream: #fff6e8;
  --cream-soft: #f0e4d0;
  --muted: rgba(255, 246, 232, 0.55);
  --muted-2: rgba(255, 246, 232, 0.35);
  --border: rgba(245, 185, 66, 0.15);
  --border-strong: rgba(245, 185, 66, 0.35);
  --success: #6bcb77;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
  --nav-h: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── Typography ── */
.display {
  font-family: var(--display);
  letter-spacing: 0.04em;
  line-height: 0.95;
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--cheese) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--cheese) 50%, var(--cheese-deep));
  color: #1a0e04;
  box-shadow: 0 8px 28px rgba(245, 185, 66, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(245, 185, 66, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(245, 185, 66, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 6, 4, 0.82);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--display);
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  letter-spacing: 0.04em;
  z-index: 101;
  white-space: nowrap;
}

.nav-logo .emoji { font-size: 1.4rem; }
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 450;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  background: rgba(255, 246, 232, 0.06);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

@media (min-width: 900px) {
  .nav-cta { display: inline-flex; }
}

@media (max-width: 899px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8, 6, 4, 0.96);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-family: var(--display);
    letter-spacing: 0.08em;
    padding: 0.75rem 1.5rem;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--nav-h) + 1rem) 0 5.5rem;
}

/* Centered hero layout */
.hero.hero-center {
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--nav-h) + 1.25rem) 1.25rem 4rem;
  text-align: center;
}

.hero-center-stack {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: min(640px, 100%);
  margin: 0.5rem auto 0;
  gap: 0;
}

/* Logo mittig im Hero — etwas weiter oben */
.hero-cheese-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin: 0 auto 2.75rem;
  opacity: 0;
  animation: cheeseMarkIn 0.9s 0.1s var(--ease) forwards;
}

@media (min-width: 768px) {
  .hero-cheese-mark {
    margin-bottom: 3.5rem;
  }
}

.cheese-mark-glow {
  position: absolute;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  top: 50%;
  left: 50%;
  margin-left: calc(min(280px, 70vw) / -2);
  margin-top: calc(min(280px, 70vw) / -2 - 12px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.5) 0%, rgba(232, 93, 4, 0.14) 45%, transparent 70%);
  animation: logoPulse 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.cheese-mark-piece {
  position: relative;
  z-index: 1;
  font-size: clamp(5.5rem, 16vw, 9rem);
  line-height: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(245, 185, 66, 0.35));
  animation: cheeseBounce 3s ease-in-out infinite;
  text-align: center;
}

.cheese-mark-label {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(1.35rem, 4.5vw, 2.1rem);
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--cream);
  line-height: 1.02;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.cheese-mark-label span {
  background: linear-gradient(105deg, var(--gold-light), var(--cheese), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes cheeseMarkIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cheeseBounce {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media .hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245, 185, 66, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(232, 93, 4, 0.25) 0%, transparent 50%),
    linear-gradient(160deg, #1a1008 0%, #0a0705 50%, #120c08 100%);
}

/* Animated cheese melt overlay in hero */
.hero-cheese-anim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.melt-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: meltFloat 10s ease-in-out infinite;
}

.melt-blob.b1 {
  width: 55vw; height: 55vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, #f5b942 0%, transparent 65%);
  top: 10%; right: -5%;
}

.melt-blob.b2 {
  width: 40vw; height: 40vw; max-width: 420px; max-height: 420px;
  background: radial-gradient(circle, #e85d04 0%, transparent 65%);
  bottom: 15%; left: 5%;
  animation-delay: -3s;
  opacity: 0.35;
}

.melt-blob.b3 {
  width: 30vw; height: 30vw; max-width: 300px; max-height: 300px;
  background: radial-gradient(circle, #ffd97a 0%, transparent 65%);
  top: 35%; left: 40%;
  animation-delay: -6s;
  opacity: 0.25;
}

@keyframes meltFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.12); }
}

/* Steam particles */
.steam {
  position: absolute;
  bottom: 30%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 246, 232, 0.5);
  box-shadow: 0 0 12px rgba(255, 246, 232, 0.4);
  animation: steamUp 4s ease-out infinite;
  opacity: 0;
}

.steam:nth-child(1) { left: 42%; animation-delay: 0s; }
.steam:nth-child(2) { left: 48%; animation-delay: 0.8s; }
.steam:nth-child(3) { left: 55%; animation-delay: 1.6s; }
.steam:nth-child(4) { left: 50%; animation-delay: 2.4s; width: 6px; height: 6px; }
.steam:nth-child(5) { left: 45%; animation-delay: 3.2s; }

@keyframes steamUp {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-180px) scale(2.5); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8,6,4,0.35) 0%, rgba(8,6,4,0.15) 35%, rgba(8,6,4,0.75) 70%, rgba(8,6,4,0.97) 100%),
    linear-gradient(90deg, rgba(8,6,4,0.7) 0%, transparent 55%);
}

.hero-center .hero-overlay {
  background:
    radial-gradient(ellipse 60% 55% at 50% 40%, rgba(8,6,4,0.2) 0%, rgba(8,6,4,0.65) 55%, rgba(8,6,4,0.95) 100%),
    linear-gradient(180deg, rgba(8,6,4,0.5) 0%, transparent 28%, rgba(8,6,4,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-inline: auto;
  padding-top: 0;
}

.hero-center .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
}

.hero-center .hero-sub {
  margin-inline: auto;
}

.hero-center .hero-actions {
  justify-content: center;
}

.hero-center .hero h1,
.hero-center h1 {
  max-width: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(245, 185, 66, 0.1);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.8rem, 12vw, 8rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s 0.1s var(--ease) both;
  max-width: 14ch;
}

.hero h1 .line2 {
  display: block;
  background: linear-gradient(105deg, var(--gold-light) 0%, var(--cheese) 40%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--muted);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted-2);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: cheeseMarkIn 0.8s 0.7s var(--ease) forwards;
  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Marquee ── */
.marquee-wrap {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 0 1.5rem;
  white-space: nowrap;
}

.marquee span em {
  font-style: normal;
  color: var(--gold);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ── Sections common ── */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-label {
  justify-content: center;
}

.section-header.center .section-label::before {
  display: none;
}

.section-header.center .section-lead {
  margin-inline: auto;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Feature / About teaser ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 35%, #ffd97a 0%, #e8a838 30%, #c47a1a 55%, #3d2010 100%);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.about-visual .cheese-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(6rem, 18vw, 10rem);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  animation: bounce 3s ease-in-out infinite;
}



@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.about-visual .shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  animation: shine 4s ease-in-out infinite;
}

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

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat {
  padding: 1.15rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Product cards ── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 28px 60px rgba(0,0,0,0.35), 0 0 40px rgba(245, 185, 66, 0.08);
}

.product-card .media {
  aspect-ratio: 1.15;
  position: relative;
  overflow: hidden;
}

.product-card .media-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .media-bg {
  transform: scale(1.08);
}

.product-card .media-emoji {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 4.5rem;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
  transition: transform 0.5s var(--ease);
  z-index: 1;
}

.product-card:hover .media-emoji {
  transform: scale(1.12) rotate(-4deg);
}

.product-card .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8, 6, 4, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--gold-light);
}

.product-card .body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-card .desc {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.product-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card .price {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card .tag {
  font-size: 0.75rem;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

/* Product color variants */
.bg-classic {
  background: radial-gradient(ellipse at 50% 40%, #ffd97a 0%, #e8a838 35%, #a85c12 70%, #3d2010 100%);
}
.bg-truffle {
  background: radial-gradient(ellipse at 50% 40%, #d4a574 0%, #8b6914 35%, #3d2b1f 70%, #1a120c 100%);
}
.bg-spicy {
  background: radial-gradient(ellipse at 50% 40%, #ffb347 0%, #e85d04 40%, #9b2226 75%, #2d0a0a 100%);
}
.bg-bbq {
  background: radial-gradient(ellipse at 50% 40%, #e8a838 0%, #bc6c25 40%, #5c3317 75%, #1a0e08 100%);
}
.bg-vegan {
  background: radial-gradient(ellipse at 50% 40%, #b8e986 0%, #6a994e 40%, #386641 75%, #0d1f12 100%);
}
.bg-loaded {
  background: radial-gradient(ellipse at 50% 40%, #ffd97a 0%, #f4a261 30%, #e76f51 60%, #6d2e1a 100%);
}

/* ── Timeline / Roadmap ── */
.timeline {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--cheese-deep), transparent);
}

@media (min-width: 640px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 2.75rem;
}

@media (min-width: 640px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 2.5rem;
    text-align: right;
  }
  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 2.5rem;
    text-align: left;
  }
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  box-shadow: 0 0 16px rgba(245, 185, 66, 0.5);
}

@media (min-width: 640px) {
  .timeline-item .timeline-dot {
    left: auto;
    right: -9px;
  }
  .timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -9px;
  }
}

.timeline-item .year {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ── CTA band ── */
.cta-band {
  position: relative;
  margin: 0 auto;
  width: min(var(--max), calc(100% - 2.5rem));
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 185, 66, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(232, 93, 4, 0.2) 0%, transparent 50%),
    var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.cta-band p {
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 1.75rem;
  font-weight: 300;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 50vw; height: 50vw;
  max-width: 500px; max-height: 500px;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
}

/* ── Story page ── */
.story-blocks {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.story-block {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .story-block {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .story-block.reverse .story-text { order: 2; }
  .story-block.reverse .story-visual { order: 1; }
}

.story-visual {
  aspect-ratio: 5/4;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.story-visual .emoji-xl {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 5rem;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.3));
}

.story-text h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.story-text p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.25s;
}

.info-card:hover { border-color: var(--border-strong); }

.info-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(245, 185, 66, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
}

.contact-form {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 500px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--cream);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.15);
}

.field select option { background: #1a1510; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--success);
}

.form-success.show { display: block; }
.contact-form.sent .fields { display: none; }

/* ── Footer ── */
.footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted-2);
}

.footer-bottom a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold); }

.footer-bottom-right {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.footer-bottom .footer-login {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.15rem 0.35rem;
  opacity: 1;
}

.footer-bottom .footer-login:hover {
  color: var(--gold);
}

.footer-bottom-right a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom-right a:hover {
  color: var(--gold);
}

/* ── Legal pages (Impressum / Datenschutz) ── */
.legal-wrap {
  max-width: 820px;
}

.legal-card {
  padding: 2rem 1.5rem 2.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .legal-card { padding: 2.5rem 2.25rem 3rem; }
}

.legal-card section {
  margin-bottom: 2rem;
}

.legal-card section:last-child {
  margin-bottom: 0;
}

.legal-card h2 {
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.legal-card h3 {
  font-size: 1.05rem;
  color: var(--cream);
  margin: 1.25rem 0 0.55rem;
  font-weight: 600;
}

.legal-card p,
.legal-card li {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-card ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}

.legal-card a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-card a:hover {
  color: var(--gold-light);
}

.legal-card strong {
  color: var(--cream-soft);
  font-weight: 600;
}

/* ── Admin login ── */
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245, 185, 66, 0.12), transparent),
    var(--bg);
}

.auth-shell { width: 100%; max-width: 420px; }

.auth-card {
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.auth-logo {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.auth-card h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  letter-spacing: 0.04em;
  margin: 0.35rem 0 0.5rem;
}

.auth-lead {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.auth-form .field { margin-bottom: 1rem; }

.auth-error {
  color: #ff8a7a;
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 80, 60, 0.1);
  border: 1px solid rgba(255, 100, 80, 0.25);
}

.auth-back {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.auth-back a:hover { color: var(--gold); }

/* ── Dashboard ── */
.dashboard-page { background: var(--bg); min-height: 100vh; }

.dash-top {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(12px);
}

.dash-top-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dash-top-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.dash-user {
  font-size: 0.85rem;
  color: var(--muted);
  margin-right: 0.35rem;
}

.dash-main { padding-top: 2rem; }

.dash-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.dash-header h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.dash-sub {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.dash-stats {
  display: flex;
  gap: 0.75rem;
}

.dash-stat {
  min-width: 96px;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
}

.dash-stat-unread {
  border-color: rgba(245, 185, 66, 0.35);
  background: rgba(245, 185, 66, 0.08);
}

.dash-stat-n {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  line-height: 1;
}

.dash-stat-l {
  font-size: 0.72rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-banner {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.dash-banner.error {
  background: rgba(255, 80, 60, 0.1);
  border: 1px solid rgba(255, 100, 80, 0.25);
  color: #ff8a7a;
}

.dash-empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  background: var(--bg-card);
}

.dash-empty .emoji-lg { font-size: 2.5rem; margin-bottom: 0.75rem; }
.dash-empty h2 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.dash-empty p { color: var(--muted); font-size: 0.92rem; }

.dash-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.dash-card.is-unread {
  border-color: rgba(245, 185, 66, 0.4);
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.07), rgba(255, 246, 232, 0.03));
}

.dash-card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dash-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--muted-2);
}

.dash-pill {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(245, 185, 66, 0.18);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dash-topic {
  color: var(--muted);
  font-weight: 500;
}

.dash-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.dash-name {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  color: var(--cream);
}

.dash-email {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.dash-email:hover { color: var(--gold-light); }

.dash-message {
  font-size: 0.95rem;
  color: var(--muted);
  white-space: pre-wrap;
  line-height: 1.65;
}

.dash-danger { color: #ff9a8a !important; }
.dash-danger:hover { border-color: rgba(255, 100, 80, 0.4) !important; }

/* ── Filter chips (products page) ── */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(245, 185, 66, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── Values / features ── */
.values-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ── Highlight bar ── */
.coming-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(245, 185, 66, 0.12), rgba(232, 93, 4, 0.08));
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.coming-banner p {
  font-size: 0.92rem;
  color: var(--muted);
}

.coming-banner strong { color: var(--gold-light); }

/* ── Smooth page load ── */
body.ready .reveal-hero {
  animation: fadeUp 0.9s var(--ease) both;
}
