/* ==========================================================================
   MINDFUEL – styles.css
   Design-Basis: v02-Entwurf (warme Sand/Beige-Farbwelt)
   Erstellt: 2026-04-12 | Redesign auf v02: 2026-04-11
   Fonts: Inter (sans) + Playfair Display (serif), lokal als .woff2
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONT-FACE (lokal, keine Google Fonts)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-ext-300-normal.woff2") format("woff2"),
       url("../fonts/inter-latin-300-normal.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-ext-400-normal.woff2") format("woff2"),
       url("../fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-ext-500-normal.woff2") format("woff2"),
       url("../fonts/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-ext-600-normal.woff2") format("woff2"),
       url("../fonts/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-ext-700-normal.woff2") format("woff2"),
       url("../fonts/inter-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-ext-400-normal.woff2") format("woff2"),
       url("../fonts/playfair-display-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-ext-700-normal.woff2") format("woff2"),
       url("../fonts/playfair-display-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-ext-400-italic.woff2") format("woff2"),
       url("../fonts/playfair-display-latin-400-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}

/* --------------------------------------------------------------------------
   2. CSS CUSTOM PROPERTIES – v02 Farbwelt (warm Sand/Beige)
   -------------------------------------------------------------------------- */
:root {
  --sand:        #F5F0EB;
  --sand-dark:   #E8DFD5;
  --warm:        #D4C4B0;
  --text:        #2C2420;
  --text-light:  #6B5D52;
  --accent:      #8B6F5C;
  --accent-hover:#725A49;
  --white:       #FEFCFA;
  --rose:        #C4917B;
}

/* --------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--sand);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

/* --------------------------------------------------------------------------
   4. NAV (v02-Stil: transparent → glassmorphism on scroll)
   -------------------------------------------------------------------------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(245, 240, 235, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 119px !important;
  width: auto;
  max-height: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

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

.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--sand);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  z-index: 110;
}

.mobile-menu-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

/* --------------------------------------------------------------------------
   5. BUTTONS (v02-Stil: rund, warm)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,111,92,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--warm);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(139,111,92,0.05);
  transform: translateY(-2px);
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-anfrage {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   6. SECTIONS BASE (v02-Stil)
   -------------------------------------------------------------------------- */
section {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--text);
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 640px;
}

/* --------------------------------------------------------------------------
   7. DIVIDER
   -------------------------------------------------------------------------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 600px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: var(--warm);
}

.divider-icon {
  width: 168px;
  height: 168px;
  flex-shrink: 0;
  filter: invert(52%) sepia(15%) saturate(400%) hue-rotate(5deg) brightness(95%);
  animation: butterfly-pulse 3s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes butterfly-pulse {
  0%   { transform: scale(1);    }
  15%  { transform: scale(0.88); }
  30%  { transform: scale(1);    }
  45%  { transform: scale(0.90); }
  60%  { transform: scale(1);    }
  100% { transform: scale(1);    }
}

.divider-section { padding: 2rem; text-align: center; }

/* --------------------------------------------------------------------------
   8. HERO (v02: 2-Spalten-Grid, Bild links, Text rechts)
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 9rem 4rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-image img { width: 100%; height: auto; display: block; }

.hero-text { padding: 2rem 0; }

.hero-claim {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-claim em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   9. MISSION / ÜBER UNS (v02: 2-Spalten, Cards rechts)
   -------------------------------------------------------------------------- */
.mission-grid {
  max-width: 720px;
}

.mission-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* --------------------------------------------------------------------------
   10. TEAM (v02-Stil: Cards + Fotos)
   -------------------------------------------------------------------------- */
.team-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.team-card h4 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Team Grid (Fotos) */
.team-group-photo {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.team-group-photo img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-group-photo:hover img {
  transform: scale(1.03);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member { text-align: center; }

.team-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.team-portrait {
  position: relative;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-portrait:hover img {
  transform: scale(1.04);
}

/* Team Info Overlay – erscheint bei Hover */
.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem;
  background: linear-gradient(0deg, rgba(44,36,32,0.85) 0%, rgba(44,36,32,0.4) 60%, transparent 100%);
  color: var(--white);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  border-radius: 0 0 16px 16px;
}

.team-portrait:hover .team-overlay {
  transform: translateY(0);
  opacity: 1;
}

.team-overlay h4 {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--white);
}

.team-overlay .role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-overlay .role-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   11. WORKSHOPS (v02: weißer Kasten, 3-Spalten Features)
   -------------------------------------------------------------------------- */
.workshop-bg {
  background: var(--white);
  border-radius: 32px;
  padding: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.workshop-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature { text-align: center; padding: 2rem 1.5rem; }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.feature h4 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.feature p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* Workshop Timeline (ergänzt) */
.workshop-timeline { margin-top: 3rem; }

.ws-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.ws-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ws-step h4 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.ws-step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* --------------------------------------------------------------------------
   12. WARNZEICHEN & HILFE (v02-Stil)
   -------------------------------------------------------------------------- */
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   HAUPTKONTAKT-CARD (hervorgehoben)
   -------------------------------------------------------------------------- */
.main-contact-card {
  display: block;
  margin: 2.5rem 0 0;
  padding: 2rem 2.5rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(139,111,92,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.main-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139,111,92,0.4);
}

.main-contact-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.main-contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.main-contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.main-contact-card h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.main-contact-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.6rem;
}

.main-contact-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

.warning-signs {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
}

.warning-signs h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.sign-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.help-contacts { display: flex; flex-direction: column; gap: 1.5rem; }

.help-contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--rose);
  transition: transform 0.3s;
}

.help-contact-card:hover { transform: translateX(4px); }
.help-contact-card h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.help-contact-card p { font-size: 0.85rem; color: var(--text-light); }
.help-contact-card a { color: var(--accent); text-decoration: none; font-weight: 500; }
.help-contact-card a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   13. NETZWERK / WEBLINKS (v02 erweitert)
   -------------------------------------------------------------------------- */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.link-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sand-dark);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.link-card-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.link-card-text p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* --------------------------------------------------------------------------
   14. KOCHBUCH (v02 erweitert)
   -------------------------------------------------------------------------- */
.cookbook-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cookbook-page {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cookbook-page:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.cookbook-page img { width: 100%; height: 100%; object-fit: cover; }
.cookbook-placeholder { color: var(--text-light); font-size: 0.85rem; text-align: center; }

/* --------------------------------------------------------------------------
   15. DOWNLOADS
   -------------------------------------------------------------------------- */
.download-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.download-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.8rem;
  background: var(--white);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--accent);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: all 0.3s;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,111,92,0.15);
}

/* --------------------------------------------------------------------------
   16. UNTERSTÜTZEN (v02: weißer Kasten, 3 Cards)
   -------------------------------------------------------------------------- */
.support-section {
  text-align: center;
  background: var(--white);
  border-radius: 32px;
  padding: 5rem 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.support-card {
  background: var(--sand);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.support-card h4 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.support-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.price {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.price-sub { font-size: 0.8rem; color: var(--text-light); }

/* --------------------------------------------------------------------------
   17. NEWSLETTER (v02-Stil)
   -------------------------------------------------------------------------- */
.newsletter-box {
  background: var(--white);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.newsletter-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.newsletter-box > p {
  color: var(--text-light);
  margin: 0 0 1.5rem;
  max-width: 48ch;
  margin-inline: auto;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid var(--warm);
  background: var(--sand);
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(139,111,92,0.1);
}

.newsletter-form button { border: none; }

.newsletter-consent {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
}

.newsletter-consent a { color: var(--accent); text-decoration: underline; }

/* --------------------------------------------------------------------------
   18. COOKIE CONSENT (v02-Stil)
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(254, 252, 250, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--sand-dark);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
  padding: 1.25rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner.is-hidden  { transform: translateY(100%); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.cookie-text a { color: var(--accent); text-decoration: underline; }

.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

.cookie-actions .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   19. FOOTER (v02-Stil: zentriert, clean)
   -------------------------------------------------------------------------- */
footer {
  padding: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.footer-contact { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.5rem; }
.footer-contact a { color: var(--accent); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.3s;
}

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

.footer-legal { margin-top: 2rem; font-size: 0.75rem; color: var(--warm); }

.footer-iban {
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--sand-dark);
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   20. LEGAL PAGES (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */
.legal-hero {
  padding: 7rem 2rem 3rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.legal-content {
  padding: 0 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.legal-meta {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  color: var(--text-light);
  opacity: 0.7;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.legal-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.legal-card h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-card p:last-child { margin-bottom: 0; }
.legal-card a { color: var(--accent); text-decoration: underline; }

.placeholder { color: var(--rose); font-weight: 400; }

/* --------------------------------------------------------------------------
   21. ANIMATION HELPERS
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(40px); }

/* --------------------------------------------------------------------------
   BILD-SPLINE: Dekorativer Innenrand + farbiger Schatten
   -------------------------------------------------------------------------- */
.hero-image,
.team-group-photo,
.team-portrait {
  position: relative;
}

.hero-image::after,
.team-group-photo::after,
.team-portrait::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.hero-image {
  box-shadow: 0 20px 60px rgba(196,145,123,0.25), 0 8px 24px rgba(139,111,92,0.15);
}

.team-group-photo {
  box-shadow: 0 12px 40px rgba(196,145,123,0.2), 0 6px 20px rgba(139,111,92,0.1);
}

.team-portrait {
  box-shadow: 0 8px 28px rgba(196,145,123,0.22), 0 4px 12px rgba(139,111,92,0.12);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.team-portrait:hover {
  box-shadow: 0 12px 36px rgba(196,145,123,0.35), 0 6px 18px rgba(139,111,92,0.2);
}

/* --------------------------------------------------------------------------
   KONTAKT-BLOCK
   -------------------------------------------------------------------------- */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 2rem;
  margin: 2rem auto 2.5rem;
  max-width: 960px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover { text-decoration: underline; }

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   SUBSECTION TITLE
   -------------------------------------------------------------------------- */
.subsection-title {
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   PDF DOWNLOAD PREVIEW
   -------------------------------------------------------------------------- */
.download-preview-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
}

.download-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139,111,92,0.15);
}

.pdf-preview {
  position: relative;
  width: 100px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sand-dark);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pdf-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdf-icon-overlay {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.download-info h4 {
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.download-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.download-link-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   KOCHBUCH SLIDER
   -------------------------------------------------------------------------- */
.cookbook-slider {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  overflow: hidden;
}

.cookbook-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  touch-action: pan-y;
}

.cookbook-spread {
  flex: 0 0 100%;
  aspect-ratio: 2 / 1;
  background: var(--sand-dark);
  border-radius: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.cookbook-spread:hover {
  transform: scale(1.02);
}

.cookbook-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(254,252,250,0.9);
  border: 1px solid var(--warm);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}

.cookbook-nav:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.cookbook-prev { left: 0.5rem; }
.cookbook-next { right: 0.5rem; }

.cookbook-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cookbook-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.cookbook-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Kochbuch Lightbox */
.cookbook-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(44,36,32,0.9);
  backdrop-filter: blur(8px);
  place-items: center;
}

.cookbook-lightbox.active {
  display: grid;
}

.cookbook-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.cookbook-lightbox-close:hover { transform: rotate(90deg); }

.cookbook-lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand-dark);
  aspect-ratio: 2 / 1;
  display: grid;
  place-items: center;
  min-width: 60vw;
}

.cookbook-lightbox-content .cookbook-placeholder {
  color: var(--text-light);
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   GRADIENT REVEAL (45° Transparenzverlauf beim Scrolling)
   -------------------------------------------------------------------------- */
.gradient-reveal {
  --gr-progress: 0;
  -webkit-mask-image: linear-gradient(
    45deg,
    rgba(0,0,0,var(--gr-progress)) 0%,
    rgba(0,0,0,calc(var(--gr-progress) * 0.6)) 40%,
    rgba(0,0,0,calc(var(--gr-progress) * 0.2)) 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    45deg,
    rgba(0,0,0,var(--gr-progress)) 0%,
    rgba(0,0,0,calc(var(--gr-progress) * 0.6)) 40%,
    rgba(0,0,0,calc(var(--gr-progress) * 0.2)) 70%,
    transparent 100%
  );
}

.gradient-reveal.is-revealed {
  -webkit-mask-image: none;
  mask-image: none;
}

/* --------------------------------------------------------------------------
   FOOTER LOGO IMAGE
   -------------------------------------------------------------------------- */
.footer-logo-img {
  height: 132px;
  width: auto;
  margin: 0 auto 1.5rem;
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 6.5rem 2rem 3rem;
    gap: 2rem;
    min-height: auto;
  }
  .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .btn-group { justify-content: center; }

  section { padding: 4rem 2rem; }

  .mission-grid,
  .help-grid { grid-template-columns: 1fr; }

  .workshop-features,
  .support-cards { grid-template-columns: 1fr; }

  .workshop-bg,
  .support-section { margin: 0 1rem; padding: 3rem 2rem; }

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

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

  .nav-logo-img { height: 95px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

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

  /* Team: Overlay immer sichtbar auf Touch-Geräten */
  .team-overlay {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(0deg, rgba(44,36,32,0.8) 0%, rgba(44,36,32,0.3) 70%, transparent 100%);
  }

  .contact-block {
    gap: 0.6rem 1.5rem;
  }

  .main-contact-inner { flex-direction: column; gap: 1rem; }
}

@media (max-width: 600px) {
  .hero { padding: 6rem 1.5rem 2rem; }
  section { padding: 3rem 1.5rem; }
  .workshop-bg, .support-section { margin: 0 0.5rem; padding: 2rem 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
  .team-grid { gap: 1rem; }
  .contact-block {
    flex-direction: column;
    gap: 0.5rem;
  }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; flex-direction: column; }
  .cookie-actions .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
