/* ═══════════════════════════════════════════════════════════════
   PILZHOF DAHLER HEIDE – DESIGN SYSTEM
   Organic | Precise | Forest-Immersive | Premium
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Primary Colors */
  --deep-forest: #1C2B22;
  --forest-800: #2A4033;
  --forest-600: #3D6B4A;
  --earth-brown: #5A3E2B;
  --mushroom-beige: #E8E1D6;
  --soft-cream: #F5F1E8;
  --cream-warm: #EDE7D9;

  /* Accent */
  --gold: #C5B358;
  --gold-muted: rgba(184, 168, 92, 0.5);
  --gold-subtle: rgba(197, 179, 88, 0.15);

  /* Baba Shrooms Accent – Deep Purple for Premium Streetfood */
  --baba-primary: #5D2D6D;
  --baba-dark: #3E1E49;
  --baba-light: #7E4391;
  --baba-glow: rgba(93, 45, 109, 0.12);
  --baba-glow-strong: rgba(93, 45, 109, 0.25);

  /* Neutrals (forest-tinted) */
  --neutral-950: #0E1710;
  --neutral-900: #111A14;
  --neutral-800: #1E2A22;
  --neutral-700: #2C3830;
  --neutral-400: #7A8A7E;
  --neutral-300: #A0ADA3;
  --neutral-200: #C5CBBF;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 2rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28, 43, 34, 0.06), 0 1px 2px rgba(28, 43, 34, 0.04);
  --shadow-md: 0 4px 12px rgba(28, 43, 34, 0.08), 0 2px 4px rgba(28, 43, 34, 0.04);
  --shadow-lg: 0 12px 32px rgba(28, 43, 34, 0.12), 0 4px 8px rgba(28, 43, 34, 0.06);
  --shadow-xl: 0 20px 50px rgba(28, 43, 34, 0.18), 0 8px 16px rgba(28, 43, 34, 0.08);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-normal: 400ms var(--ease-out);
  --transition-slow: 700ms var(--ease-out);
}


/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--deep-forest);
  background-color: var(--soft-cream);
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* ─── GRAIN OVERLAY ─── */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}


/* ─── TYPOGRAPHY ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--deep-forest);
  letter-spacing: -0.01em;
}

.section-headline em {
  font-style: italic;
  color: var(--forest-600);
}


/* ─── SECTION CONTAINER ─── */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--deep-forest);
  color: var(--soft-cream);
  border: 1.5px solid transparent;
}

.btn-primary:hover {
  background: var(--forest-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--soft-cream);
  border: 1.5px solid rgba(245, 241, 232, 0.4);
}

.btn-secondary:hover {
  background: rgba(245, 241, 232, 0.1);
  border-color: var(--soft-cream);
  transform: translateY(-2px);
}

.btn-baba {
  background: var(--baba-primary);
  color: #fff;
  border: 1.5px solid transparent;
  font-size: 0.8125rem;
  padding: 0.75rem 1.5rem;
}

.btn-baba:hover {
  background: var(--baba-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--baba-glow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--deep-forest);
  border: 1.5px solid var(--neutral-200);
}

.btn-outline:hover {
  border-color: var(--deep-forest);
  background: var(--deep-forest);
  color: var(--soft-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-recipe {
  background: transparent;
  color: var(--earth-brown);
  border: 1.5px solid var(--earth-brown);
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  width: 100%;
}

.btn-recipe:hover {
  background: var(--earth-brown);
  color: var(--soft-cream);
}


/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background: rgba(28, 43, 34, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 1001;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--soft-cream);
  letter-spacing: 0.01em;
}

.logo-accent {
  font-weight: 400;
  opacity: 0.7;
}

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

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245, 241, 232, 0.7);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--soft-cream);
  background: rgba(245, 241, 232, 0.08);
}

.nav-link--cta {
  background: rgba(245, 241, 232, 0.1);
  border: 1px solid rgba(245, 241, 232, 0.2);
  color: var(--soft-cream);
  margin-left: 0.5rem;
}

.nav-link--cta:hover {
  background: rgba(245, 241, 232, 0.2);
  border-color: rgba(245, 241, 232, 0.4);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--soft-cream);
  border-radius: 2px;
  transition: all var(--transition-fast);
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 1 – HERO
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.12);
  }
}

.hero-mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(28, 43, 34, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(245, 241, 232, 0.08) 0%, transparent 50%);
  animation: mistMove 12s ease-in-out infinite alternate;
}

@keyframes mistMove {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.5;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(14, 23, 16, 0.4) 0%,
      rgba(28, 43, 34, 0.55) 40%,
      rgba(28, 43, 34, 0.75) 70%,
      rgba(28, 43, 34, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
  max-width: 900px;
}

.hero-tagline-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.tagline-pill {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--gold-muted);
  border-radius: 100px;
  background: rgba(197, 179, 88, 0.06);
}

.tagline-divider {
  color: rgba(245, 241, 232, 0.2);
  font-weight: 300;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 500;
  color: var(--soft-cream);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(245, 241, 232, 0.75);
  font-style: italic;
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245, 241, 232, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.scroll-text {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.4);
}


/* ─── FADE-UP ANIMATION ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 0.8s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ─── SCROLL REVEAL ANIMATION ─── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 2 – VISION & PHILOSOPHY
   ═══════════════════════════════════════════════════════════════ */
.vision-section {
  padding: var(--space-3xl) 0;
  background: var(--soft-cream);
  position: relative;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.vision-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-normal);
  border: 1px solid rgba(28, 43, 34, 0.06);
  position: relative;
}

.vision-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  opacity: 0;
  transition: all var(--transition-normal);
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vision-card:hover::after {
  opacity: 1;
  width: 60px;
  bottom: -1px;
}

.vision-card-icon {
  width: 48px;
  height: 48px;
  color: var(--forest-600);
  margin-bottom: var(--space-md);
}

.vision-card-icon svg {
  width: 100%;
  height: 100%;
}

.vision-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.vision-card-text {
  font-size: 0.9375rem;
  color: var(--neutral-400);
  line-height: 1.7;
}

/* Mycelium Lines */
.mycelium-lines {
  max-width: 100%;
  overflow: hidden;
}

.mycelium-svg {
  width: 100%;
  height: 60px;
}

.mycelium-path {
  fill: none;
  stroke: var(--gold-muted);
  stroke-width: 1;
  stroke-dasharray: 8 4;
  opacity: 0.4;
}

.mycelium-path--2 {
  stroke-dasharray: 4 8;
  opacity: 0.25;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 2.5 – FILM SHOWCASE (CINEMATIC)
   ═══════════════════════════════════════════════════════════════ */
.film-section {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--neutral-950);
  overflow: hidden;
}

/* Deep atmospheric background gradient */
.film-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(61, 107, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(197, 179, 88, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 60%, rgba(90, 62, 43, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* ─── Floating Particles (Spores) ─── */
.film-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle 14s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 8%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 15%;
  top: 70%;
  animation-delay: 2s;
  animation-duration: 16s;
}

.particle:nth-child(3) {
  left: 30%;
  top: 40%;
  animation-delay: 4s;
  animation-duration: 13s;
}

.particle:nth-child(4) {
  left: 55%;
  top: 15%;
  animation-delay: 1s;
  animation-duration: 15s;
}

.particle:nth-child(5) {
  left: 70%;
  top: 60%;
  animation-delay: 3s;
  animation-duration: 11s;
}

.particle:nth-child(6) {
  left: 85%;
  top: 30%;
  animation-delay: 5s;
  animation-duration: 14s;
}

.particle:nth-child(7) {
  left: 92%;
  top: 75%;
  animation-delay: 2.5s;
  animation-duration: 17s;
}

.particle:nth-child(8) {
  left: 45%;
  top: 85%;
  animation-delay: 6s;
  animation-duration: 12s;
}

@keyframes floatParticle {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }

  20% {
    opacity: 0.35;
    transform: translateY(-20px) scale(1);
  }

  50% {
    opacity: 0.15;
    transform: translateY(-50px) scale(0.8);
  }

  80% {
    opacity: 0.3;
    transform: translateY(-30px) scale(1.1);
  }
}

/* ─── Decorative Border Lines ─── */
.film-border-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 2;
}

.film-border-top {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.3) 30%, rgba(197, 179, 88, 0.5) 50%, rgba(197, 179, 88, 0.3) 70%, transparent);
}

.film-border-bottom {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.2) 30%, rgba(197, 179, 88, 0.35) 50%, rgba(197, 179, 88, 0.2) 70%, transparent);
}

/* ─── Film Container ─── */
.film-container {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ─── Editorial Header ─── */
.film-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.film-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
}

.film-eyebrow-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted));
}

.film-eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold-muted), transparent);
}

.film-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.film-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--soft-cream);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.film-headline-line {
  display: block;
}

.film-headline-italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.film-subtext {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(245, 241, 232, 0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Cinematic Video Frame ─── */
.film-stage {
  margin-bottom: var(--space-xl);
}

.film-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3px;
  background: linear-gradient(135deg,
      rgba(197, 179, 88, 0.25),
      rgba(197, 179, 88, 0.05) 30%,
      rgba(28, 43, 34, 0.3) 50%,
      rgba(197, 179, 88, 0.05) 70%,
      rgba(197, 179, 88, 0.25));
}

/* Corner accents */
.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 5;
  pointer-events: none;
}

.frame-corner::before,
.frame-corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
}

.frame-corner::before {
  width: 24px;
  height: 1.5px;
}

.frame-corner::after {
  width: 1.5px;
  height: 24px;
}

.frame-corner--tl {
  top: -1px;
  left: -1px;
}

.frame-corner--tl::before {
  top: 0;
  left: 0;
}

.frame-corner--tl::after {
  top: 0;
  left: 0;
}

.frame-corner--tr {
  top: -1px;
  right: -1px;
}

.frame-corner--tr::before {
  top: 0;
  right: 0;
}

.frame-corner--tr::after {
  top: 0;
  right: 0;
}

.frame-corner--bl {
  bottom: -1px;
  left: -1px;
}

.frame-corner--bl::before {
  bottom: 0;
  left: 0;
}

.frame-corner--bl::after {
  bottom: 0;
  left: 0;
}

.frame-corner--br {
  bottom: -1px;
  right: -1px;
}

.frame-corner--br::before {
  bottom: 0;
  right: 0;
}

.frame-corner--br::after {
  bottom: 0;
  right: 0;
}

/* Video Wrapper */
.film-video-wrapper {
  position: relative;
  border-radius: calc(var(--radius-lg) - 3px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--neutral-950);
}

.film-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Play Overlay */
.film-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(14, 23, 16, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
  transition: all var(--transition-normal);
  z-index: 4;
}

.film-play-overlay:hover {
  background: rgba(14, 23, 16, 0.35);
}

.film-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.film-play-btn {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.film-play-overlay:hover .film-play-btn {
  transform: scale(1.1);
}

.play-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.play-ring-bg {
  fill: none;
  stroke: rgba(245, 241, 232, 0.15);
  stroke-width: 1.5;
}

.play-ring-progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-dasharray: 352;
  stroke-dashoffset: 352;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 0.6s var(--ease-out);
}

.film-play-overlay:hover .play-ring-progress {
  stroke-dashoffset: 0;
}

.play-icon {
  width: 28px;
  height: 28px;
  color: var(--soft-cream);
  margin-left: 4px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.film-play-label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--soft-cream);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.film-duration {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 232, 0.4);
}

/* Ambient glow behind video */
.film-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 179, 88, 0.06), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  animation: ambientPulse 6s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.95);
  }

  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* ─── Film Quote ─── */
.film-quote {
  text-align: center;
  padding-top: var(--space-md);
}

.film-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(245, 241, 232, 0.55);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto var(--space-sm);
  letter-spacing: 0.01em;
}

.film-quote-cite {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
  font-style: normal;
}

/* Film section responsive */
@media (max-width: 768px) {
  .film-section {
    padding: var(--space-2xl) 0;
  }

  .film-play-btn {
    width: 70px;
    height: 70px;
  }

  .play-icon {
    width: 22px;
    height: 22px;
  }

  .frame-corner {
    width: 16px;
    height: 16px;
  }

  .frame-corner::before {
    width: 16px;
  }

  .frame-corner::after {
    height: 16px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 3 – SIGNATURE PRODUCT
   ═══════════════════════════════════════════════════════════════ */
.product-section {
  padding: var(--space-3xl) 0;
  background: var(--deep-forest);
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(61, 107, 74, 0.15), transparent 60%);
  pointer-events: none;
}

.product-section .section-label {
  color: var(--gold);
}

.product-section .section-headline {
  color: var(--soft-cream);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.product-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.8s var(--ease-out);
}

.product-image-frame:hover .product-img {
  transform: scale(1.03);
}

.product-image-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 60px rgba(28, 43, 34, 0.4);
  pointer-events: none;
}

.product-headline {
  margin-bottom: var(--space-lg);
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.product-detail-block {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.detail-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.detail-text {
  font-size: 0.9375rem;
  color: rgba(245, 241, 232, 0.7);
  line-height: 1.7;
}

.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.flavor-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid rgba(245, 241, 232, 0.12);
  color: rgba(245, 241, 232, 0.8);
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 4 – PRODUCTION PROCESS
   ═══════════════════════════════════════════════════════════════ */
.process-section {
  padding: var(--space-3xl) 0;
  background: var(--mushroom-beige);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
      transparent,
      var(--gold-muted) 10%,
      var(--gold-muted) 90%,
      transparent);
}

.timeline-step {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-xl);
  position: relative;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.step-marker {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--soft-cream);
  border: 2px solid var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}

.timeline-step:hover .step-marker {
  background: var(--deep-forest);
  border-color: var(--gold);
}

.timeline-step:hover .step-number {
  color: var(--gold);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-forest);
  transition: color var(--transition-normal);
}

.step-content {
  padding-top: 0.5rem;
  flex: 1;
}

.step-icon {
  width: 36px;
  height: 36px;
  color: var(--forest-600);
  margin-bottom: var(--space-xs);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--neutral-400);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 5 – BABA SHROOMS
   ═══════════════════════════════════════════════════════════════ */
.baba-section {
  padding: var(--space-3xl) 0;
  background: var(--neutral-900);
  position: relative;
  overflow: hidden;
}

.baba-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--baba-primary), transparent);
  opacity: 0.5;
}

.baba-label {
  color: var(--baba-primary);
}

.baba-headline {
  color: var(--soft-cream);
}

.baba-headline em {
  color: var(--baba-light);
}

.baba-intro {
  font-size: 1.0625rem;
  color: rgba(245, 241, 232, 0.6);
  margin-top: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.baba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* Center the last card when it's alone in a row (7 items) */
.baba-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}

.baba-card {
  background: var(--neutral-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.baba-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--baba-glow-strong);
}

.baba-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.baba-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.baba-card:hover .baba-card-image img {
  transform: scale(1.08);
}

.baba-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 26, 20, 0.9) 0%, transparent 50%);
}

.baba-card-content {
  padding: var(--space-md);
}

.baba-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--soft-cream);
  margin-bottom: 0.5rem;
}

.baba-card-desc {
  font-size: 0.875rem;
  color: rgba(245, 241, 232, 0.55);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 5.5 – MYZEL-WEGE (Decision Portal)
   ═══════════════════════════════════════════════════════════════ */
.myzel-section {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    linear-gradient(165deg,
      #111d16 0%,
      #172820 30%,
      #1c3028 55%,
      #172720 80%,
      #101c14 100%);
  overflow: hidden;
}

/* Background mycelium SVG */
.myzel-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.myzel-bg-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Radial depth glow */
.myzel-depth-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(61, 107, 74, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Container */
.myzel-container {
  position: relative;
  z-index: 1;
}

/* ─── Header ─── */
.myzel-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.myzel-overline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.myzel-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--soft-cream);
  letter-spacing: -0.015em;
  margin-bottom: var(--space-md);
}

.myzel-subtext {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.5);
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Portal Card Grid ─── */
.myzel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

/* ─── Individual Card ─── */
.myzel-card {
  display: flex;
  flex-direction: column;
  background: var(--soft-cream);
  border: 1px solid rgba(28, 43, 34, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.75rem, 3vw, 2.5rem);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    background-color 0.5s var(--ease-out);
  box-shadow: var(--shadow-sm);
  min-height: 380px;
  cursor: pointer;
}

.myzel-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(28, 43, 34, 0.14),
    0 4px 12px rgba(28, 43, 34, 0.06);
  background: #f8f4eb;
}

/* ─── Card Inner Elements ─── */
.myzel-card-micro {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.myzel-card-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--deep-forest);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
  transition: font-weight 0.4s var(--ease-out);
}

.myzel-card:hover .myzel-card-headline {
  font-weight: 600;
}

.myzel-card-desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--neutral-400);
  flex: 1;
}

.myzel-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--deep-forest);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(28, 43, 34, 0.08);
  transition: all 0.4s var(--ease-out);
}

.myzel-card-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease-out);
}

.myzel-card:hover .myzel-card-cta {
  color: var(--forest-600);
}

.myzel-card:hover .myzel-card-cta svg {
  transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════════════════
   AGORA MODULE – Weekly Presence
   Immersive Greek : dark marble, Cinzel, gold veins, warm glow
   ═══════════════════════════════════════════════════════════════ */

.agora-section {
  position: relative;
  padding: clamp(7rem, 14vw, 12rem) 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(93, 78, 40, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(61, 107, 74, 0.05) 0%, transparent 50%),
    linear-gradient(170deg,
      #15201a 0%,
      #1a2b22 20%,
      #1e3028 45%,
      #1a2920 70%,
      #121d16 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Marble vein texture overlay */
.agora-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 800 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,300 Q200,280 400,310 T800,290' stroke='rgba(197,179,88,0.04)' fill='none' stroke-width='0.8'/%3E%3Cpath d='M0,200 Q150,230 350,190 T800,220' stroke='rgba(197,179,88,0.03)' fill='none' stroke-width='0.5'/%3E%3Cpath d='M0,400 Q250,380 500,420 T800,390' stroke='rgba(245,241,232,0.02)' fill='none' stroke-width='0.6'/%3E%3Cpath d='M200,0 Q210,150 190,300 T220,600' stroke='rgba(197,179,88,0.025)' fill='none' stroke-width='0.5'/%3E%3Cpath d='M600,0 Q580,200 610,400 T590,600' stroke='rgba(197,179,88,0.02)' fill='none' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  pointer-events: none;
  opacity: 1;
  z-index: 1;
}

/* Warm ambient glow */
.agora-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(197, 179, 88, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.agora-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  text-align: center;
  z-index: 2;
}

/* ─── Decorative Meander Border ─── */
.agora-rule {
  width: 100%;
  max-width: 320px;
  height: 1px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(197, 179, 88, 0.15) 15%,
      rgba(197, 179, 88, 0.4) 35%,
      rgba(197, 179, 88, 0.5) 50%,
      rgba(197, 179, 88, 0.4) 65%,
      rgba(197, 179, 88, 0.15) 85%,
      transparent 100%);
}

/* Gold diamond accent at center of rule */
.agora-rule::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  color: rgba(197, 179, 88, 0.5);
  background: #1a2b22;
  padding: 0 0.75rem;
  line-height: 1;
}

/* ─── Headline — Cinzel Decorative ─── */
.agora-headline {
  font-family: 'Cinzel Decorative', 'Cinzel', var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 400;
  color: var(--soft-cream);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(197, 179, 88, 0.1);
}

/* Subtle underline accent */
.agora-headline::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto 3rem;
  opacity: 0.5;
}

/* ─── Schedule Grid ─── */
.agora-schedule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 3.5rem;
}

.agora-schedule-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(245, 241, 232, 0.03);
  border: 1px solid rgba(197, 179, 88, 0.1);
  border-radius: 4px;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.agora-schedule-block:hover {
  background: rgba(245, 241, 232, 0.06);
  border-color: rgba(197, 179, 88, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.agora-day {
  font-family: 'Cinzel', var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agora-location {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(245, 241, 232, 0.75);
  line-height: 1.5;
  font-style: italic;
}

.agora-time {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(245, 241, 232, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.agora-schedule-divider {
  width: 1px;
  align-self: stretch;
  margin: 1rem 0;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(197, 179, 88, 0.25) 20%,
      rgba(197, 179, 88, 0.3) 50%,
      rgba(197, 179, 88, 0.25) 80%,
      transparent 100%);
}

/* ─── Supporting Body ─── */
.agora-body {
  margin-bottom: 2rem;
}

.agora-body p {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(245, 241, 232, 0.6);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.agora-body p:last-child {
  margin-bottom: 0;
}

.agora-note {
  font-style: italic;
  color: rgba(197, 179, 88, 0.5) !important;
  font-size: 0.9375rem !important;
}

/* ─── Plato Quote — Decorative Large Marks ─── */
.agora-quote {
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
  padding: 2.5rem 2rem;
  border: none;
  position: relative;
}

/* Decorative opening quote mark */
.agora-quote::before {
  content: '❝';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: rgba(197, 179, 88, 0.15);
  line-height: 1;
  font-family: serif;
}

.agora-quote p {
  font-family: 'Cinzel', var(--font-serif);
  font-size: clamp(1.1875rem, 2.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--soft-cream);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.01em;
}

.agora-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  font-style: normal;
  color: rgba(197, 179, 88, 0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ─── CTA — Gold Border Portal ─── */
.agora-cta-wrap {
  margin-bottom: 3.5rem;
}

.agora-cta {
  display: inline-block;
  font-family: 'Cinzel', var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid rgba(197, 179, 88, 0.35);
  padding: 1.125rem 3rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  background: transparent;
  cursor: pointer;
}

/* Warm glow on hover */
.agora-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(197, 179, 88, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.agora-cta:hover::before {
  opacity: 1;
}

.agora-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 179, 88, 0.6);
  color: var(--soft-cream);
  box-shadow:
    0 4px 30px rgba(197, 179, 88, 0.08),
    0 1px 6px rgba(197, 179, 88, 0.06);
}

.agora-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.agora-cta:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

/* ─── Ceremonial Scroll Reveal ─── */
.agora-section .reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: var(--delay, 0s);
}

.agora-section .reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
  .agora-schedule {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .agora-schedule-divider {
    width: 100px;
    height: 1px;
    min-height: unset;
    margin: 0 auto;
    background: linear-gradient(90deg,
        transparent,
        rgba(197, 179, 88, 0.2),
        transparent);
  }

  .agora-schedule-block {
    padding: 1.5rem 1rem;
  }

  .agora-headline {
    margin-top: 2.5rem;
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .agora-quote {
    margin-bottom: 2.5rem;
    padding: 2rem 0.5rem;
  }

  .agora-cta-wrap {
    margin-bottom: 2.5rem;
  }

  .agora-cta {
    padding: 1rem 2rem;
    font-size: 0.75rem;
  }
}
/* ═══════════════════════════════════════════════════════════════
   SECTION 6 – REZEPTBUCH
   ═══════════════════════════════════════════════════════════════ */
.recipe-section {
  padding: var(--space-3xl) 0;
  background: var(--soft-cream);
}

.recipe-intro {
  font-size: 1.0625rem;
  color: var(--neutral-400);
  margin-top: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.7;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.recipe-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(28, 43, 34, 0.06);
  transition: all var(--transition-normal);
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.recipe-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.recipe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.recipe-card:hover .recipe-card-image img {
  transform: scale(1.06);
}

.recipe-time {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--soft-cream);
  background: rgba(28, 43, 34, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
}

.recipe-card-body {
  padding: var(--space-md);
}

.recipe-category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--earth-brown);
}

.recipe-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin: 0.5rem 0;
}

.recipe-card-desc {
  font-size: 0.875rem;
  color: var(--neutral-400);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.recipe-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: var(--space-md);
}

.ingredient {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  background: var(--gold-subtle);
  color: var(--earth-brown);
}

/* Recipe Expanded */
.recipe-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
  padding: 0;
}

.recipe-expanded.open {
  max-height: 400px;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(28, 43, 34, 0.08);
}

.recipe-steps {
  list-style: decimal;
  padding-left: 1.25rem;
}

.recipe-steps li {
  font-size: 0.875rem;
  color: var(--neutral-400);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.recipe-steps li::marker {
  color: var(--earth-brown);
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 7 – COMMUNITY & CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--space-3xl) 0;
  background: var(--cream-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.contact-option {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid rgba(28, 43, 34, 0.06);
}

.contact-option:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-option-icon {
  width: 48px;
  height: 48px;
  color: var(--forest-600);
  margin: 0 auto var(--space-md);
}

.contact-option-icon svg {
  width: 100%;
  height: 100%;
}

.contact-option-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
}

.contact-option-desc {
  font-size: 0.875rem;
  color: var(--neutral-400);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--deep-forest);
  padding: var(--space-xl) 0 var(--space-lg);
  color: rgba(245, 241, 232, 0.6);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--soft-cream);
  margin-bottom: var(--space-md);
  display: block;
}

.footer-statement {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer-link-list li {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-link-list a {
  transition: color var(--transition-fast);
}

.footer-link-list a:hover {
  color: var(--soft-cream);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 232, 0.15);
  transition: all var(--transition-fast);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: rgba(245, 241, 232, 0.1);
  border-color: rgba(245, 241, 232, 0.3);
  color: var(--soft-cream);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
}

.footer-copy {
  font-size: 0.8125rem;
}

.footer-eco {
  font-size: 0.8125rem;
  color: var(--gold-muted);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .product-img {
    height: 400px;
  }

  .baba-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
    --space-3xl: 5rem;
  }

  /* Mobile Navigation */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--deep-forest);
    padding: 5rem var(--space-lg) var(--space-lg);
    gap: 0.25rem;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
  }

  .nav-link--cta {
    margin-left: 0;
    margin-top: var(--space-sm);
    text-align: center;
  }

  /* Mobile Toggle Animation */
  .nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile Hero */
  .hero-headline {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .tagline-divider {
    display: none;
  }

  .hero-tagline-bar {
    gap: 0.5rem;
  }

  /* Mobile Grids */
  .vision-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .baba-grid {
    grid-template-columns: 1fr;
  }

  .myzel-grid {
    grid-template-columns: 1fr;
  }

  .myzel-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile Footer */
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Small Mobile: 480px */
@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .product-img {
    height: 300px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}