/* ============================================
   TapaLoca — Premium Restaurant Website
   Design: Editorial / Magazine Style
   Dark Mode with Gold Accent
   Mobile-First, No Dependencies
   ============================================ */

/* --- Google Fonts: loaded via <link> in HTML for better performance --- */

/* --- Custom Properties --- */
:root {
  --bg: #0A0A0A;
  --bg-elevated: #141414;
  --bg-card: #1A1A1A;
  --gold: #D4AF37;
  --gold-muted: #B8941E;
  --gold-glow: rgba(212, 175, 55, 0.15);
  --text: #F5F5F5;
  --text-muted: #888888;
  --text-dim: #555555;
  --white: #FFFFFF;
  --border: #222222;
  --red: #C41E3A;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height: 72px;
  --section-padding: 120px;
  --container-width: 1200px;
  --container-narrow: 900px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.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;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

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

/* --- Gold Line Divider --- */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
}

.gold-line--center {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

.btn--gold-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn--gold-fill {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
  font-weight: 600;
}

.btn--gold-fill:hover {
  background: var(--gold-muted);
  border-color: var(--gold-muted);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.nav--transparent {
  background: transparent;
}

.nav--solid {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 1001;
}

.nav__logo .tapa {
  color: var(--red);
}

.nav__logo .loca {
  color: var(--gold);
}

.nav__links {
  display: none;
  gap: 40px;
  align-items: center;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

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

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  width: 28px;
  padding: 4px 0;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Mobile Menu Overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 100px 24px 60px;
}

.nav__mobile--open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile .nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color 0.3s ease;
}

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

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

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  z-index: 1002;
}

.lang-dropdown__toggle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.lang-dropdown__toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.lang-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.lang-dropdown--open .lang-dropdown__menu {
  display: block;
}

.lang-dropdown__item {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-dropdown__item:hover {
  background: var(--bg-card);
  color: var(--text);
}

.lang-dropdown__item--active {
  color: var(--gold);
}

/* Lang-picker in mobile overlay */
.lang-picker--mobile {
  display: flex;
  gap: 8px;
}

.lang-picker--mobile .lang-picker__btn {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  padding: 8px 14px;
  cursor: pointer;
  background: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.lang-picker--mobile .lang-picker__btn:hover {
  color: var(--text-muted);
}

.lang-picker--mobile .lang-picker__btn--active {
  color: var(--gold);
  border-color: var(--gold);
}

/* Desktop */
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .nav__toggle {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero--short {
  height: 60vh;
  min-height: 400px;
}

.hero--xs {
  height: 45vh;
  min-height: 320px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.6) 40%,
    rgba(10, 10, 10, 0.3) 70%,
    rgba(10, 10, 10, 0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px 80px;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero__title .tapa {
  color: var(--red);
}

.hero__title .loca {
  color: var(--gold);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero__page-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 12px;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section {
  padding: var(--section-padding) 0;
}

.section--elevated {
  background: var(--bg-elevated);
}

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

.section__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* ============================================
   INDEX -- INTRO SECTION
   ============================================ */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.intro__text {
  order: 2;
}

.intro__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
}

.intro__text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
}

.intro__image {
  order: 1;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.intro__image:hover img {
  transform: scale(1.03);
}

.intro__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--bg-elevated), transparent);
  pointer-events: none;
}

@media (min-width: 768px) {
  .intro {
    grid-template-columns: 1fr 1px 1fr;
    gap: 60px;
  }

  .intro__text {
    order: 1;
  }

  .intro__divider {
    width: 1px;
    height: 100%;
    background: var(--gold);
    opacity: 0.4;
    order: 2;
  }

  .intro__image {
    order: 3;
    aspect-ratio: 3/4;
  }
}

/* ============================================
   INDEX -- HIGHLIGHTS
   ============================================ */
.highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}

.highlight {
  position: relative;
  overflow: hidden;
}

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

.highlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s ease;
  filter: brightness(0.8);
}

.highlight:hover .highlight__image img {
  transform: scale(1.05);
  filter: brightness(1);
}

.highlight__info {
  padding: 20px 0 0;
}

.highlight__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.highlight__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.highlight__price {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
}

@media (min-width: 768px) {
  .highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .highlight__image {
    aspect-ratio: 3/4;
  }
}

/* ============================================
   INDEX -- OPENING HOURS
   ============================================ */
.hours {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.hours__list {
  margin-top: 40px;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.hours__row:last-child {
  border-bottom: none;
}

.hours__day {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
}

.hours__time {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hours__closed {
  color: var(--gold);
  font-style: italic;
}

/* ============================================
   INDEX -- MAP
   ============================================ */
.map-section {
  position: relative;
}

.map-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 40px 24px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, transparent 100%);
  text-align: center;
  pointer-events: none;
}

.map-section__address {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 4px;
}

.map-section__city {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.map-section__iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

@media (min-width: 768px) {
  .map-section__iframe {
    height: 500px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__brand {}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer__logo .tapa {
  color: var(--red);
}

.footer__logo .loca {
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-dim);
  max-width: 280px;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer__contact-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

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

.footer__social {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.footer__social a {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

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

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer__bottom a {
  color: var(--gold);
  transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   SPEISEKARTE -- TABS
   ============================================ */
/* ===== CATEGORY PICKER (Dropdown) ===== */
.cat-picker {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cat-picker__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.cat-picker__btn:hover {
  border-color: var(--gold-muted);
  background: var(--bg-elevated);
}

.cat-picker__btn--active {
  border-color: var(--gold);
  color: var(--gold);
}

.cat-picker__arrow {
  font-size: 0.6rem;
  transition: transform 0.3s;
}

.cat-picker__btn--active .cat-picker__arrow {
  transform: rotate(180deg);
}

.cat-picker__current {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cat-picker__reset {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

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

/* Dropdown overlay */
.cat-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 0 40px;
  overflow-y: auto;
}

.cat-dropdown.open { display: flex; }

.cat-dropdown__panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  width: 90%;
  max-width: 640px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  animation: catSlideIn 0.25s ease;
}

@keyframes catSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.cat-dropdown__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--text);
}

.cat-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cat-dropdown__item {
  padding: 14px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-body);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.cat-dropdown__item:hover {
  border-color: var(--gold-muted);
  color: var(--text);
  background: var(--bg-elevated);
}

.cat-dropdown__item--active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.cat-dropdown__item--all {
  grid-column: 1 / -1;
  border-color: var(--gold-muted);
  color: var(--gold);
}

@media (max-width: 600px) {
  .cat-dropdown__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .cat-dropdown__panel {
    padding: 24px 16px;
    border-radius: 12px;
  }
  .cat-picker { padding: 10px 16px; }
  .cat-dropdown { padding: 60px 0 24px; }
}

/* Legacy: hide old tabs if still in DOM */
.menu-tabs-wrap { display: none; }
.menu-tabs { display: none; }

.menu-tabs__tab {
  padding: 16px 24px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  background: none;
}

.menu-tabs__tab:hover {
  color: var(--text-muted);
}

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

/* Veggie Toggle */
.menu-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.menu-filter__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.menu-filter__toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-filter__toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.menu-filter__toggle--active {
  background: var(--gold);
}

.menu-filter__toggle--active::after {
  left: 23px;
  background: var(--bg);
}

/* Tagesgericht */
.tagesgericht {
  border: 1px solid var(--gold);
  padding: 32px;
  margin-bottom: 56px;
  position: relative;
}

.tagesgericht__badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 16px;
}

.tagesgericht__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  margin-top: 8px;
}

.tagesgericht__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.tagesgericht__price {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
}

.tagesgericht__allergene {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 8px;
}

/* Menu Category */
.menu-category {
  margin-bottom: 64px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category__header {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.menu-category__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 4px;
}

.menu-category__subtitle {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Menu Item */
.menu-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.3s ease;
}

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

.menu-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  flex: 1;
}

.menu-item__veggie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #4caf50;
  border-radius: 50%;
  font-size: 0.55rem;
  color: #4caf50;
  margin-left: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}

.menu-item__price {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 600px;
}

.menu-item__allergene {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.menu-item--hidden {
  display: none;
}

/* ============================================
   RESERVIERUNG -- FORM
   ============================================ */
.booking-section {
  max-width: 640px;
  margin: 0 auto;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

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

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

.form-error {
  font-size: 0.75rem;
  color: var(--red);
  display: none;
  margin-top: 4px;
}

.form-error--visible {
  display: block;
}

.form-group--error input,
.form-group--error select {
  border-color: var(--red);
}

/* Booking Success */
.booking-success {
  text-align: center;
  padding: 80px 0;
  display: none;
}

.booking-success--visible {
  display: block;
  animation: fadeInUp 0.6s var(--ease-out);
}

.booking-success__icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  color: var(--gold);
}

.booking-success h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.booking-success p {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   GALERIE -- MASONRY GRID
   ============================================ */
.gallery-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-masonry__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-masonry__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-masonry__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s ease;
  filter: brightness(0.8) saturate(0.9);
}

.gallery-masonry__item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

/* Overlay Label */
.gallery-masonry__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-masonry__item:hover .gallery-masonry__overlay {
  opacity: 1;
}

.gallery-masonry__overlay span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out);
}

.gallery-masonry__item:hover .gallery-masonry__overlay span {
  transform: translateY(0);
}

/* Zoom-Hint (oben rechts, erscheint bei Hover) */
.gallery-masonry__item::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  /* Lupe: weisser Kreis + Stiel */
  background-image:
    radial-gradient(circle at 44% 44%, transparent 5px, rgba(255,255,255,0.9) 5px, rgba(255,255,255,0.9) 6.5px, transparent 6.5px);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}

.gallery-masonry__item:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Stagger-Reveal: Container ist nur Trigger, Items animieren einzeln */
.gallery-masonry.reveal {
  opacity: 1;
  transform: none;
}

.gallery-masonry__item {
  opacity: 0;
  transform: translateY(34px) scale(0.97);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.06s);
}

.gallery-masonry.reveal--visible .gallery-masonry__item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-masonry__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Desktop: 3 Columns */
@media (min-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .gallery-masonry__item {
    aspect-ratio: 4/3;
  }

  .gallery-masonry__item--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }

  .gallery-masonry__overlay {
    padding: 24px;
  }

  .gallery-masonry__overlay span {
    font-size: 1rem;
  }
}

/* Large Desktop: bigger gaps */
@media (min-width: 1200px) {
  .gallery-masonry {
    gap: 16px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s ease;
}

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 16px;
  z-index: 2001;
}

.lightbox__counter b {
  color: var(--gold);
  font-weight: 600;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
  z-index: 2001;
  line-height: 1;
}

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

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.lightbox__nav--prev {
  left: 16px;
}

.lightbox__nav--next {
  right: 16px;
}

@media (min-width: 768px) {
  .lightbox__nav--prev {
    left: 32px;
  }

  .lightbox__nav--next {
    right: 32px;
  }
}

/* ============================================
   KONTAKT -- STACKED LAYOUT
   ============================================ */
.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-header .section__heading {
  margin-top: 8px;
}

.contact-header .gold-line {
  margin-top: 20px;
}

/* Contact Cards Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-card:hover {
  border-color: var(--gold);
  background: var(--bg-elevated);
}

.contact-card__icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-style: normal;
}

.contact-card__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-card__value {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  word-break: break-word;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Adresse + Öffnungszeiten */
.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
}

.contact-details__item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}

.contact-details__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-details {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    max-width: 700px;
  }
}

/* Contact Hours */
.contact-hours {
  padding-top: 4px;
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.85rem;
  max-width: 260px;
}

@media (min-width: 768px) {
  .contact-hours__row {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .contact-hours__row {
    margin: 0 auto;
  }
}

.contact-hours__day {
  color: var(--text);
}

.contact-hours__time {
  color: var(--text-muted);
}

.contact-hours__closed {
  color: var(--gold);
  font-style: italic;
}

/* Map Section (Full Width) */
.contact-map-section {
  position: relative;
}

.contact-map-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 32px 24px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.85) 0%, transparent 100%);
  text-align: center;
  pointer-events: none;
}

.contact-map-section__address {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-map-section__city {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.contact-map-section__iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

@media (min-width: 768px) {
  .contact-map-section__iframe {
    height: 500px;
  }
}

/* ============================================
   IMPRESSUM / DATENSCHUTZ
   ============================================ */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text);
}

.legal h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  list-style: disc;
}

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

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

.legal hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 60px 0;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  animation: slideUp 0.5s var(--ease-out) forwards;
}

.cookie-banner--visible {
  display: flex;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

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

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 1.2rem;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
  :root {
    --section-padding: 80px;
    --nav-height: 64px;
  }

  .hero__content {
    padding-bottom: 60px;
  }

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

  .tagesgericht {
    padding: 24px 20px;
  }

  .tagesgericht__badge {
    left: 20px;
  }
}

@media (min-width: 1200px) {
  :root {
    --section-padding: 140px;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .nav,
  .cookie-banner,
  .back-to-top,
  .footer {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    height: auto;
    min-height: auto;
  }
}

/* ===== REVIEWS / KUNDENSTIMMEN ===== */
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.reviews-rating__stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.reviews-rating__score {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.reviews-rating__count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  border-color: var(--gold-muted);
  transform: translateY(-4px);
}

.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.review-card__source {
  font-size: 0.75rem;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .review-card {
    padding: 24px 20px;
  }
}

/* --- Announcement Overlay --- */
.announcement {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.4s var(--ease-out);
}

.announcement--hidden {
  opacity: 0;
  pointer-events: none;
}

.announcement__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.announcement__card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-muted);
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.08);
  transform: translateY(0);
  animation: announcementSlideIn 0.5s var(--ease-out);
}

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

.announcement__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  z-index: 2;
}

.announcement__close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.announcement__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.announcement__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.announcement__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.announcement__actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .announcement__card {
    padding: 36px 24px;
  }

  .announcement__title {
    font-size: 1.4rem;
  }
}

/* --- Events Section --- */
.events-content {
  max-width: 720px;
}

.events-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* --- Events Page: News Cards --- */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
}

.event-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.3s;
}

.event-card:hover {
  border-color: var(--gold-muted);
}

.event-card__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.event-card__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.event-card__date {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --- Events Page: Info Grid --- */
.events-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.events-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

.events-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.events-info-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .events-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --- Hours Note --- */
.hours__note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 20px;
  line-height: 1.6;
  font-style: italic;
}

/* --- Drinks Only Notice --- */
.drinks-only-notice {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-muted);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 20px;
}

.drinks-only-notice p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  line-height: 1.6;
  margin: 0;
}

/* --- Menu Notice (Takeaway) --- */
.menu-notice {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.menu-notice p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}
