/* =====================================================
   LANGMAYR'S FEINKOSTFLINTE – Premium Design System
   Inspired by Noma, Eleven Madison Park, Geranium
   ===================================================== */

/* ===== 1. CSS Custom Properties ===== */
:root {
  /* Color Palette – 60/30/10 Rule */
  --dark-green: #1d2b24;
  --dark-green-light: #243a30;
  --dark-brown: #2a2119;
  --gold: #c2a66d;
  --gold-dark: #8a7340;       /* WCAG AA on light bg (4.5:1 on #faf9f7) */
  --gold-light: #d4bc8a;
  --gold-muted: rgba(194, 166, 109, 0.6);
  --gold-subtle: rgba(194, 166, 109, 0.12);
  --gold-glow: rgba(194, 166, 109, 0.06);
  --white: #ffffff;
  --off-white: #faf9f7;
  --cream: #f3ede4;
  --text: #333333;
  --text-light: #666666;      /* 6.3:1 on white – WCAG AA */
  --heading: #1a1a1a;

  /* Golden Ratio Spacing Scale */
  --sp-xs: 8px;
  --sp-sm: 13px;
  --sp-md: 21px;
  --sp-lg: 34px;
  --sp-xl: 55px;
  --sp-2xl: 89px;
  --sp-3xl: 144px;

  /* Fluid Typography (clamp) */
  --fs-hero: clamp(2.4rem, 5vw, 4.2rem);
  --fs-h1: clamp(2rem, 4vw, 3.4rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.4rem);
  --fs-h3: clamp(0.85rem, 1.2vw, 1rem);
  --fs-body: clamp(1.05rem, 1.2vw, 1.15rem);
  --fs-small: clamp(0.9rem, 1vw, 1rem);
  --fs-caption: clamp(0.8rem, 0.9vw, 0.88rem);

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;

  /* Transitions – luxury = slow, deliberate */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast: 0.3s var(--ease-out);
  --t-normal: 0.5s var(--ease-out);
  --t-slow: 0.8s var(--ease-out);
  --t-reveal: 1.2s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.618;
  color: var(--text);
  background-color: var(--dark-green);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

/* ===== Skip-Navigation ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--dark-green);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== Focus-Visible (Global) ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover,
a:focus {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

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

::selection {
  background: rgba(194, 166, 109, 0.25);
  color: var(--heading);
}

/* ===== 3. Typography – Cormorant Garamond ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--heading);
  line-height: 1.25;
  font-weight: 300;
}

h1 {
  font-size: var(--fs-h1);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-lg);
}

h2 {
  font-size: var(--fs-h2);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-lg);
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-gold {
  color: var(--gold);
}

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

.section-subtitle {
  text-align: center;
  color: var(--text);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  margin-top: calc(var(--sp-lg) * -0.5);
  margin-bottom: var(--sp-xl);
  font-weight: 300;
}

.section--dark .section-subtitle,
.section--brown .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== 4. Layout ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(60px, 8vw, var(--sp-3xl)) 0;
  background-color: var(--off-white);
}

.section--white {
  background-color: var(--white);
}

.section--dark {
  background: radial-gradient(ellipse at 30% 50%, var(--dark-green-light) 0%, var(--dark-green) 70%);
  color: rgba(255, 255, 255, 0.85);
}

.section--dark h2,
.section--dark h3 {
  color: var(--gold);
}

.section--dark a {
  color: var(--gold);
}

.section--dark a:hover {
  color: var(--gold-light);
}

.section--brown {
  background: radial-gradient(ellipse at 70% 40%, #3a2e27 0%, var(--dark-brown) 70%);
  color: rgba(255, 255, 255, 0.85);
}

.section--brown h2,
.section--brown h3 {
  color: var(--gold);
}

.section--brown a {
  color: var(--gold);
}

.section--brown a:hover {
  color: var(--gold-light);
}

.section--cream {
  background-color: var(--cream);
}

.section--nopadding {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 560px;
}

.grid {
  display: grid;
  gap: var(--sp-lg);
}

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

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

/* ===== 5. Header – Frosted Glass ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(29, 43, 36, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(194, 166, 109, 0.08);
  transition: all var(--t-normal);
}

.header.scrolled {
  background: rgba(29, 43, 36, 0.95);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
  border-bottom-color: rgba(194, 166, 109, 0.15);
}

.header.past-hero {
  background: rgba(29, 43, 36, 0.97);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 65px;
  width: auto;
  transition: opacity var(--t-fast);
}

.header__logo:hover img {
  opacity: 0.85;
}

/* Nav – Mobile */
.nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background: rgba(29, 43, 36, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--sp-lg) 24px;
  overflow-y: auto;
  z-index: 999;
}

.nav.open {
  display: block;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__item {
  border-bottom: 1px solid rgba(194, 166, 109, 0.08);
}

.nav__link {
  display: block;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color var(--t-fast);
}

.nav__link:hover,
.nav__link:focus,
.nav__link--active {
  color: var(--gold);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color var(--t-fast);
}

.nav__dropdown-toggle:hover,
.nav__dropdown-toggle:focus {
  color: var(--gold);
}

.nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform var(--t-fast);
}

.nav__dropdown-toggle.open svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  display: none;
  padding-left: var(--sp-md);
}

.nav__dropdown-menu.open {
  display: block;
}

.nav__dropdown-menu a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

.nav__dropdown-menu a:hover {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transition: all var(--t-fast);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== 6. Hero Section – Cinematic ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh; /* fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-height);
  overflow: hidden;
  background-color: var(--dark-green);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Cinematic gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(29, 43, 36, 0.5) 0%, rgba(29, 43, 36, 0.7) 50%),
    linear-gradient(
      to bottom,
      rgba(29, 43, 36, 0.7) 0%,
      rgba(29, 43, 36, 0.55) 30%,
      rgba(29, 43, 36, 0.55) 50%,
      rgba(29, 43, 36, 0.75) 75%,
      rgba(29, 43, 36, 0.97) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--sp-xl) 24px;
  max-width: 740px;
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
  animation: heroFadeIn 1.2s var(--ease-out) both;
}

.hero__logo {
  width: 180px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 60px rgba(194, 166, 109, 0.15));
}

.hero h1 {
  color: var(--gold-light);
  font-size: var(--fs-hero);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 0, 0, 0.3);
}

.hero__philosophy {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  line-height: 1.618;
  max-width: 500px;
  margin: 0 auto;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
  animation: heroFadeIn 1.2s var(--ease-out) 0.45s both;
}

.hero__philosophy::before,
.hero__philosophy::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: var(--sp-lg) auto;
  opacity: 0.35;
}

.hero__tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  animation: heroFadeIn 1.2s var(--ease-out) 0.3s both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 3s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.15; height: 50px; }
  50% { opacity: 0.5; height: 65px; }
}

/* ===== 7. Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px var(--sp-lg);
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-caption);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: 1px solid var(--gold-dark);
  color: var(--gold-dark);
  background: transparent;
  transition: all var(--t-normal);
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background-color: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(194, 166, 109, 0.15);
}

/* Buttons on dark backgrounds keep bright gold */
.section--dark .btn,
.section--brown .btn,
.footer .btn,
.cookie-banner .btn {
  border-color: var(--gold);
  color: var(--gold);
}

.section--dark .btn:hover,
.section--brown .btn:hover,
.footer .btn:hover,
.cookie-banner .btn:hover {
  background-color: var(--gold);
  color: var(--dark-green);
}

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

.btn--filled:hover,
.btn--filled:focus {
  background-color: var(--gold-light);
  color: var(--dark-green);
  box-shadow: 0 4px 24px rgba(194, 166, 109, 0.2);
}

.btn--small {
  padding: 11px 24px;
  font-size: 0.7rem;
}

/* ===== 8. Intro Section ===== */
.intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.intro h2 {
  color: var(--heading);
  font-weight: 300;
}

.intro h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: var(--sp-lg) auto 0;
  opacity: 0.4;
}

/* Aktuelles Headline */
.aktuelles-headline {
  color: var(--heading);
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  letter-spacing: 0.12em;
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

/* Karfreitag Event Card */
.karfreitag-text {
  margin: var(--sp-xl) auto;
  max-width: 480px;
  padding: var(--sp-lg);
  background: var(--white);
  border: 1px solid var(--gold-subtle);
  position: relative;
  text-align: center;
  transition: max-width 0.3s ease;
}

.karfreitag-text.card--wide {
  max-width: 720px;
}

.karfreitag-text::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.karfreitag-text p {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--heading);
}

.karfreitag-text .card__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: var(--sp-sm);
}

.highlight-link {
  color: var(--gold-dark);
  font-weight: 400;
  font-size: var(--fs-body);
  border-bottom: 1px solid var(--gold-dark);
  transition: all var(--t-fast);
}

.highlight-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Flinten-Insider Hint */
.insider-hint {
  margin: var(--sp-lg) auto;
  max-width: 480px;
  text-align: center;
}

.insider-hint p {
  font-size: var(--fs-small);
  line-height: 1.8;
  color: var(--heading);
  margin-bottom: var(--sp-md);
}

.insider-hint strong {
  color: var(--heading);
}

/* Opening Hours */
.hours-headline {
  color: var(--heading);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-xs);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md) var(--sp-lg);
  max-width: 640px;
  margin: var(--sp-lg) auto;
  text-align: center;
}

.hours-grid__item {
  padding: var(--sp-md) var(--sp-sm);
  border-left: 1px solid rgba(194, 166, 109, 0.15);
}

.hours-grid__item strong {
  color: var(--heading);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: var(--fs-caption);
}

.hours-closed {
  text-align: center;
  color: var(--heading);
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-top: var(--sp-sm);
  font-size: var(--fs-small);
}

/* ===== 9. Contact Boxes ===== */
.contact-box {
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(194, 166, 109, 0.12);
  position: relative;
  transition: all var(--t-normal);
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  transition: width var(--t-normal);
}

.contact-box:hover::before {
  width: 60px;
}

.contact-box:hover {
  border-color: rgba(194, 166, 109, 0.3);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

.contact-box h3 {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  margin-bottom: var(--sp-sm);
  color: var(--gold);
  letter-spacing: 0.12em;
}

.contact-box p {
  font-size: var(--fs-small);
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
}

.contact-box a:not(.btn) {
  color: var(--gold);
}

.contact-box .btn {
  margin-top: var(--sp-md);
}

/* ===== 10. Speisekarte Section ===== */
.speisekarte-single {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.speisekarte-single__link {
  margin-bottom: var(--sp-xl);
}

.speisekarte-single__link a {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h2);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--gold);
  border-bottom: 1px solid rgba(194, 166, 109, 0.25);
  padding-bottom: 4px;
  transition: border-color var(--t-fast);
}

.speisekarte-single__link a:hover {
  border-bottom-color: var(--gold);
}

.speisekarte-single__link a span {
  display: inline-block;
  transition: transform var(--t-fast);
  font-size: 0.85em;
}

.speisekarte-single__link a:hover span {
  transform: translateX(4px);
}

.speisekarte-single h3 {
  color: var(--gold);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-bottom: var(--sp-lg);
}

.speisekarte-single__images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
}

.speisekarte-single__images .gallery__item {
  max-width: 280px;
  width: 100%;
}

.speisekarte-single__images img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ===== 11. Product Grid – Noma-Style Overlays ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.product-card {
  overflow: hidden;
  position: relative;
  cursor: default;
  aspect-ratio: 4/3;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter var(--t-slow);
  filter: brightness(0.85) saturate(0.85);
}

.product-card:hover img {
  transform: scale(1.02);
  filter: brightness(0.7) saturate(0.9);
}

.product-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-lg) var(--sp-md);
  margin: 0;
  color: var(--white);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  transform: translateY(0);
  transition: all var(--t-normal);
}

.product-card:hover h3 {
  padding-bottom: var(--sp-xl);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}

.product-card h3::before {
  content: '';
  position: absolute;
  bottom: var(--sp-md);
  left: var(--sp-md);
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t-normal);
}

.product-card:hover h3::before {
  opacity: 0.6;
}

/* ===== 12. USP Section ===== */
.usp-heading {
  font-size: var(--fs-h2);
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto var(--sp-2xl);
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--gold);
  line-height: 1.4;
}

.usp-card {
  text-align: center;
  padding: 0;
}

.usp-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: var(--sp-lg);
  filter: brightness(0.9) saturate(0.85);
  transition: filter var(--t-slow);
}

.usp-card:hover img {
  filter: brightness(1) saturate(1);
}

.usp-card h3 {
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: var(--sp-sm);
  color: var(--gold);
}

.usp-card p {
  font-size: var(--fs-small);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
  margin: 0 auto;
}

/* ===== 13. News Section ===== */
.news-single {
  max-width: 660px;
  margin: var(--sp-lg) auto 0;
  padding: var(--sp-xl);
  background: var(--cream);
  position: relative;
}

.news-single::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--sp-xl);
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.news-single h3 {
  color: var(--heading);
  margin-bottom: var(--sp-md);
  font-weight: 300;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  letter-spacing: 0.04em;
  text-transform: none;
}

.news-single p {
  font-size: var(--fs-small);
  line-height: 1.8;
}

.news-single em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--gold);
  padding: var(--sp-md) 0;
  border-left: 1px solid rgba(194, 166, 109, 0.25);
  padding-left: var(--sp-md);
  margin: var(--sp-md) 0;
  line-height: 1.6;
}

.news-reservation {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(194, 166, 109, 0.15);
}

/* ===== 14. Location Box ===== */
.location-box {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(194, 166, 109, 0.1);
  position: relative;
}

.location-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.location-box h3 {
  color: var(--heading);
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.location-box p {
  color: var(--text);
  font-size: var(--fs-small);
}

/* ===== 15. Speisekarte Gallery (Subpage) ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
}

.gallery__item {
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(194, 166, 109, 0.12);
  transition: all var(--t-normal);
}

.gallery__item:hover {
  border-color: rgba(194, 166, 109, 0.4);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.02);
}

/* ===== 16. Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-normal), visibility var(--t-normal);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t-fast);
}

.lightbox__close:hover {
  color: var(--gold);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t-fast);
}

.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--gold);
}

.lightbox__prev { left: 10px; }
.lightbox__next { right: 10px; }

/* ===== 17. Google Maps ===== */
.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  cursor: pointer;
  border: 1px solid rgba(194, 166, 109, 0.12);
  transition: border-color var(--t-fast);
}

.map-placeholder:hover {
  border-color: rgba(194, 166, 109, 0.3);
}

.map-placeholder p {
  font-size: var(--fs-small);
  color: var(--text);
  text-align: center;
  max-width: 400px;
  padding: 0 20px;
}

/* ===== 18. Footer – Dark Green, Minimal ===== */
.footer {
  background: var(--dark-green);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0 var(--sp-md);
  position: relative;
}

.footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(194, 166, 109, 0.2), transparent);
  margin-bottom: var(--sp-xl);
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-sm) var(--sp-md);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-caption);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color var(--t-fast);
}

.footer__links a:hover,
.footer__links button:hover {
  color: var(--gold);
}

.footer__links button {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-caption);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color var(--t-fast);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.footer__logo {
  width: 160px;
  opacity: 0.6;
  transition: opacity var(--t-fast);
}

.footer__logo:hover {
  opacity: 0.9;
}

.footer p,
.footer a {
  font-size: var(--fs-caption);
  line-height: 1.618;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--sp-sm);
  text-align: center;
  font-size: 0.78rem;
  color: #b0bab4;
}

.footer__bottom a {
  color: #b0bab4;
}

.footer__bottom a:hover,
.footer__bottom button:hover {
  color: var(--gold);
}

.footer__bottom button,
.footer__nav button {
  color: #b0bab4;
  font: inherit;
  font-size: inherit;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-fast);
}

/* ===== 19. Cookie Consent ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: rgba(29, 43, 36, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--white);
  padding: var(--sp-md);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  border-top: 1px solid rgba(194, 166, 109, 0.1);
}

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

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.cookie-banner p {
  font-size: var(--fs-small);
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(194, 166, 109, 0.3);
  text-underline-offset: 3px;
}

.cookie-banner__buttons {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

.cookie-banner__buttons .btn {
  font-size: 0.85rem;
  padding: 10px 24px;
}

.cookie-banner .btn--filled {
  background-color: var(--gold);
  color: var(--dark-green);
}

.cookie-banner .btn--filled:hover,
.cookie-banner .btn--filled:focus {
  background-color: var(--gold-light);
  color: var(--dark-green);
}

/* ===== 20. Scroll Animations – Refined ===== */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-reveal),
              transform var(--t-reveal);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveals – 150ms between siblings */
.grid .fade-in:nth-child(2),
.product-grid .product-card:nth-child(2) {
  transition-delay: 0.15s;
}

.grid .fade-in:nth-child(3),
.product-grid .product-card:nth-child(3) {
  transition-delay: 0.3s;
}

.product-grid .product-card:nth-child(4) { transition-delay: 0.15s; }
.product-grid .product-card:nth-child(5) { transition-delay: 0.3s; }
.product-grid .product-card:nth-child(6) { transition-delay: 0.45s; }
.product-grid .product-card:nth-child(7) { transition-delay: 0.15s; }
.product-grid .product-card:nth-child(8) { transition-delay: 0.3s; }
.product-grid .product-card:nth-child(9) { transition-delay: 0.45s; }

.fade-in-left {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity var(--t-reveal),
              transform var(--t-reveal);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity var(--t-reveal),
              transform var(--t-reveal);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__logo,
  .hero h1,
  .hero__tagline,
  .hero__philosophy {
    animation: none;
  }
}

/* ===== 21. Jobs Page ===== */
.jobs-list {
  list-style: none;
  padding: 0;
}

.jobs-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(194, 166, 109, 0.08);
}

.jobs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 5px;
  height: 5px;
  background-color: var(--gold);
  border-radius: 50%;
}

.jobs-highlight {
  background-color: var(--dark-green);
  color: var(--white);
  padding: var(--sp-lg);
  border-left: 1px solid var(--gold);
  margin: var(--sp-md) 0;
}

.jobs-highlight strong {
  color: var(--gold);
}

/* ===== 22. Legal Pages ===== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 300;
  margin-top: var(--sp-xl);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid rgba(194, 166, 109, 0.12);
}

.legal-content h3 {
  font-size: var(--fs-body);
  margin-top: var(--sp-lg);
}

.legal-content address {
  font-style: normal;
  line-height: 1.618;
  margin: 1rem 0;
}

/* ===== 23. Page Header (Subpages) ===== */
.page-header {
  background: radial-gradient(ellipse at 50% 60%, var(--dark-green-light) 0%, var(--dark-green) 70%);
  padding: var(--sp-xl) 0;
  margin-top: var(--header-height);
  text-align: center;
}

.page-header h1 {
  color: var(--gold);
  font-weight: 300;
  margin: 0;
}

.page-header p {
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--sp-xs);
}

.breadcrumb {
  font-size: var(--fs-caption);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--sp-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
}

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

/* ===== 24. Wochenkarte ===== */
.wochenkarte-preview {
  text-align: center;
}

.wochenkarte-preview img {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(194, 166, 109, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* ===== Media Queries ===== */

/* Tablet */
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

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

  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-sm);
  }

  .hero__logo {
    width: 220px;
  }

  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer__links {
    justify-content: flex-start;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
  }

  .cookie-banner__buttons {
    flex-shrink: 0;
  }

  .usp-card img {
    height: 260px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --header-height: 90px;
  }

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

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-md);
  }

  /* Desktop Navigation */
  .hamburger {
    display: none;
  }

  .nav {
    display: block;
    position: static;
    height: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    overflow: visible;
  }

  .nav__list {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .nav__item {
    border-bottom: none;
  }

  .nav__link {
    padding: 10px var(--sp-sm);
    font-size: var(--fs-caption);
    position: relative;
    letter-spacing: 0.22em;
  }

  .nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--sp-sm);
    right: var(--sp-sm);
    height: 1px;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s var(--ease-out);
  }

  .nav__link:hover::after,
  .nav__link--active::after {
    transform: scaleX(1);
  }

  /* Desktop Dropdown */
  .nav__dropdown-toggle {
    padding: 10px var(--sp-sm);
    font-size: var(--fs-caption);
    gap: 6px;
    justify-content: center;
    letter-spacing: 0.22em;
  }

  .nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(29, 43, 36, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--sp-xs) 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(194, 166, 109, 0.2);
  }

  .nav__dropdown-menu a {
    padding: 12px 24px;
    letter-spacing: 0.12em;
  }

  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu {
    display: block;
  }

  .hero__brand {
    flex-direction: row;
    gap: var(--sp-xl);
  }

  .hero__logo {
    width: 260px;
  }

  .hero h1 {
    text-align: left;
  }

  .page-header {
    padding: var(--sp-2xl) 0;
  }

  .usp-card img {
    height: 300px;
  }

  .usp-heading {
    margin-bottom: var(--sp-2xl);
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
    padding: 0 var(--sp-lg);
  }
}

/* iOS parallax fix */
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }
}
