/* =============================================
   TasteTheTradition / Sofra — Catering & Events
   ============================================= */

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

:root {
  --cream:       #fdf4e8;
  --cream-dark:  #f0e0c4;
  --maroon:      #2e6b5e;
  --maroon-dark: #1e4a40;
  --terra:       #c49040;
  --olive:       #3a8a72;
  --olive-dark:  #2a6b5a;
  --gold:        #c9a030;
  --brown:       #1e3835;
  --text:        #3a3228;
  --text-light:  #8a7a62;
  --white:       #ffffff;

  --font-heading: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  --font-body:    Georgia, 'Times New Roman', serif;
  --font-ui:      -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(44,36,24,.08);
  --shadow-md: 0 6px 24px rgba(44,36,24,.12);
  --shadow-lg: 0 12px 48px rgba(44,36,24,.16);
  --radius:    12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--maroon);
  text-align: center;
  margin-bottom: .4rem;
}

.section-subtitle {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 1.5px;
  background: var(--terra);
  opacity: .5;
}
.section-divider span {
  font-size: 1.1rem;
  color: var(--terra);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,244,232,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid rgba(30,56,53,.12);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 10px;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--maroon);
  line-height: 1.2;
}
.nav-logo-text small {
  display: block;
  font-size: .7rem;
  font-weight: normal;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .5px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--maroon); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--maroon);
  color: var(--white);
}
.btn-primary:hover { background: var(--maroon-dark); }

.btn-secondary {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}
.btn-secondary:hover { background: var(--maroon); color: var(--white); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  font-size: 1rem;
  padding: 14px 32px;
}
.btn-whatsapp:hover { background: #1da851; }

.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--maroon);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 72px;
  background: linear-gradient(160deg, #f9ead4 0%, #fdf4e8 45%, #f5e8d0 75%, #f0dfc0 100%);
  position: relative;
  overflow: hidden;
}

/* Mesh gradient blobs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 30%, rgba(184,136,58,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 70%, rgba(30,56,53,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 10%, rgba(201,160,48,.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Grain texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.18'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  opacity: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 120px 0 60px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,56,53,.08);
  color: var(--maroon);
  border: 1px solid rgba(30,56,53,.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.2;
  color: var(--maroon);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--terra);
}

.hero-text {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}
.hero-logo-ring img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow:
    0 8px 40px rgba(44,36,24,.22),
    0 0 0 1px rgba(201,160,48,.25),
    0 24px 80px rgba(44,36,24,.12);
}

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

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--maroon);
  color: var(--white);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .5px;
}
.trust-item .icon {
  font-size: 1.3rem;
}
.trust-item-halal {
  background: rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 6px 18px;
  font-weight: 700;
  letter-spacing: 1px;
}
.halal-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

/* =============================================
   SERVICES / ANLÄSSE
   ============================================= */
.services {
  padding: 96px 0;
  background: var(--cream);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1.5px solid rgba(30,56,53,.08);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,56,53,.2);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: .6rem;
}
.service-card p {
  font-family: var(--font-ui);
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   STORY / ÜBER UNS
   ============================================= */
.story {
  padding: 96px 0;
  background: linear-gradient(180deg, #f5e8d0 0%, var(--cream) 100%);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}
.story-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-dark), #e8d4b0);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(30,56,53,.25);
  gap: 12px;
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: .9rem;
  text-align: center;
  padding: 24px;
}
.story-photo-placeholder .placeholder-icon { font-size: 3rem; opacity: .4; }
.story-photo-placeholder .placeholder-note {
  font-size: .8rem;
  opacity: .6;
  font-style: italic;
}

.story-tag {
  display: inline-block;
  background: rgba(42,85,80,.1);
  color: var(--olive-dark);
  border: 1px solid rgba(42,85,80,.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--maroon);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.story-text p {
  font-family: var(--font-ui);
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.story-quote {
  margin: 2rem 0;
  padding: 20px 28px;
  border-left: 4px solid var(--terra);
  background: rgba(30,56,53,.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--maroon);
  line-height: 1.6;
}

.story-values {
  display: flex;
  gap: 24px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.story-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 600;
  color: var(--olive-dark);
}
.story-value::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(42,85,80,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--olive);
  flex-shrink: 0;
}

/* =============================================
   SPEISEKARTE
   ============================================= */
.menu {
  padding: 96px 0;
  background: var(--cream);
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(30,56,53,.2);
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(30,56,53,.07);
  transition: transform .3s, box-shadow .3s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8d4b0, #d4bc90);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.menu-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.badge {
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-hausrezept { background: var(--maroon); color: var(--white); }
.badge-frisch     { background: var(--olive);  color: var(--white); }
.badge-beliebt    { background: var(--terra);  color: var(--white); }
.badge-vegi       { background: #4caf50;        color: var(--white); }

.menu-card-body {
  padding: 20px;
}
.menu-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--maroon);
  margin-bottom: .4rem;
}
.menu-card-body p {
  font-family: var(--font-ui);
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.menu-usp-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}
.menu-usp-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.menu-usp-banner strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .3rem;
}
.menu-usp-banner span {
  font-family: var(--font-ui);
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}

.menu-cta {
  text-align: center;
  margin-top: 3rem;
}
.menu-cta p {
  font-family: var(--font-ui);
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* =============================================
   PAKETE
   ============================================= */
.pakete {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #f0e0c4 100%);
}

.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.paket-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(30,56,53,.07);
  box-shadow: 0 2px 12px rgba(44,36,24,.07), 0 1px 3px rgba(44,36,24,.05);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s ease;
  position: relative;
}
.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,36,24,.12), 0 4px 12px rgba(44,36,24,.06);
}
.paket-card.featured {
  border-color: var(--maroon);
  box-shadow: var(--shadow-md);
  transform: scale(1.04);
}
.paket-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.paket-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--maroon);
  color: var(--white);
  border-radius: 50px;
  padding: 4px 18px;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.paket-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--maroon);
  margin-bottom: .2rem;
}
.paket-persons {
  font-family: var(--font-ui);
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(30,56,53,.1);
}

.paket-includes {
  list-style: none;
  margin-bottom: 1.8rem;
}
.paket-includes li {
  font-family: var(--font-ui);
  font-size: .9rem;
  color: var(--text);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.paket-includes li::before {
  content: '✦';
  color: var(--terra);
  font-size: .7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.paket-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.paket-card .btn {
  width: 100%;
  justify-content: center;
}
.paket-card.featured .btn-primary {
  background: var(--maroon);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 80px 0;
  background: var(--maroon);
  color: var(--white);
}
.testimonials .section-header {
  display: none;
}

.testimonials .section-title { color: var(--cream); }
.testimonials .section-subtitle { color: rgba(255,255,255,.65); }
.testimonials .section-divider::before,
.testimonials .section-divider::after { background: var(--cream-dark); }
.testimonials .section-divider span { color: var(--cream-dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: default;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
  color: rgba(255,255,255,.06);
  pointer-events: none;
  transition: color .35s ease, transform .35s ease;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(201,160,48,.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25), 0 0 0 1px rgba(201,160,48,.2);
}
.testimonial-card:hover::before {
  color: rgba(201,160,48,.18);
  transform: scale(1.08);
}

.testimonial-stars {
  color: #ffd700;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  transition: text-shadow .35s ease;
}
.testimonial-card:hover .testimonial-stars {
  text-shadow: 0 0 12px rgba(255,215,0,.5);
}
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.4rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .92rem;
  color: var(--white);
}
.testimonial-event {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 96px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1.5px solid rgba(30,56,53,.1);
}
.faq-item:first-child { border-top: 1.5px solid rgba(30,56,53,.1); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--maroon);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--terra); }
.faq-question .faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--terra);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  font-family: var(--font-ui);
  font-size: .97rem;
  color: var(--text-light);
  line-height: 1.8;
  padding-bottom: 20px;
}

/* =============================================
   KONTAKT
   ============================================= */
.contact {
  padding: 96px 0;
  background: linear-gradient(135deg, #f0e0c4 0%, var(--cream) 100%);
}

.contact-intro {
  text-align: center;
  margin-bottom: 56px;
}
.contact-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--maroon);
  margin-bottom: .8rem;
}
.contact-intro p {
  font-family: var(--font-ui);
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 1.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: 1.4rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.2rem;
}
.contact-detail-icon {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-detail-text {
  font-family: var(--font-ui);
  font-size: .95rem;
}
.contact-detail-text strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-detail-text span {
  color: var(--text-light);
}

.contact-wa-block {
  margin-top: 2rem;
  padding: 24px;
  background: #f0faf4;
  border-radius: var(--radius);
  border: 1.5px solid rgba(37,211,102,.25);
  text-align: center;
}
.contact-wa-block p {
  font-family: var(--font-ui);
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(30,56,53,.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(30,56,53,.15);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-ui);
  font-size: .95rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(30,56,53,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--font-heading);
  color: var(--maroon);
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.form-success p {
  font-family: var(--font-ui);
  color: var(--text-light);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,.75);
  padding: 48px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 72px;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-family: var(--font-ui);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 260px;
  color: rgba(255,255,255,.6);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: .5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: .6rem;
  font-family: var(--font-ui);
  font-size: .88rem;
}
.footer-col ul li a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .2s;
}
.social-link:hover { background: rgba(255,255,255,.2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* =============================================
   SECTION HEADER (unified)
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  background: rgba(42,85,80,.1);
  color: var(--olive-dark);
  border: 1px solid rgba(42,85,80,.25);
  border-radius: 50px;
  padding: 4px 16px;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--maroon);
  margin-bottom: .5rem;
}
.section-sub {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* hero micro text */
.hero-micro {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: .82rem;
  color: var(--text-light);
  opacity: .8;
}

/* =============================================
   OCCASIONS
   ============================================= */
.occasions {
  padding: 96px 0;
  background: var(--cream);
}
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.occasion-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(30,56,53,.055);
  box-shadow: 0 2px 12px rgba(44,36,24,.07), 0 1px 3px rgba(44,36,24,.05);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s ease;
}
.occasion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,36,24,.12), 0 4px 12px rgba(44,36,24,.06);
}
.occasion-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}
.occasion-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--maroon);
  margin-bottom: .6rem;
}
.occasion-card p {
  font-family: var(--font-ui);
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   STORY — updated elements
   ============================================= */
.story-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-dark), #e8d4b0);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(30,56,53,.25);
  gap: 12px;
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: .9rem;
  text-align: center;
  padding: 24px;
}
.story-img-placeholder span { font-size: 3rem; opacity: .5; }
.story-img-placeholder p { font-size: .82rem; opacity: .65; font-style: italic; }
.story-badge-wrap {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.story-badge {
  flex: 1;
  background: var(--maroon);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.story-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
}
.story-badge span {
  font-family: var(--font-ui);
  font-size: .75rem;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.story-facts {
  list-style: none;
  margin-top: 1.5rem;
}
.story-facts li {
  font-family: var(--font-ui);
  font-size: .93rem;
  color: var(--olive-dark);
  padding: 4px 0;
  font-weight: 500;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process {
  padding: 96px 0;
  background: linear-gradient(180deg, #f5e8d0 0%, var(--cream) 100%);
}
.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}
.process-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 16px;
}
.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: var(--shadow-md);
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: .5rem;
}
.process-step p {
  font-family: var(--font-ui);
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}
.process-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--terra));
  margin-top: 28px;
  opacity: .4;
}
.process-cta {
  text-align: center;
}

/* =============================================
   SPEISEKARTE (new section wrapper)
   ============================================= */
.speisekarte {
  padding: 96px 0;
  background: var(--cream);
}
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.menu-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: .5rem;
}
.menu-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--maroon);
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  box-shadow: 0 2px 12px rgba(44,36,24,.07), 0 1px 3px rgba(44,36,24,.05);
  border: 1px solid rgba(30,56,53,.055);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s ease;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(44,36,24,.13), 0 4px 12px rgba(44,36,24,.07);
}
.menu-card p {
  font-family: var(--font-ui);
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: .8rem;
}
.menu-card-footer {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: .6rem;
}
.badge-veg   { background: #4caf50; color: #fff; padding: 3px 10px; border-radius: 50px; font-family: var(--font-ui); font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; flex-shrink: 0; }
.badge-vegan { background: #2e7d32; color: #fff; padding: 3px 10px; border-radius: 50px; font-family: var(--font-ui); font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; flex-shrink: 0; }
.badge-halal { background: #1a7a2e; color: #fff; padding: 3px 10px; border-radius: 50px; font-family: var(--font-ui); font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; flex-shrink: 0; }
.badge-small { background: rgba(30,56,53,.1); color: var(--maroon); padding: 2px 9px; border-radius: 50px; font-family: var(--font-ui); font-size: .7rem; font-weight: 600; }
.badge-hot   { background: var(--terra); color: #fff; }

/* Menu card photo area */
.menu-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #ede0c8, #ddd0b0);
  overflow: hidden;
  position: relative;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-card-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: .4;
  color: var(--text-light);
}
.menu-card-body {
  padding: 18px 20px 16px;
}
.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-ui);
  font-size: .93rem;
  color: var(--text-light);
}
.menu-note a {
  color: var(--maroon);
  font-weight: 600;
  text-decoration: underline;
}

/* Menu card placeholder images (no photo yet) */
.menu-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #ede0c8 0%, #ddd0b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  opacity: .5;
  color: var(--text-light);
}
.menu-card-img-candy {
  background: linear-gradient(135deg, #f5e6d0 0%, #ecdbc0 100%);
  aspect-ratio: 3/2;
}

/* Wide cards for Candybar grouped items */
.menu-card-wide {
  grid-column: span 2;
}
@media (max-width: 700px) {
  .menu-card-wide { grid-column: span 1; }
}

/* List inside menu cards (for grouped Candybar items) */
.menu-card-list {
  list-style: none;
  margin-top: .5rem;
  padding: 0;
}
.menu-card-list li {
  font-family: var(--font-ui);
  font-size: .82rem;
  color: var(--text);
  padding: 3px 0;
  line-height: 1.5;
}
.menu-card-list li strong {
  color: var(--maroon);
  font-weight: 600;
}

/* Pakete upgrade hint */
.pakete-upgrade-hint {
  text-align: center;
  margin-top: 2.5rem;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(42,85,80,.11) 0%, rgba(201,160,48,.09) 100%);
  border: 2px solid rgba(42,85,80,.35);
  border-top: 3px solid var(--maroon);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(42,85,80,.10);
  position: relative;
}
.pakete-upgrade-hint::before {
  content: '✦ Add-On Optionen ✦';
  display: block;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: .9rem;
  opacity: 1;
}
.pakete-upgrade-hint p {
  font-family: var(--font-ui);
  font-size: .97rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}
.pakete-upgrade-hint strong {
  color: var(--maroon);
}

/* =============================================
   PAKETE — new class names
   ============================================= */
.paket-card-premium {
  border-color: var(--maroon);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.paket-card-premium:hover {
  transform: translateY(-6px);
}
.paket-badge-premium {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--maroon);
  color: var(--white);
  border-radius: 50px;
  padding: 4px 18px;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.paket-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(30,56,53,.1);
}
.paket-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--maroon);
  margin-bottom: .2rem;
}
.paket-preis {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--terra);
  font-weight: 700;
  margin-top: .3rem;
}
.paket-preis span {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 400;
}
.paket-personen {
  font-family: var(--font-ui);
  font-size: .88rem;
  color: var(--text-light);
}
.paket-anlass {
  font-family: var(--font-ui);
  font-size: .82rem;
  color: var(--olive-dark);
  background: rgba(42,85,80,.08);
  border-radius: var(--radius);
  padding: 8px 12px;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.paket-liste {
  list-style: none;
  margin-bottom: 1.8rem;
}
.paket-liste li {
  font-family: var(--font-ui);
  font-size: .9rem;
  color: var(--text);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.paket-liste li::before {
  content: '✦';
  color: var(--terra);
  font-size: .7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.paket-card .btn { width: 100%; justify-content: center; }

.paket-getraenke {
  margin-top: .4rem;
  padding: 6px 12px !important;
  background: rgba(201,160,48,.1);
  border: 1px solid rgba(201,160,48,.3);
  border-radius: 6px;
  color: var(--terra) !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  justify-content: center !important;
}
.paket-getraenke::before { display: none !important; }

/* =============================================
   PREIS-ORIENTIERUNG
   ============================================= */
.preis-orientierung {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-top: 48px;
  border: 1.5px solid rgba(30,56,53,.1);
  box-shadow: var(--shadow-sm);
}
.preis-orientierung h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: .5rem;
}
.preis-sub {
  font-family: var(--font-ui);
  font-size: .92rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.preis-table {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(30,56,53,.1);
}
.preis-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
}
.preis-row > span {
  font-family: var(--font-ui);
  font-size: .88rem;
  padding: 12px 16px;
  border-right: 1px solid rgba(30,56,53,.08);
  border-bottom: 1px solid rgba(30,56,53,.08);
  color: var(--text);
}
.preis-row > span:last-child { border-right: none; }
.preis-header > span {
  background: var(--maroon);
  color: var(--white);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .5px;
}
.preis-hinweis {
  font-family: var(--font-ui);
  font-size: .88rem;
  color: var(--olive-dark);
  margin-top: 1.2rem;
  font-weight: 500;
}

/* =============================================
   WARUM WIR
   ============================================= */
.warum-wir {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #f0e8d4 100%);
}

.warum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 3rem;
}

.warum-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(30,56,53,.07);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.warum-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.warum-icon {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  display: block;
}

.warum-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--maroon);
  margin-bottom: .8rem;
}

.warum-card p {
  font-family: var(--font-ui);
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.warum-cta {
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .warum-grid { grid-template-columns: 1fr; }
}

/* =============================================
   TESTIMONIALS — updated
   ============================================= */
.testimonial-author strong {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .92rem;
  color: var(--white);
}
.testimonial-author span {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* =============================================
   URGENCY BANNER
   ============================================= */
.urgency-banner {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: var(--shadow-sm);
}

/* =============================================
   CONTACT — updated
   ============================================= */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
}
.contact-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(30,56,53,.08);
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: 1.4rem;
}
.contact-details {
  margin-top: 1.4rem;
}
.contact-details p {
  font-family: var(--font-ui);
  font-size: .93rem;
  color: var(--text-light);
  margin-bottom: .6rem;
}
.contact-details a {
  color: var(--maroon);
  text-decoration: underline;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 700;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(30,56,53,.08);
  min-height: 600px;
  -webkit-overflow-scrolling: touch;
}
.contact-form-wrap iframe {
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}
.form-label-header {
  padding: 32px 36px 0;
  border-bottom: 1.5px solid rgba(30,56,53,.08);
  margin-bottom: 0;
}
.form-label-tag {
  display: inline-block;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.form-label-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 6px;
}
.form-label-header p {
  font-family: var(--font-ui);
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.form-hint {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: var(--olive-dark);
  text-align: center;
  margin-top: .8rem;
  font-weight: 500;
}
.form-success-msg {
  text-align: center;
  padding: 48px 24px;
}
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.form-success-msg h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--maroon);
  margin-bottom: .5rem;
}
.form-success-msg p {
  font-family: var(--font-ui);
  color: var(--text-light);
}
.hidden { display: none; }

/* =============================================
   FOOTER — updated
   ============================================= */
.footer-logo {
  height: 72px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-ui);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 260px;
  color: rgba(255,255,255,.6);
  margin-bottom: .5rem;
}
.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: .5px;
}
.footer-links ul { list-style: none; }
.footer-links ul li {
  margin-bottom: .6rem;
  font-family: var(--font-ui);
  font-size: .88rem;
}
.footer-links ul li a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links ul li a:hover { color: var(--white); }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  color: var(--white);
}
.footer-social a:hover { background: rgba(255,255,255,.2); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-text          { max-width: 100%; margin: 0 auto 2rem; }
  .hero-ctas          { justify-content: center; }
  .hero-image-wrap    { order: -1; }
  .hero-logo-ring     { width: 280px; height: 280px; }
  .hero-logo-ring img { width: 252px; height: 252px; }

  .story-inner        { grid-template-columns: 1fr; }
  .story-image-wrap   { max-width: 360px; margin: 0 auto; }
  .story-visual       { max-width: 360px; margin: 0 auto; }

  .occasions-grid,
  .services-grid,
  .menu-grid,
  .pakete-grid,
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }

  .process-grid       { flex-direction: column; align-items: center; }
  .process-connector  { width: 2px; height: 32px; margin: 0 auto; }

  .paket-card.featured,
  .paket-card-premium { transform: none; }
  .paket-card.featured:hover,
  .paket-card-premium:hover { transform: translateY(-6px); }

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

@media (max-width: 768px) {
  .nav-links, .nav .btn { display: none; }
  .hamburger            { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1.5px solid rgba(30,56,53,.12);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open + .btn { display: flex; }

  .occasions-grid,
  .services-grid,
  .menu-grid,
  .pakete-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row              { grid-template-columns: 1fr; }
  .footer-inner          { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom         { flex-direction: column; text-align: center; }
  .trust-bar-inner       { gap: 24px; }
  .contact-form-wrap     { min-height: 500px; order: -1; }
  .form-label-header     { padding: 24px 20px 0; }

  .preis-orientierung    { padding: 28px 20px; }

  /* Filterbar horizontal scrollbar auf Mobile */
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }
}

@media (max-width: 480px) {
  .hero-logo-ring     { width: 220px; height: 220px; }
  .hero-logo-ring img { width: 196px; height: 196px; }
  .story-badge-wrap   { flex-direction: column; }
}
