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

:root {
  --bg: #0a0a0a;
  --secondary: #141414;
  --gold: #c8a45d;
  --gold-accent: #d4af37;
  --white: #ffffff;
  --muted: #b5b5b5;
  --glass: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(200, 164, 93, 0.15);
}

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.font-display { font-family: 'Playfair Display', Georgia, serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.glass { background: var(--glass); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); }
.section-padding { padding: 3rem 0; }
@media (min-width: 768px) { .section-padding { padding: 4rem 0; } }
@media (min-width: 1024px) { .section-padding { padding: 6rem 0; } }
.page-top { padding-top: 5.5rem; }
@media (min-width: 768px) { .page-top { padding-top: 8rem; } }

.luxury-divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin-top: 1rem; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

.section-heading { margin-bottom: 2rem; }
.section-heading .subtitle { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.section-heading h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; letter-spacing: 0.02em; line-height: 1.2; }
@media (min-width: 640px) { .section-heading h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-heading h2 { font-size: 3rem; } }
.section-heading.center .luxury-divider { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; min-height: 44px; border: none; cursor: pointer;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.3s; text-align: center;
  max-width: 100%; min-width: 0;
}
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-accent); box-shadow: 0 0 30px rgba(200,164,93,0.3); }
.btn-outline { background: transparent; border: 1px solid rgba(200,164,93,0.4); color: var(--gold); }
.btn-outline:hover { background: rgba(200,164,93,0.1); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.5rem 1rem; min-height: 40px; font-size: 0.7rem; }

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}
.form-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.5rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; max-width: 100%; min-width: 0; padding: 0.75rem 1rem; min-height: 48px;
  background: rgba(20,20,20,0.5); border: 1px solid rgba(200,164,93,0.2);
  color: var(--white); font-size: 1rem; box-sizing: border-box;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-width: 0 !important;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  overflow: hidden;
}
input[type="date"]::-webkit-datetime-edit,
input[type="time"]::-webkit-datetime-edit,
input[type="date"]::-webkit-datetime-edit-fields-wrapper,
input[type="time"]::-webkit-datetime-edit-fields-wrapper {
  min-width: 0;
  max-width: 100%;
  padding: 0;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  margin: 0 0 0 0.2rem;
  padding: 0;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button {
  display: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: rgba(200,164,93,0.5); }
.form-textarea { min-height: 120px; resize: vertical; }

.card { border: 1px solid rgba(200,164,93,0.1); background: rgba(20,20,20,0.3); max-width: 100%; min-width: 0; overflow-x: clip; }
.card-body { padding: 1rem; min-width: 0; max-width: 100%; }
@media (min-width: 640px) { .card-body { padding: 1.5rem; } }

.grid-2 { display: grid; gap: 1rem; width: 100%; min-width: 0; }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 1rem 0; transition: all 0.5s; }
.navbar.scrolled { padding: 0.5rem 0; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo-img { width: auto; height: 2.45rem; max-width: 11.5rem; object-fit: contain; }
@media (min-width: 640px) { .navbar-logo-img { height: 2.9rem; max-width: 13.5rem; } }
@media (min-width: 1024px) { .navbar-logo-img { height: 3.2rem; max-width: 15rem; } }
@media (max-width: 639px) {
  .navbar { padding: 0.45rem 0; }
  .navbar.scrolled { padding: 0.35rem 0; }
  .navbar-inner { gap: 0.35rem; }
  .navbar-logo-img { height: 2.15rem !important; max-width: 9.75rem !important; width: auto !important; }
  .lang-btn { min-width: 30px; min-height: 30px; padding: 0.125rem 0.25rem; font-size: 0.7rem; }
  .menu-toggle { min-width: 40px; min-height: 40px; }
}
.navbar-nav { display: none; gap: 0.85rem; align-items: center; flex-wrap: nowrap; justify-content: flex-end; min-width: 0; }
@media (min-width: 1280px) { .navbar-nav { display: flex; } }
.navbar-nav a { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); transition: color 0.3s; white-space: nowrap; }
.navbar-nav a:hover, .navbar-nav a.active { color: var(--gold); }
.navbar-actions { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
.lang-btn { min-width: 36px; min-height: 36px; padding: 0.25rem 0.5rem; background: none; border: none; color: var(--muted); font-size: 0.75rem; cursor: pointer; }
.lang-btn.active { color: var(--gold); }
.cart-link { position: relative; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.cart-badge { position: absolute; top: 4px; right: 4px; width: 16px; height: 16px; background: var(--gold); color: var(--bg); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.menu-toggle { min-width: 44px; min-height: 44px; background: none; border: none; color: var(--white); cursor: pointer; }
@media (min-width: 1280px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(14,14,14,0.96) 100%);
  backdrop-filter: blur(20px);
  display: none; flex-direction: column;
  overflow-y: auto; padding: 1rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
}
.mobile-menu.open { display: flex; }
.mobile-menu-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0 1.5rem; border-bottom: 1px solid rgba(200,164,93,0.12);
}
.mobile-menu-top .mobile-menu-close { margin-left: auto; }
.mobile-menu-brand-img { width: auto; height: 2.4rem; max-width: 12rem; object-fit: contain; }
.mobile-menu-close {
  min-width: 44px; min-height: 44px; background: rgba(200,164,93,0.08);
  border: 1px solid rgba(200,164,93,0.2); border-radius: 999px;
  color: var(--white); font-size: 1.5rem; line-height: 1; cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.mobile-menu-close:hover { background: rgba(200,164,93,0.15); border-color: rgba(200,164,93,0.35); }
.mobile-menu-nav {
  display: flex; flex-direction: column; gap: 0.65rem;
  padding: 1.75rem 0; flex: 1;
}
.mobile-menu-link {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 52px; padding: 0.875rem 1.25rem;
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  letter-spacing: 0.06em; text-align: center;
  border: 1px solid rgba(200,164,93,0.22);
  background: rgba(20,20,20,0.55);
  color: var(--white);
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.mobile-menu-link:hover {
  border-color: rgba(200,164,93,0.45);
  background: rgba(200,164,93,0.08);
  color: var(--gold);
}
.mobile-menu-link.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(200,164,93,0.22), rgba(200,164,93,0.08));
  color: var(--gold);
  box-shadow: 0 0 24px rgba(200,164,93,0.12);
}
.mobile-menu-lang {
  display: flex; gap: 0.5rem; justify-content: center;
  padding-top: 0.5rem; border-top: 1px solid rgba(200,164,93,0.12);
}
.mobile-lang-btn {
  flex: 1; max-width: 5rem; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem; letter-spacing: 0.15em;
  border: 1px solid rgba(200,164,93,0.2);
  background: rgba(20,20,20,0.45); color: var(--muted);
  transition: all 0.25s;
}
.mobile-lang-btn.active, .mobile-lang-btn:hover {
  border-color: var(--gold); color: var(--gold); background: rgba(200,164,93,0.1);
}

/* Hero */
.hero { position: relative; min-height: 100dvh; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero video, .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.4), var(--bg)); }
.hero-content { position: relative; z-index: 10; padding: 6rem 1rem 4rem; width: 100%; max-width: 56rem; }
.hero-logo { width: 8.5rem; height: 8.5rem; object-fit: contain; margin: 0 auto 1.25rem; display: block; filter: drop-shadow(0 8px 32px rgba(0,0,0,0.45)); }
@media (min-width: 640px) { .hero-logo { width: 11rem; height: 11rem; margin-bottom: 1.5rem; } }
@media (min-width: 1024px) { .hero-logo { width: 13.75rem; height: 13.75rem; } }
.hero-content .tag { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 2rem; letter-spacing: 0.02em; line-height: 1.15; margin-bottom: 1rem; }
@media (min-width: 640px) { .hero-content h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-content h1 { font-size: 4.5rem; } }
.hero-btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  width: 100%;
  max-width: 36rem;
  margin: 2rem auto 0;
}
.hero-btns .btn {
  width: 100%;
  padding: 0.7rem 0.4rem;
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  white-space: normal;
}
.hero-btns .hero-application-btn {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 0.275rem);
}
@media (min-width: 640px) {
  .hero-btns { gap: 0.75rem; max-width: 40rem; }
  .hero-btns .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
  .hero-btns .hero-application-btn { width: calc(50% - 0.375rem); }
}
.btn-hero-menu {
  background: var(--gold); color: var(--bg); border: 2px solid var(--gold-accent);
  font-weight: 600; padding: 0.875rem 1.75rem; min-height: 48px;
  box-shadow: 0 4px 24px rgba(200,164,93,0.35), 0 0 0 0 rgba(200,164,93,0.45);
  animation: hero-menu-pulse 2.5s ease-in-out infinite;
}
.btn-hero-menu:hover {
  background: var(--gold-accent); border-color: #e8c878; color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(200,164,93,0.55);
  animation: none;
}
.btn-hero-menu svg { flex-shrink: 0; transition: transform 0.25s ease; }
.btn-hero-menu:hover svg { transform: translateX(4px); }
@keyframes hero-menu-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(200,164,93,0.35), 0 0 0 0 rgba(200,164,93,0.5); }
  50% { box-shadow: 0 4px 24px rgba(200,164,93,0.35), 0 0 0 8px rgba(200,164,93,0); }
}
.hero-hours { margin-top: 2rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
.hero-hours-title { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.35rem; }
.hero-hours p,
.hero-hours-body { margin: 0; }
.hero-kitchen-hours-title { margin-top: 0.7rem !important; }
.hero-address {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem;
  padding: 0.5rem 0.875rem; max-width: 100%;
  border: 1px solid rgba(200,164,93,0.35); background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px); text-decoration: none; transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.hero-address:hover { border-color: rgba(200,164,93,0.7); background: rgba(20,20,20,0.75); transform: translateY(-1px); }
.hero-address-icon { display: flex; flex-shrink: 0; color: var(--gold); }
.hero-address-icon svg { width: 14px; height: 14px; }
.hero-address-text { font-size: 0.75rem; line-height: 1.45; color: var(--white); letter-spacing: 0.02em; text-align: left; }
@media (min-width: 640px) { .hero-address-text { font-size: 0.8125rem; } }
/* Footer */
.footer { border-top: 1px solid rgba(200,164,93,0.1); background: rgba(20,20,20,0.5); padding: 2.5rem 0; margin-top: auto; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer h3, .footer h4 { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 1rem; }
.footer h4 { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; font-family: 'Inter', sans-serif; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer a { color: var(--muted); font-size: 0.875rem; transition: color 0.3s; }
.footer a:hover { color: var(--gold); }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(200,164,93,0.1); display: flex; flex-direction: column; gap: 1rem; align-items: center; font-size: 0.75rem; color: var(--muted); }
.footer-minimal {
  padding: 0.95rem 0;
  margin-top: auto;
  border-top: 0;
  background: #0a0a0a;
}
.footer-minimal .footer-bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-legal a { color: var(--muted); font-size: 0.75rem; }
.footer-legal a:hover,
.footer-legal a.active { color: var(--gold); }
@media (max-width: 639px) {
  .hero-content { padding: 5.1rem 0.85rem 5.25rem; }
  .hero-hours { font-size: 0.78rem; }
  .footer-minimal { padding: 0.8rem 0; }
  .footer-minimal .footer-bottom {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.68rem;
  }
  .footer-legal { justify-content: center; gap: 0.75rem; }
}
.floating-contact {
  position: fixed; right: 0.45rem; bottom: 3.5rem;
  z-index: 850; display: flex; flex-direction: column; gap: 0.55rem;
}
@media (min-width: 768px) { .floating-contact { right: 1.25rem; bottom: 1.5rem; gap: 0.85rem; } }
.floating-contact-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.floating-contact-btn svg { display: block; flex-shrink: 0; }
@media (max-width: 767px) { .floating-contact-btn { width: 40px; height: 40px; } }
@media (min-width: 768px) { .floating-contact-btn { width: 54px; height: 54px; } }
.floating-contact-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  filter: brightness(1.08);
}
.floating-contact-btn--phone { background: #007aff; }
.floating-contact-btn--whatsapp { background: #25d366; }
.floating-contact-btn--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.hero-hours-extra { margin-top: 0.5rem; }
.hero-hours-extra a { color: var(--gold); font-size: 0.75rem; text-decoration: underline; }
.extra-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin: 0 auto 2rem; max-width: 48rem; padding: 0 1rem; }
.cms-content { color: var(--muted); line-height: 1.7; }
.contact-block p { color: var(--muted); }
.contact-block a { color: var(--gold); }
.floating-contact-btn--facebook { background: #1877f2; }
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); }
.modal-content { background: #141414; margin: 8% auto; padding: 30px; border: 1px solid var(--gold); width: 90%; max-width: 600px; color: #fff; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--gold); }
.modal-header h2 { margin: 0; color: #fff; font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.close { color: #aaa; font-size: 28px; font-weight: bold; cursor: pointer; line-height: 20px; }
.close:hover { color: #fff; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.hours-table th, .hours-table td { padding: 12px; text-align: left; border-bottom: 1px solid #333; }
.hours-table th { background-color: #1a1a1a; font-weight: 600; color: var(--gold); }
.hours-table td { color: var(--muted); }
@media (max-width: 639px) {
  .modal {
    padding: 0.75rem;
    overflow-y: auto;
  }
  .modal-content {
    width: 100%;
    max-width: none;
    margin: 0.75rem auto;
    padding: 1rem;
    max-height: calc(100dvh - 3rem);
    overflow-y: auto;
  }
  .modal-header {
    margin-bottom: 0.65rem;
    padding-bottom: 0.7rem;
    gap: 0.75rem;
  }
  .modal-header h2 {
    min-width: 0;
    font-size: 1.15rem;
    line-height: 1.2;
  }
  .close { flex: 0 0 auto; }
  .hours-table {
    margin-top: 0.5rem;
    table-layout: fixed;
    font-size: 0.82rem;
  }
  .hours-table th,
  .hours-table td {
    padding: 0.62rem 0.45rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hours-table th:first-child,
  .hours-table td:first-child { width: 38%; }
}
body.cip-embed .navbar { padding-left: 48px; }
main { flex: 1; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 7.25rem 1rem 2.25rem;
  text-align: center;
}
.page-hero .hero-bg,
.page-hero .hero-overlay { position: absolute; inset: 0; }
.page-hero .hero-bg { width: 100%; height: 100%; object-fit: cover; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-logo {
  width: 7.5rem; height: 7.5rem; margin: 0 auto 1rem;
  object-fit: contain; filter: drop-shadow(0 8px 32px rgba(0,0,0,.45));
}
@media (min-width: 640px) { .page-hero-logo { width: 9rem; height: 9rem; } }
.res-wrap { max-width: 40rem; margin: 0 auto; width: 100%; min-width: 0; overflow-x: clip; }
.form-input, .form-select, .form-textarea { color-scheme: dark; }
.form-input::placeholder, .form-textarea::placeholder { color: #7a7a7a; }
.res-legal { text-align: center; color: var(--muted); font-size: 0.8125rem; margin-top: 1.25rem; }
.flatpickr-wrapper {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
}
.flatpickr-input { cursor: pointer; width: 100% !important; max-width: 100%; min-width: 0; box-sizing: border-box; }
.res-date-field { grid-column: 1 / -1; }
.res-date-field .flatpickr-wrapper,
.res-date-field .flatpickr-input {
  display: block;
  width: 100% !important;
  max-width: 100%;
}
.res-time-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  width: 100%;
  min-width: 0;
}
@media (min-width: 640px) {
  .res-time-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.res-time-row .form-group { margin-bottom: 1rem; min-width: 0; }
.res-time-row .form-input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.res-time-row input[type="time"]::-webkit-datetime-edit,
.res-time-row input[type="time"]::-webkit-datetime-edit-fields-wrapper {
  min-width: 0;
  padding: 0;
}
@media (max-width: 639px) {
  .form-input, .form-textarea, .form-select,
  input[type="date"], input[type="time"] {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}
.flatpickr-calendar {
  max-width: calc(100vw - 1.25rem) !important;
}
@media (max-width: 479px) {
  .flatpickr-calendar.open {
    left: 0.625rem !important;
    right: 0.625rem !important;
    width: calc(100vw - 1.25rem) !important;
  }
}
.alert { padding: 1rem 1.15rem; margin-bottom: 1.15rem; border: 1px solid; line-height: 1.55; }
.alert-success { border-color: rgba(200,164,93,0.5); background: rgba(200,164,93,0.1); color: var(--gold); text-align: center; }
.alert-error { border-color: rgba(239,68,68,0.5); background: rgba(239,68,68,0.1); color: #fca5a5; }
.alert-error ul { margin: 0; padding-left: 1.15rem; }
.form-label .required { color: #e8a0a0; }
.help-text { font-size: 0.75rem; color: var(--muted); margin-top: 0.35rem; }
.stars-group { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
.stars-group label { display: flex; align-items: center; gap: 0.4rem; margin: 0; color: var(--muted); font-size: 0.85rem; cursor: pointer; }
.stars-group input { width: auto; accent-color: var(--gold); }
.dsgvo-text { font-size: 0.8125rem; color: var(--muted); line-height: 1.55; margin: 1rem 0; padding: 0.9rem; border: 1px solid rgba(200,164,93,0.15); background: rgba(20,20,20,0.4); }
.checkbox-group { display: flex; gap: 0.65rem; align-items: flex-start; margin: 1rem 0 1.25rem; }
.checkbox-group input { width: auto; margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--gold); }
.checkbox-group label { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.45; }

.menu-wrap { max-width: 46rem; margin: 0 auto; }
.menu-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 1.1rem;
}
.menu-back:hover { color: var(--gold-accent); }
.menu-cats { display: flex; flex-direction: column; gap: 0.65rem; }
.menu-cat-btn {
  display: flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0.9rem 1.25rem;
  border: 1px solid rgba(200,164,93,0.35); background: rgba(20,20,20,0.5);
  color: var(--white); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
}
.menu-cat-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,164,93,0.08); }
.menu-desc {
  color: var(--muted); font-size: 0.9rem; line-height: 1.65;
  margin-bottom: 1.15rem; padding: 0.95rem 1rem;
  border: 1px solid rgba(200,164,93,0.12); background: rgba(20,20,20,0.35);
}
.menu-item { padding: 1rem 0; border-bottom: 1px solid rgba(200,164,93,0.12); }
.menu-item:last-child { border-bottom: 0; }
.menu-item-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 1.35; }
.menu-item-number { color: var(--gold); font-size: 0.85rem; margin-right: 0.3rem; }
.menu-item-desc { color: var(--muted); font-size: 0.85rem; margin-top: 0.35rem; line-height: 1.55; }
.menu-empty { padding: 1rem 0; color: var(--muted); }
.menu-extras { margin-top: 0.85rem; padding: 0.85rem; border: 1px solid rgba(200,164,93,0.15); background: rgba(20,20,20,0.4); }
.menu-extras-label { display: block; color: var(--gold); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.55rem; }
.menu-extra-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted); font-size: 0.85rem;
}
.menu-extra-item:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-price { color: var(--gold); font-weight: 600; white-space: nowrap; }
.menu-item-row { display: grid; grid-template-columns: 1fr auto; gap: 0.85rem 1.1rem; align-items: start; }
.menu-prices { display: flex; flex-direction: column; align-items: flex-end; gap: 0.45rem; }
.menu-price-line { display: flex; align-items: center; justify-content: flex-end; gap: 0.55rem; }
.menu-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 24px; padding: 0 0.55rem; border-radius: 999px;
  border: 1px solid rgba(200,164,93,0.3); color: var(--muted); font-size: 0.7rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.menu-badge-klein { border-color: rgba(34,197,94,0.45); color: #bbf7d0; background: rgba(11,47,30,0.55); }
.menu-badge-gross { border-color: var(--gold); color: #fff8b0; background: rgba(58,42,0,0.55); }
.menu-cat-extras { margin-top: 1.25rem; }

/* Hasankeyf Speisekarte layout (menu.php) */
.menu-page { background: var(--bg); }
.menu-page-hero {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(200,164,93,0.1);
}
.menu-page-hero .hero-bg,
.menu-page-hero .hero-overlay { position: absolute; inset: 0; }
.menu-page-hero .hero-bg { width: 100%; height: 100%; object-fit: cover; }
.menu-page-hero .container { position: relative; z-index: 2; }
@media (max-width: 639px) {
  .menu-page { padding-top: 0; }
  .menu-page-hero {
    padding-top: 5.65rem;
    padding-bottom: 1.75rem;
  }
}
.menu-page-title {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 8vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--white);
  font-weight: 500;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
@media (max-width: 639px) {
  .menu-page-hero .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .menu-page-title {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
    letter-spacing: 0;
    line-height: 1.05;
  }
}
@media (max-width: 359px) {
  .menu-page-title { font-size: 1.55rem; }
}
.menu-page-divider { margin: 1rem auto 0; }
@media (max-width: 639px) {
  .menu-page-divider { margin-top: 0.55rem; margin-bottom: 0; }
}
.menu-page-lead {
  margin-top: 0.95rem;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 639px) {
  .menu-page-lead {
    margin-top: 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #b5b5b5;
  }
}
.menu-page-lead-extra {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.menu-inline-link {
  color: var(--gold-accent, #c8a45d);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.menu-inline-link:hover { color: #e0c078; }

.menu-allergen-bar {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200, 164, 93, 0.12);
}
.menu-allergen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.62rem 1.25rem;
  border: 1px solid rgba(200, 164, 93, 0.45);
  background: rgba(14, 14, 14, 0.85);
  color: var(--gold, #c8a45d);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.menu-allergen-btn:hover {
  border-color: rgba(200, 164, 93, 0.8);
  background: rgba(200, 164, 93, 0.08);
  color: #ead9a8;
}
@media (min-width: 768px) {
  .menu-allergen-bar { margin-top: 2rem; padding-top: 1.5rem; }
  .menu-allergen-btn {
    min-height: 48px;
    padding: 0.7rem 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }
}
@media (max-width: 639px) {
  .menu-allergen-bar {
    margin-top: 1.25rem;
    padding-top: 1rem;
  }
  .menu-allergen-btn {
    width: 100%;
    max-width: 100%;
  }
}

.menu-page-body { padding-top: 1.5rem; }
@media (max-width: 639px) {
  .menu-page-body { padding-top: 0.4rem; }
  .menu-page .section-padding { padding-top: 0.4rem; padding-bottom: 1.6rem; }
}
.menu-category-grid { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
@media (min-width: 768px) { .menu-category-grid { gap: 1.25rem; } }
@media (min-width: 1024px) { .menu-category-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.menu-category-card {
  display: block;
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(200,164,93,0.14);
  background: rgba(14,14,14,0.62);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.menu-category-card:hover {
  border-color: rgba(200,164,93,0.45);
  transform: translateY(-2px);
}
.menu-category-card-img { aspect-ratio: 4/3; overflow: hidden; background: #141414; }
.menu-category-card-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-category-card-body { padding: 0.95rem 0.85rem 1.1rem; text-align: center; }
.menu-category-card-body h3 {
  font-size: clamp(0.78rem, 3.3vw, 1.55rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.3rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  min-height: 2.4em;
}
.menu-category-count {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-category-desc {
  margin: 0.35rem 0 0.45rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-back-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.75rem;
}
.menu-back-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-back-link:hover { color: var(--gold-accent); }
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
}
.menu-item-card {
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(200,164,93,0.14);
  background: rgba(14,14,14,0.62);
  overflow: hidden;
}
.menu-item-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  overflow: hidden;
  background: #141414;
}
.menu-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-item-thumb--plain {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(200,164,93,0.12) 0%, rgba(10,10,10,0.85) 100%),
    #141414;
  color: var(--gold);
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  letter-spacing: 0.04em;
}
.menu-item-body { padding: 0.85rem; }
.menu-item-card .menu-item-title {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 0.35rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}
.menu-item-card .menu-item-number {
  color: var(--gold);
  font-size: 0.9em;
  margin-right: 0.2rem;
}
.menu-item-card .menu-item-price {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.menu-item-card .menu-item-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #b5b5b5;
  margin: 0;
}
.menu-item-card .menu-item-ingredients {
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(181,181,181,0.85);
  margin: 0.5rem 0 0;
}
.menu-item-card .menu-item-ingredients span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.625rem;
}
.menu-item-card .menu-extras {
  margin-top: 0.55rem;
  padding: 0.55rem 0.65rem;
}
.menu-item-card .menu-extra-item {
  font-size: 0.75rem;
  padding: 0.28rem 0;
}
.menu-page .menu-cat-extras {
  margin-top: 1.25rem;
  border: 1px solid rgba(200,164,93,0.14);
  background: rgba(14,14,14,0.62);
  padding: 0.95rem 1rem;
}
.menu-page .menu-desc {
  margin-bottom: 1rem;
}
.menu-empty-state {
  max-width: 36rem;
  margin: 2rem auto 0;
  padding: 2rem;
  border: 1px solid rgba(200,164,93,0.12);
  background: rgba(20,20,20,0.4);
  text-align: center;
}
.menu-empty-state p { font-size: 0.875rem; line-height: 1.7; margin: 0; color: var(--muted); }
@media (max-width: 639px) {
  .menu-category-grid,
  .menu-items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
  .menu-category-card-img { aspect-ratio: 4 / 3; }
  .menu-category-card-body { padding: 0.8rem 0.45rem 0.95rem; }
  .menu-category-card-body h3 {
    min-height: 0;
    font-size: clamp(0.68rem, 3.2vw, 0.88rem);
    line-height: 1.12;
  }
  .menu-category-count { font-size: 0.62rem; letter-spacing: 0.1em; }
  .menu-item-body { min-width: 0; padding: 0.65rem; }
  .menu-item-card .menu-item-title { font-size: 0.82rem; line-height: 1.15; margin-bottom: 0.25rem; }
  .menu-item-card .menu-item-price { font-size: 0.65rem; margin-bottom: 0.35rem; letter-spacing: 0.07em; }
  .menu-item-card .menu-item-desc,
  .menu-item-card .menu-item-ingredients {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .menu-item-card .menu-item-desc { font-size: 0.69rem; line-height: 1.38; }
  .menu-item-card .menu-item-ingredients { font-size: 0.64rem; line-height: 1.38; margin-top: 0.35rem; }
}

.menu-allergen-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}
.menu-allergen-badge {
  display: inline-block;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  background: rgba(200, 164, 93, 0.08);
  color: var(--gold-accent, #c8a45d);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.menu-page .menu-desc--intro {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #b5b5b5;
}

/* Allergenliste — text only, no images */
.allergen-page-hero {
  background: linear-gradient(180deg, #121212 0%, #080808 100%);
  padding-top: 5.5rem;
  padding-bottom: 2rem;
}
.allergen-page-hero .hero-overlay {
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 164, 93, 0.08) 0%, transparent 55%);
}
.allergen-page-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 164, 93, 0.75);
  text-align: center;
}
.allergen-cat-list {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .allergen-cat-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
}
@media (min-width: 1024px) {
  .allergen-cat-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.allergen-cat-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: 0;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(200, 164, 93, 0.16);
  background: rgba(14, 14, 14, 0.72);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.allergen-cat-link:hover {
  border-color: rgba(200, 164, 93, 0.42);
  background: rgba(20, 18, 14, 0.85);
}
.allergen-cat-link-tag {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold, #c8a45d);
}
.allergen-cat-link-name {
  font-size: clamp(0.82rem, 3vw, 1.05rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #f2f2f2;
  overflow-wrap: anywhere;
}
.allergen-cat-link-count {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(150, 150, 150, 0.95);
}
.allergen-section-label {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold, #c8a45d);
}
.allergen-item-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(200, 164, 93, 0.14);
  background: rgba(14, 14, 14, 0.55);
}
.allergen-item {
  padding: 0.95rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.allergen-item:first-child { border-top: 0; }
.allergen-item-title {
  margin: 0 0 0.35rem;
  font-size: clamp(0.88rem, 3.2vw, 1.05rem);
  line-height: 1.25;
  color: #f5f5f5;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.allergen-item .menu-item-number {
  color: var(--gold, #c8a45d);
  margin-right: 0.2rem;
}
.allergen-page .menu-item-ingredients--allergens {
  margin: 0.25rem 0 0.35rem;
}
.allergen-page .menu-allergen-badges { margin-top: 0; }

.menu-page .menu-item-ingredients--allergens {
  margin: 0.35rem 0 0.4rem;
}
.menu-page .menu-item-card .menu-allergen-badges {
  margin-top: 0;
}
.menu-page .menu-item-desc--muted {
  margin-top: 0.35rem;
  font-style: italic;
  color: rgba(181, 181, 181, 0.75);
}
.menu-page .menu-legal-note {
  margin-top: 1.5rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(200, 164, 93, 0.12);
  background: rgba(14, 14, 14, 0.45);
}
.menu-page .menu-legal-note p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.65;
  color: rgba(160, 160, 160, 0.95);
  letter-spacing: 0.02em;
}
@media (max-width: 639px) {
  .allergen-page-hero {
    padding-top: 5.65rem;
    padding-bottom: 1.5rem;
  }
  .allergen-cat-link { padding: 0.85rem 0.9rem; }
  .allergen-item { padding: 0.85rem 0.85rem; }
  .allergen-page .menu-item-card .menu-allergen-badges { gap: 0.28rem; }
  .allergen-page .menu-allergen-badge,
  .menu-page .menu-item-card .menu-allergen-badge {
    font-size: 0.56rem;
    padding: 0.16rem 0.38rem;
  }
  .menu-page .menu-legal-note {
    margin-top: 1.15rem;
    padding: 0.85rem 0.75rem;
  }
}

.about-photo { margin: 1.75rem 0 0; }
.about-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(200,164,93,0.14);
}

.legal-wrap { max-width: 46rem; margin: 0 auto; }
.legal-content { color: var(--muted); line-height: 1.7; }
.legal-content h3 {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: 1.15rem; font-weight: 500; margin: 1.6rem 0 0.55rem;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin: 0 0 1rem 1.15rem; }
.legal-content li { margin-bottom: 0.45rem; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content strong { color: var(--white); font-weight: 600; }
