/* ============================================================
   Cheesy Engadin – Design Clone
   ============================================================ */

:root {
  --cheese: #fbaf02;          /* main cheese yellow/orange (brand colour) */
  --cheese-dark: #e89c00;
  --dark: #141414;            /* buttons / review cards */
  --cream: #FBE7B0;
  --mint: #CFE9C9;
  --placeholder: #cfcfcf;     /* neutral grey for all image placeholders */
  --placeholder-2: #c4c4c4;
  --star: #FBBC04;
  --text: #1a1a1a;
  --white: #ffffff;
}

* { box-sizing: border-box; }

/* Screenreader-only (SEO/A11y: unsichtbare Headings) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--cheese);
  color: #1C1C1C;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---- Shared placeholder ---- */
.placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.18) 0 12px, transparent 12px 24px),
    var(--placeholder);
  background-blend-mode: overlay;
  position: relative;
}
.placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 34px; height: 28px;
  background: rgba(255,255,255,.55);
  border-radius: 4px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 19V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2zM8.5 11l2.5 3 3.5-4.5 4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 19V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2zM8.5 11l2.5 3 3.5-4.5 4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .8;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  padding: 14px 22px;
  border-radius: 12px;
  line-height: 1;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: #000; transform: translateY(-1px); }

/* ---- Wordmark (script logo) ---- */
.wordmark {
  font-family: "Pacifico", "Brush Script MT", cursive;
  color: var(--text);
  font-weight: 400;
  letter-spacing: .5px;
}

/* ============================================================
   1. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cheese);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-cheese {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(1.2);
  border-radius: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  color: #1C1C1C;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.nav-links a.active { text-decoration: underline; text-underline-offset: 4px; }
.nav-links a:hover { opacity: .7; }
.nav-cheese-logo {
  margin-left: auto;
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.2);
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1C1C1C;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   2. LOGO AREA
   ============================================================ */
.logo-area {
  background: var(--cheese);
  text-align: center;
  padding: 80px 0 40px;
}
.logo-area .wordmark {
  font-size: 44px;
}
.logo-img {
  height: 66px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* ============================================================
   3 + 4. HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--cheese);
  padding-top: 14px;   /* gelbes Band über dem Käse */
}
/* melting cheese drip overlay */
.cheese-drip {
  position: absolute;
  top: 14px;           /* Käse auf die neue Gelb→Grau-Grenze schieben (= padding-top) */
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}
.cheese-drip svg {
  display: block;
  width: 100%;
  height: 96px;
}
.hero-media {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.hero-media:has(.hero-img) {
  height: 480px;
}
.hero-video,
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-media.placeholder::after { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 20px 40px;
}

.hero-content:has(.hero-title-text) {
  justify-content: center;
  padding: 0 20px;
}
.hero-title {
  color: var(--white);
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.2;
  margin: 0 0 22px;
  align-self: stretch;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.hero-title-text {
  color: var(--white);
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.hero-buttons { display: flex; gap: 12px; }

/* Hero-specific button overrides */
.btn-hero-primary {
  background: #fff;
  color: #111;
}
.btn-hero-primary:hover { background: #f0f0f0; transform: translateY(-1px); }

.btn-hero-secondary {
  background: rgba(255,255,255,0.28);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.38); transform: translateY(-1px); }

/* Sound toggle button */
.hero-sound-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: background .15s ease, transform .15s ease;
}
.hero-sound-btn:hover { background: #000; transform: translateY(-1px); }
.hero-sound-icon { font-size: 16px; line-height: 1; }

/* ============================================================
   5. STATUS
   ============================================================ */
.status {
  background: var(--cheese);
  text-align: center;
  padding: 46px 20px 30px;
}
.status-title {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 18px;
}
.status-btn { margin-bottom: 26px; }
.status-insta {
  font-size: 16px;
  font-weight: 500;
  color: #1C1C1C;
  margin: 0;
}
.status-insta span { font-weight: 700; }
.status-arrow {
  font-size: 26px;
  margin-top: 6px;
  opacity: .8;
  line-height: 1;
}

/* ============================================================
   6. INSTAGRAM GRID
   ============================================================ */
.insta-grid {
  display: block;
  background: var(--cheese);
}
.insta-grid iframe {
  display: block;
  width: 100%;
}

/* ============================================================
   7-9. FEATURE SECTIONS (Menu / Catering / About)
   ============================================================ */
.feature {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.feature-text { max-width: 420px; }
.feature-title {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 16px;
}
.feature-body {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  color: #1C1C1C;
  margin: 0 0 24px;
}
.feature-media {
  height: 230px;
  border-radius: 12px;
}
.feature-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.feature-media.portrait,
.feature-img.portrait {
  height: 250px;
  max-width: 220px;
  margin-left: auto;
  border-radius: 14px;
}

/* ============================================================
   10. REVIEWS
   ============================================================ */
.reviews {
  position: relative;
  max-width: 1180px;
  margin: 20px auto 10px;
  padding: 30px 56px;
}
.review-viewport {
  overflow: hidden;
  width: 100%;
}
.review-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}
.review-card {
  background: var(--dark);
  color: #e9e9e9;
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  font-family: "Inter", system-ui, sans-serif;
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .review-card { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 640px) {
  .review-card { flex: 0 0 100%; }
}
.review-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.review-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.review-avatar::after { display: none; }
.review-name { font-size: 12px; font-weight: 500; color: #fff; }
.review-g {
  margin-left: auto;
  font-weight: 700;
  color: #4285F4;
  background: #fff;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 12px;
}
.review-meta { font-size: 10px; color: #9aa0a6; margin-bottom: 6px; }
.stars { color: var(--star); letter-spacing: 1px; margin-bottom: 8px; font-size: 13px; }
.review-text { margin: 0 0 14px; line-height: 1.5; color: #cfcfcf; }
.review-text .more { color: #9aa0a6; }
.review-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #9aa0a6;
  margin-bottom: 12px;
}
.review-learn { color: #9aa0a6; text-decoration: underline; }
.review-powered {
  font-size: 10px;
  color: #8a8f94;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 8px;
}
.review-powered span { color: #cfcfcf; }
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.2);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.review-nav.prev { left: 12px; }
.review-nav.next { right: 12px; }
.review-nav:hover { background: rgba(0,0,0,.35); }

/* ============================================================
   11. WAVE + MAP
   ============================================================ */
.map-section {
  position: relative;
  background: var(--mint);
  padding: 0 0 40px;
  margin-top: 40px;
}
.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: translateY(-99%);
}
.wave-top svg { display: block; width: 100%; height: 70px; }
.map-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 0;
}
.map-placeholder {
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
}
.map-placeholder::after { display: none; }
.map-card {
  position: absolute;
  top: 16px; left: 16px;
  background: #fff;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 11px;
  line-height: 1.5;
  box-shadow: 0 1px 6px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 220px;
  color: #333;
}
.map-card strong { font-size: 13px; }
.map-card-stars { color: #e7711b; font-weight: 600; }
.map-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  background: rgba(0,0,0,.12);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  font-size: 30px;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
/* ============================================================
   EVENT SERVICES SECTION
   ============================================================ */
.cheesy-engadin-section {
  background-color: #fbaf02;
  color: #272626;
  padding: 5rem 1.5rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.intro p strong {
  font-weight: 700;
}

.cheesy-engadin-section h2 {
  margin-top: 0;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.28);
  padding: 2.5rem;
  border-radius: 16px;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  letter-spacing: -0.5px;
}

.service-card p {
  line-height: 1.6;
  margin: 0 0 1.2rem 0;
  font-weight: 500;
}

.service-card ul {
  padding-left: 1.5rem;
  margin: 1.2rem 0;
  text-align: left;
}

.service-card ul li {
  margin-bottom: 0.6rem;
  line-height: 1.5;
  font-weight: 500;
}

.note {
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 1.2rem;
  opacity: 0.95;
  font-weight: 500;
}

.why-section {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.why-section h2,
.collaborations h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.8px;
}

.why-list {
  columns: 2;
  column-gap: 3.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.why-list li {
  margin-bottom: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  break-inside: avoid;
}

.collaborations {
  margin-top: 4rem;
}

.collaborations ul {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: left;
  list-style: none;
  padding: 0;
}

.collaborations ul li {
  font-weight: 600;
  line-height: 1.6;
  padding-left: 1.8rem;
  position: relative;
}

.collaborations ul li::before {
  content: "↳";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.cta {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

@media (max-width: 1024px) {
  .cheesy-engadin-section {
    padding: 4rem 1.5rem;
  }

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

  .why-list {
    columns: 1;
    column-gap: 0;
  }

  .collaborations ul {
    grid-template-columns: 1fr;
  }

  .cheesy-engadin-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .cheesy-engadin-section {
    padding: 3rem 1.25rem;
  }

  .cheesy-engadin-section h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .intro p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .service-card {
    padding: 2rem;
    border-radius: 14px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .why-section {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .why-section h2,
  .collaborations h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .cta {
    margin-top: 3rem;
    padding-top: 2rem;
    font-size: 1.1rem;
  }
}

@media (min-width: 1025px) {
  .cheesy-engadin-section {
    font-size: 1.08rem;
  }

  .intro p {
    font-size: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.55rem;
  }

  .service-card p,
  .service-card ul li {
    font-size: 1.1rem;
  }

  .why-list li {
    font-size: 1.12rem;
  }

  .collaborations ul li {
    font-size: 1.1rem;
  }
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about-us-content {
  background-color: #fbaf02;
  color: #272626;
  padding: 5rem 1.5rem;
  text-align: center;
}

.about-us-text {
  max-width: 1000px;
  margin: 0 auto;
}

.about-us-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
  margin: 0 0 1.8rem 0;
  letter-spacing: -0.3px;
}

.about-us-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .about-us-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .about-us-content {
    padding: 3rem 1.25rem;
  }

  .about-us-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
}

/* About Us Slideshow */
.slideshow-container {
  margin-top: 4rem;
  width: 100%;
}

.slideshow-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2.5rem;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.slides-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide-img {
  width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: white;
  border: none;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.slide-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
}

.slide-prev {
  left: 16px;
}

.slide-next {
  right: 16px;
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(39, 38, 38, 0.35);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #272626;
}

.dot:hover {
  background-color: rgba(39, 38, 38, 0.6);
}

@media (max-width: 1024px) {
  .slideshow-container {
    margin-top: 3rem;
  }

  .slide-arrow {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .slide-prev {
    left: 12px;
  }

  .slide-next {
    right: 12px;
  }
}

@media (max-width: 640px) {
  .slideshow-container {
    margin-top: 2.5rem;
  }

  .slideshow-wrapper {
    border-radius: 14px;
  }

  .slide-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.8rem;
  }

  .slide-prev {
    left: 8px;
  }

  .slide-next {
    right: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

/* ============================================================
   CATERING FORM SECTION
   ============================================================ */
.catering-form-section {
  background-color: #fbaf02;
  color: #272626;
  padding: 4rem 1.5rem;
  text-align: center;
}

.catering-form-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.catering-form {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #272626;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: rgba(39, 38, 38, 0.25);
  color: #272626;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(39, 38, 38, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: rgba(39, 38, 38, 0.35);
}

.btn-submit {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: #272626;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #1a1a1a;
}

@media (max-width: 640px) {
  .catering-form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

/* Footer Wave Separator */
.footer-wave {
  position: relative;
  width: 100%;
  line-height: 0;
  height: 140px;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer {
  background: var(--mint);
  text-align: center;
  padding: 40px 20px 30px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-insta {
  width: 26px; height: 26px;
  border-radius: 8px;
  border: 2.5px solid var(--text);
  position: relative;
}
.footer-insta::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid var(--text);
  border-radius: 50%;
}
.footer-insta::after {
  content: "";
  position: absolute;
  top: 4px; right: 4px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text);
}
.footer-wordmark { font-size: 30px; }
.footer-logo-img {
  height: 40px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.footer-contact {
  font-size: 15px;
  font-weight: 500;
  color: #1C1C1C;
  margin: 0 0 16px;
}
.footer-contact a { color: #1C1C1C; }
.footer-contact .dot { margin: 0 8px; }
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #1C1C1C;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 13px;
  font-weight: 500;
}
.footer-credit {
  font-size: 12px;
  margin: 0;
  opacity: .85;
}

/* ============================================================
   MENU PAGE – QUOTE + WAVE
   ============================================================ */
.menu-quote {
  position: relative;
  background: #262626;
  padding: 160px 24px 0;
}
.menu-quote-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 200px;
}
.menu-quote-text {
  color: #fff;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 650;
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin: 0;
}
.menu-quote-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 0;
}
.menu-quote-wave svg {
  display: block;
  width: 100%;
  height: 140px;
}
.menu-content {
  background: var(--cheese);
  text-align: center;
  padding: 60px 24px 90px;
}
.menu-content-title {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #1C1C1C;
  margin: 0 0 50px;
}
.menu-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}
.menu-category {
  margin-bottom: 60px;
}
.menu-category-title {
  font-size: 24px;
  font-weight: 700;
  color: #1C1C1C;
  margin: 0 0 28px;
  font-style: italic;
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-style: italic;
  color: #1C1C1C;
}
.menu-item-name {
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.menu-item-price {
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  margin-left: auto;
  order: 3;
}
.menu-item::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted rgba(28, 28, 28, 0.4);
  order: 2;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-media { height: 520px; }
  .feature { gap: 30px; padding: 34px 24px; }
  .review-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-inner { gap: 12px; padding: 8px 16px; flex-wrap: nowrap; position: relative; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cheese);
    padding: 6px 16px 12px;
    box-shadow: 0 10px 18px rgba(0,0,0,.14);
    border-top: 1px solid rgba(0,0,0,.06);
    z-index: 60;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 16px;
    font-weight: 600;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active { text-decoration: none; color: #000; }
  .nav-diamond { display: none; }

  .logo-area { padding: 30px 0 30px; }
  .logo-area .wordmark { font-size: 36px; }
  .logo-img { height: 50px; }

  .hero { padding-top: 38px; }
  .cheese-drip { top: 38px; }
  .cheese-drip svg { height: 78px; }
  .hero-media { height: 560px; }
  .hero-title { font-size: 36px; letter-spacing: -1.5px; }
  .hero-title-text { font-size: 48px; letter-spacing: -1.5px; }

  .status-title { font-size: 36px; letter-spacing: -1.5px; }

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

  .feature {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .feature-text { max-width: none; }
  .feature-title { font-size: 36px; letter-spacing: -1.5px; }
  .feature-body { font-size: 15px; }
  .feature .btn { }
  .feature-media.portrait { margin: 0 auto; }

  .reviews { padding: 24px 16px; }
  .review-track { grid-template-columns: 1fr; }
  .review-nav { display: none; }

  .map-placeholder { height: 320px; }

  .footer-nav { gap: 12px; }
}

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-header {
  background: var(--cheese);
  text-align: center;
  padding: 54px 20px 44px;
}
.legal-header h1 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 0;
  color: #1C1C1C;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 22px 72px;
  color: #1C1C1C;
  font-size: 16px;
  line-height: 1.65;
}
.legal-content h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 26px 0 8px;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 22px; }
.legal-content li { margin-bottom: 7px; }
.legal-content a { color: #1C1C1C; text-decoration: underline; }
.legal-content strong { font-weight: 700; }
.legal-note {
  background: #fff7e0;
  border: 1px solid #f0d27a;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0 0 18px;
  font-size: 14.5px;
}
.legal-updated {
  margin-top: 44px;
  font-size: 14px;
  opacity: .7;
}

/* ============================================================
   COOKIE BANNER + CONSENT PLACEHOLDERS
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #1C1C1C;
  color: #f2f2f2;
  box-shadow: 0 -6px 24px rgba(0,0,0,.25);
}
.cookie-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text { margin: 0; font-size: 13.5px; line-height: 1.5; flex: 1 1 360px; }
.cookie-text a { color: #fbaf02; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-btn {
  font-family: inherit; font-size: 14px; font-weight: 700;
  padding: 11px 18px; border-radius: 10px; cursor: pointer; border: none;
  transition: background .15s ease;
}
.cookie-btn-primary { background: #fbaf02; color: #1C1C1C; }
.cookie-btn-primary:hover { background: #ffc333; }
.cookie-btn-secondary { background: transparent; color: #f2f2f2; border: 1.5px solid rgba(255,255,255,.4); }
.cookie-btn-secondary:hover { background: rgba(255,255,255,.1); }

.consent-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: #ededed;
  color: #444;
  padding: 30px 20px;
  border-radius: 8px;
  min-height: 220px;
  font-size: 14px;
  line-height: 1.5;
}
.consent-placeholder a { color: #1C1C1C; }
.consent-load-btn {
  font-family: inherit; font-weight: 700; font-size: 14px;
  background: #1C1C1C; color: #fff; border: none;
  padding: 11px 18px; border-radius: 10px; cursor: pointer;
}
.consent-load-btn:hover { background: #000; }

.form-privacy {
  font-size: 13px;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: .9;
}
.form-privacy a { color: #272626; }

.form-status {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.form-status:empty { margin: 0; }
.form-status.success { color: #1a5e20; }
.form-status.error { color: #9b1c1c; }

@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; }
  .cookie-buttons { justify-content: stretch; }
  .cookie-btn { flex: 1; }
  .legal-content { padding: 36px 18px 60px; font-size: 15px; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.notfound {
  background: var(--cheese);
  text-align: center;
  padding: 70px 22px 90px;
  color: #1C1C1C;
}
.notfound-code {
  font-size: clamp(72px, 18vw, 140px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
  margin: 0;
}
.notfound-title {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 8px 0 14px;
}
.notfound-text {
  font-size: 17px;
  font-weight: 500;
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
.notfound-btn { background: #111; color: #fff; }

/* ============================================================
   WAVE VARIANTS – kürzere Perioden auf Desktop, breitere auf Mobile
   ============================================================ */
.footer-wave svg.wave-m,
.menu-quote-wave svg.wave-m,
.wave-top svg.wave-m { display: none; }

@media (max-width: 640px) {
  .footer-wave svg.wave-d,
  .menu-quote-wave svg.wave-d,
  .wave-top svg.wave-d { display: none; }
  .footer-wave svg.wave-m,
  .menu-quote-wave svg.wave-m,
  .wave-top svg.wave-m { display: block; }
}
