/* ============================================================
   MELIS FEINKOST — LUXURY DESIGN SYSTEM
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap");

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #222222;
  --gold: #c9a84c;
  --gold-light: #e0c882;
  --gold-dark: #9a7a30;
  --cream: #faf7f0;
  --cream-2: #ede8dc;
  --text-muted: #b9ad9a;
  --border-gold: rgba(201, 168, 76, 0.25);
  --border-gold-hover: rgba(201, 168, 76, 0.6);

  --font-serif: "Playfair Display", Georgia, serif;
  --font-script: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Raleway", sans-serif;

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

ul {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
.headline-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.headline-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
}

.headline-md {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
}

.headline-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
}

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

.body-lg {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-2);
}

.body-sm {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Gold Divider ─────────────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.gold-divider::before,
.gold-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider-icon {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-gold:hover::before {
  transform: translateX(0);
}

.btn-gold span {
  position: relative;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold-hover);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── NAVIGATION ──────────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.75rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 1rem 5%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav-logo-img {
  max-width: 260px;
  max-height: 80px;
  width: auto;
  height: auto;
  transition: var(--transition);
  display: block;
}

.nav.scrolled .nav-logo-img {
  max-height: 60px;
}

.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-2);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem !important;
  border: 1px solid var(--border-gold-hover);
  background: var(--gold) !important;
  color: var(--black) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--black) !important;
  color: var(--gold) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

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

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-mobile.open ~ .whatsapp-fab {
  display: none;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--cream);
  text-align: center;
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: var(--gold);
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── HERO SECTION ────────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.97) 0%,
    rgba(10, 10, 10, 0.72) 40%,
    rgba(10, 10, 10, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 3%, 40px);
  max-width: 900px;
  text-align: center;
}

.hero-content .eyebrow {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-content .headline-xl {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards 0.5s;
}

.hero-content .body-lg {
  max-width: 500px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

.hero-scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

/* Sub-hero (inner pages) */
.hero-sub {
  height: 100vh;
  min-height: 400px;
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── SECTIONS ────────────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.section {
  padding: 8rem 8%;
}

.section-sm {
  padding: 5rem 8%;
}

.section-dark {
  background: var(--black-2);
}

.section-darker {
  background: var(--black-3);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .eyebrow {
  margin-bottom: 1rem;
}

.section-header .headline-lg {
  margin-bottom: 1.25rem;
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── ABOUT / INTRO SECTION ───────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about-image-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--border-gold);
  pointer-events: none;
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 130px;
  height: 130px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
}

.about-text .eyebrow {
  margin-bottom: 1.25rem;
}

.about-text .headline-lg {
  margin-bottom: 1.5rem;
}

.about-text .body-lg {
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-gold);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── SERVICE CARDS ───────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-gold);
}

.service-card {
  background: var(--black-2);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: var(--black-3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card .headline-sm {
  margin-bottom: 1rem;
}

.service-card .body-lg {
  margin-bottom: 2rem;
  font-size: 0.925rem;
}

.service-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.85rem;
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── FULL-BLEED BANNER ───────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 700px;
}

.banner-content .eyebrow {
  margin-bottom: 1.25rem;
}

.banner-content .headline-lg {
  margin-bottom: 1.5rem;
}

.banner-content .body-lg {
  margin-bottom: 2rem;
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── MENU / SPEISEKARTE ──────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border-gold);
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tabs-swipe-hint {
  display: none;
}

.menu-tab {
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition-fast);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}

.menu-tab:hover {
  color: var(--cream);
}

.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 0 3rem;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

@media (max-width: 768px) {
  .menu-item {
    padding: 0.9rem 0;
    gap: 0.75rem;
  }
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--cream);
}

.menu-item-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.15rem;
  min-width: 70px;
  text-align: right;
}

.menu-category-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.menu-category-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── CATERING SECTION ────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.catering-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.catering-image {
  position: relative;
  overflow: hidden;
}

.catering-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.catering-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.features-swipe-hint {
  display: none;
}

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

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.feature-text h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(10, 10, 10, 0.4);
}

/* ── Gallery Slider ───────────────────────────────────────── */
.gallery-slider {
  position: relative;
  overflow: hidden;
}

.gallery-slider-track {
  display: flex;
  transition: transform 1.2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  will-change: transform;
}

.gallery-slide {
  min-width: 100%;
  height: 600px;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.slider-arrow-prev {
  left: 2rem;
}
.slider-arrow-next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.35);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Mobile slider controls (below image) */
.slider-controls-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.1rem 0 0.5rem;
}

.slider-arrow-mobile {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  flex-shrink: 0;
}

.slider-arrow-mobile:hover {
  background: var(--gold);
  color: var(--black);
}

.slider-dots-mobile {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

@media (max-width: 767px) {
  .gallery-slide {
    height: 280px;
  }
  .slider-arrow,
  .slider-dots {
    display: none;
  }
  .slider-controls-mobile {
    display: flex;
  }
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── PROCESS / STEPS ─────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1rem;
  top: 2.85rem;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.5;
}

.process-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--border-gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── TESTIMONIAL / QUOTE ─────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.quote-section {
  text-align: center;
  padding: 7rem 8%;
  position: relative;
  overflow: hidden;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 10rem;
  line-height: 0.5;
  color: var(--border-gold);
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 800px;
  margin: 1.5rem auto;
  line-height: 1.6;
}

.quote-portrait-wrap {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin: 1.5rem auto 0;
  overflow: hidden;
}

.quote-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 15% 90%;
  transform: scale(2.5);
  transform-origin: 40% 30%;
  display: block;
}

.quote-author {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: calc(0.6rem + 8px);
}

.quote-author-sub {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── REVIEWS SECTION ─────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.reviews-section {
  padding: 7rem 8%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reviews-swipe-hint {
  display: none;
}

.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.reviews-stars-large {
  display: flex;
  gap: 0.2rem;
}

.reviews-stars-large svg {
  width: 28px;
  height: 28px;
}

.reviews-score {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}

.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  margin-top: 0.25rem;
}

.review-stars svg {
  width: 13px;
  height: 13px;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  margin: 0 0 1.25rem;
  font-style: italic;
}

.review-google-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-gold);
}

.reviews-cta {
  text-align: center;
  margin-top: 3.5rem;
}

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

@media (max-width: 600px) {
  .reviews-section {
    padding: 4rem 0;
    min-height: 100dvh;
    justify-content: center;
  }
  .reviews-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 1rem;
    scrollbar-width: none;
    margin-top: 2rem;
  }
  .reviews-grid::-webkit-scrollbar {
    display: none;
  }
  .review-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 0;
  }
  .reviews-score {
    font-size: 1.8rem;
  }
  .reviews-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1rem;
    padding: 0 8%;
    animation: swipeHintPulse 2s ease-in-out infinite;
  }
  .reviews-cta {
    padding: 0 8%;
  }
}

@keyframes swipeHintPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── WHATSAPP FLOATING BUTTON ────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.45);
  opacity: 1;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  animation: fabPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.65);
}

.whatsapp-fab svg {
  flex-shrink: 0;
  fill: #000;
}

.whatsapp-fab-label {
  display: none;
}

@keyframes fabPop {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 600px) {
  .whatsapp-fab {
    bottom: 5rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
  }
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── FEINKOSTPLATTEN SECTION ─────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.feinkostplatten-section {
  padding: 80px 8%;
}

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

.feinkost-card {
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feinkost-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(201, 168, 76, 0.15);
}

.feinkost-card-featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.feinkost-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  z-index: 2;
}

.feinkost-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.feinkost-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.feinkost-card:hover .feinkost-card-img img {
  transform: scale(1.05);
  filter: brightness(1);
}

.feinkost-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.feinkost-size {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feinkost-persons {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feinkost-persons i {
  color: var(--gold);
  font-size: 0.78rem;
}

.feinkost-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0.4rem 0 0.9rem;
  line-height: 1;
}

.btn-sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
}

.feinkost-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.feinkost-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  filter: brightness(0.82);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.feinkost-gallery img:hover {
  filter: brightness(1.05);
  transform: scale(1.02);
}

/* Icon-Karten (Käse-Wurst-Platte ohne Bilder) */
.feinkost-card-icon {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.05);
  border-bottom: 1px solid var(--border-gold);
  font-size: 4rem;
  color: var(--gold);
  transition: transform 0.4s ease;
}

.feinkost-card:hover .feinkost-card-icon {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .feinkost-cards {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .feinkost-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feinkostplatten-section {
    padding: 4rem 5%;
  }
  .feinkost-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── IMBISSWAGEN SECTION ─────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.imbisswagen-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 46% 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "heading heading"
    "image   facts  ";
  column-gap: 4rem;
  row-gap: 2rem;
  padding: 80px 8% 60px 8%;
  box-sizing: border-box;
  overflow: hidden;
}

.imbisswagen-heading {
  grid-area: heading;
  text-align: center;
  padding-bottom: 0.5rem;
}

.imbisswagen-heading .eyebrow {
  margin-bottom: 0.5rem;
}

.imbisswagen-heading .headline-lg {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-top: 0.5rem;
}

.imbisswagen-image {
  grid-area: image;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.imbisswagen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
}

.imbisswagen-facts {
  grid-area: facts;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  min-height: 0;
}

.imbisswagen-cta {
  margin-top: 16px;
}

.imbisswagen-pricing {
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.imbisswagen-price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.imbisswagen-price-item + .imbisswagen-price-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.imbisswagen-price-label {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.imbisswagen-price-value {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

.imbisswagen-price-value small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.imbisswagen-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.imbisswagen-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cream);
}

.imbisswagen-list .list-dot {
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .imbisswagen-section {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "heading"
      "image"
      "facts";
    padding: 6rem 8%;
    gap: 3rem;
  }
  .imbisswagen-heading .headline-lg {
    white-space: normal;
  }
  .imbisswagen-image {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 600px) {
  .imbisswagen-section {
    padding: 4rem 5%;
    gap: 2.5rem;
  }
  .imbisswagen-heading {
    text-align: center;
  }
  .imbisswagen-image {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }
  .imbisswagen-pricing {
    padding: 1.25rem;
    gap: 0.75rem;
  }
  .imbisswagen-price-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
  }
  .imbisswagen-price-value {
    font-size: 1.5rem;
    text-align: left;
  }
  .imbisswagen-price-value small {
    display: block;
    margin-top: 0.25rem;
  }
  .imbisswagen-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }
  .imbisswagen-menu .eyebrow {
    width: fit-content;
    text-align: left;
    margin-bottom: 1.25rem;
  }
  .imbisswagen-list {
    align-items: flex-start;
    width: 100%;
  }
  .imbisswagen-list li {
    text-align: left;
    font-size: 0.85rem;
  }
  .imbisswagen-cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── FOTO GALERIE ────────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.galerie-grid {
  columns: 4;
  column-gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.galerie-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.galerie-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.galerie-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.galerie-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.galerie-item:hover::after {
  background: rgba(201, 168, 76, 0.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  z-index: 10000;
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--cream);
  font-size: 2.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  z-index: 10000;
  line-height: 1;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201, 168, 76, 0.35);
  color: var(--gold);
}

.lightbox-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  z-index: 10000;
}

@media (max-width: 1024px) {
  .galerie-grid { columns: 3; }
}

@media (max-width: 700px) {
  .galerie-grid { columns: 2; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
}

@media (max-width: 420px) {
  .galerie-grid { columns: 1; }
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── VIDEO GALERIE ───────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.video-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: var(--black-2, #111);
}

.video-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

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

/* ── ═══════════════════════════════════════════════════════ */
/* ── CUSTOM DATE PICKER ──────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.date-picker {
  position: relative;
}

.date-picker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--black-3, #1a1a1a);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  color: var(--text-muted, #888);
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  transition: border-color 0.2s;
}

.date-picker-trigger:hover,
.date-picker-trigger:focus {
  border-color: var(--gold);
  outline: none;
}

.date-picker-trigger svg {
  color: var(--gold);
  flex-shrink: 0;
}

.date-picker-trigger.has-value {
  color: var(--cream, #f5f0e8);
}

.date-picker-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  background: #111;
  border: 1px solid var(--border-gold, rgba(201,168,76,0.3));
  border-radius: 4px;
  padding: 1.25rem;
  width: 280px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}

.date-picker-panel.open {
  display: block;
}

.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.date-picker-nav {
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 30px;
  height: 30px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.date-picker-nav:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.date-picker-month-year {
  color: var(--cream, #f5f0e8);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.date-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.5rem;
}

.date-picker-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding: 0.3rem 0;
  font-weight: 600;
}

.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.dp-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--cream, #f5f0e8);
  border-radius: 2px;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}

.dp-day:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
}

.dp-day.today {
  border-color: rgba(201,168,76,0.5);
  color: var(--gold);
}

.dp-day.selected {
  background: var(--gold);
  color: #000;
  font-weight: 700;
}

.dp-day.other-month {
  color: rgba(255,255,255,0.2);
}

.dp-day.past {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.dp-day.empty {
  cursor: default;
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── CONTACT SECTION ─────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .headline-md {
  margin-bottom: 2rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.contact-item-content h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 0.95rem;
  color: var(--cream-2);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.contact-item-content a:hover {
  color: var(--gold);
}

.contact-social {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  padding: 0.9rem 1.25rem;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

.form-group select option {
  background: var(--black-3);
  color: var(--cream);
}

.form-group select option:hover,
.form-group select option:checked {
  background: var(--gold);
  color: #000;
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  padding: 0.9rem 3rem 0.9rem 1.25rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.3s ease;
  display: flex;
  align-items: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
}

.custom-select.has-value .custom-select-trigger {
  color: var(--cream);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--gold);
}

.custom-select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--black-3);
  border: 1px solid var(--gold);
  border-top: none;
  z-index: 100;
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-select-option {
  padding: 0.8rem 1.25rem;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 300;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.custom-select-option:hover {
  background: var(--gold);
  color: #000;
}

.custom-select-option.selected {
  background: var(--gold);
  color: #000;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Checkbox Group */
.checkbox-group {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px !important;
  height: 22px !important;
  padding: 0 !important; /* Fixes the rectangle issue caused by global input padding */
  border: 1px solid var(--border-gold);
  background: var(--black-3);
  margin: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  border-radius: 0;
  outline: none;
}

.checkbox-group input[type="checkbox"]:checked {
  background: var(--gold);
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 6px;
  height: 12px;
  border: solid var(--black);
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.checkbox-group input[type="checkbox"]:focus {
  border-color: var(--gold);
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0.02em;
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
  margin: 0;
}

.checkbox-group label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Form Feedback */
.form-feedback {
  display: none;
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-feedback.success {
  display: block;
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid #2e7d32;
  color: #81c784;
}

.form-feedback.error {
  display: block;
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid #c62828;
  color: #e57373;
}

.field-error {
  color: #e57373;
  font-size: 0.72rem;
  font-weight: 500;
  margin-top: 0.4rem;
  display: block;
  width: 100%;
  grid-column: 1 / -1; /* Ensures it spans the full width in grid layouts */
  animation: fadeIn 0.3s ease forwards;
}

/* ── ═══════════════════════════════════════════════════════ */
/* ── FOOTER ──────────────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.footer {
  background: var(--black);
  border-top: 1px solid var(--border-gold);
  padding: 5rem 8% 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.footer-logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-brand .body-sm {
  max-width: 260px;
  margin-bottom: 1.75rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

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

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

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

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  gap: 1rem;
}

.footer-hours li span:first-child {
  color: var(--cream-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-madeby {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-madeby a {
  color: var(--gold);
  text-decoration: none;
}

.footer-madeby a:hover {
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

/* ── ═══════════════════════════════════════════════════════ */
/* ── LEGAL PAGES (IMPRESSUM / DATENSCHUTZ) ───────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-gold);
}

.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

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

/* ── ═══════════════════════════════════════════════════════ */
/* ── ANIMATIONS ──────────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.7);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

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

/* ── ═══════════════════════════════════════════════════════ */
/* ── COOKIE BANNER ───────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-wrap: wrap;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 250px;
}

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

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

/* ── ═══════════════════════════════════════════════════════ */
/* ── RESPONSIVE ──────────────────────────────────────────── */
/* ── ═══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .about-grid,
  .catering-intro {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-image-wrapper img {
    height: 450px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

  .process-step:nth-child(2)::after,
  .process-step:nth-child(4)::after {
    display: none;
  }

  .process-step:nth-child(3)::after {
    content: "→";
    display: block;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px 250px;
  }

  .gallery-item:first-child {
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 6%;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
    background: none;
    gap: 1px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .gallery-item {
    height: 250px;
  }

  .about-stats {
    gap: 1.5rem;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .banner {
    height: auto;
    padding: 5rem 6%;
  }

  .banner-bg {
    background-attachment: scroll;
  }

  .hero-bg {
    background-attachment: scroll;
  }

  .catering-features {
    grid-template-columns: 1fr;
  }

  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.25rem;
    padding-bottom: 1rem;
    margin-left: -6%;
    margin-right: -6%;
    padding-left: 6%;
    padding-right: 6%;
  }

  .features-grid > * {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .features-grid::-webkit-scrollbar {
    display: none;
  }

  .features-swipe-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .menu-tabs-swipe-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .lightbox-close {
    top: 5rem;
    right: 1rem;
  }
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid var(--border-gold);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 1.1rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Utilities ────────────────────────────────────────────── */
.text-gold {
  color: var(--gold);
}
.text-muted {
  color: var(--text-muted);
}
.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.italic {
  font-style: italic;
}

/* ── Page loader ──────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  text-align: center;
  animation: loaderPulse 1.5s ease infinite;
}

.loader-logo span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 0.5rem;
  animation: none;
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
