/* ===== DESIGN SYSTEM — in-kulmbach.de ===== */

/* --- Inter Font (lokal gehostet) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700.woff2') format('woff2');
}

/* --- Variables --- */
:root {
  --navy: #000127;
  --navy-light: #000a3d;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --max-w: 1100px;
  --nav-h: 64px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(0, 1, 39, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.nav-brand img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Layout --- */
.page { padding-top: var(--nav-h); }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Section --- */
.section {
  padding: 80px 0;
}
.section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-desc {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

/* --- Hero (Startseite) --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-copyright {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.hero-copyright:hover {
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 600px) {
  .hero-copyright {
    font-size: 0.7rem;
    bottom: 12px;
    right: 16px;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 1, 39, 0.3) 0%, rgba(0, 1, 39, 0.6) 50%, rgba(0, 1, 39, 0.98) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Hero cards (links to sections) */
.hero-cards {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  color: var(--white);
}
.hero-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* --- Search bar --- */
.search-bar {
  margin-bottom: 20px;
}
.search-bar input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.search-bar input::placeholder { color: var(--gray-500); }
.search-bar input:focus { border-color: var(--white); }

/* --- Filter bar --- */
.filter-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 7px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--gray-400);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* --- Filter Sidebar Layout --- */
.filter-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.filter-sidebar-wrapper {
  position: relative;
}
.filter-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  max-height: calc(100vh - var(--nav-h) - 40px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.filter-sidebar::-webkit-scrollbar { width: 4px; }
.filter-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.filter-content { min-width: 0; }

/* Filter Card */
.filter-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 12px;
}
.filter-card__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.filter-card__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.filter-card__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s;
  user-select: none;
}
.filter-card__item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.filter-card__item.active {
  background: rgba(255, 255, 255, 0.08);
}
.filter-card__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  transition: color 0.15s;
}
.filter-card__item.active .filter-card__label {
  color: #fff;
}
.filter-card__count {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Custom Radio */
.filter-card__radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s;
}
.filter-card__item.active .filter-card__radio {
  border-color: #fff;
}
.filter-card__item.active .filter-card__radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Custom Checkbox */
.filter-card__checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s;
}
.filter-card__item.active .filter-card__checkbox {
  border-color: #fff;
  background: #fff;
}
.filter-card__item.active .filter-card__checkbox::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--navy);
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(45deg);
}

/* Filter Search Input */
.filter-card__search {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.filter-card__search::placeholder { color: var(--gray-500); }
.filter-card__search:focus { border-color: rgba(255, 255, 255, 0.4); }

/* Color dot for event categories */
.filter-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile filter toggle */
.filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
}
.filter-toggle:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.filter-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .filter-layout {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .filter-sidebar-wrapper {
    display: none;
  }
  .filter-sidebar-wrapper.open {
    display: block;
  }
  .filter-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .filter-toggle {
    display: flex;
  }
}

/* --- Week tabs --- */
.week-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.week-tab {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.week-tab:hover,
.week-tab.active {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* --- Cards (generic) --- */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* --- Restaurant cards --- */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.rc-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.rc-name {
  font-size: 0.95rem;
  font-weight: 700;
}
.rc-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-400);
  letter-spacing: 0.06em;
}
.rc-body { padding: 12px 20px; }
.dish {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  gap: 12px;
}
.dish:last-child { border-bottom: none; }
.dish-info { flex: 1; }
.dish-name { font-size: 0.9rem; line-height: 1.4; }
.dish-tags { display: flex; gap: 4px; margin-top: 4px; flex-wrap: wrap; }
.tag {
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tag.vegetarisch { background: rgba(76, 175, 80, 0.12); color: #81c784; }
.tag.vegan { background: rgba(139, 195, 74, 0.12); color: #aed581; }
.tag.pasta { background: rgba(255, 152, 0, 0.1); color: #ffb74d; }
.tag.fleisch { background: rgba(233, 30, 99, 0.08); color: #f48fb1; }
.dish-price {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  white-space: nowrap;
}
.closed-notice {
  padding: 24px;
  text-align: center;
  color: var(--gray-500);
  font-style: italic;
}

/* --- Stats band --- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.stat-item {
  background: var(--navy);
  padding: 32px 20px;
  text-align: center;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  color: var(--gray-500);
  font-size: 0.8rem;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Newsletter CTA --- */
.nl-cta {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.nl-cta h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.nl-cta p {
  color: var(--gray-400);
  max-width: 400px;
  line-height: 1.6;
}
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-form input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.9rem;
  min-width: 220px;
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input::placeholder { color: var(--gray-500); }
.nl-form input:focus { border-color: var(--white); }
.nl-form--col { flex-direction: column; width: 100%; }
.nl-cta--col { flex-direction: column; align-items: stretch; }
.nl-restaurants {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}

/* --- Newsletter Pills (Mittag + Events) --- */
.nl-pill-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.nl-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.nl-pill:hover {
  background: rgba(255,255,255,0.1);
}
.nl-pill.selected {
  background: #fff;
  border-color: #fff;
}
.nl-pill-indicator {
  display: none;
}
.nl-pill-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nl-pill-name {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}
.nl-pill.selected .nl-pill-name {
  color: #000127;
}
.nl-pill-addr {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
}
.nl-pill.selected .nl-pill-addr {
  color: rgba(0,1,39,0.5);
}
.nl-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.nl-check:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
}
.nl-check input { display: none; }
.nl-check-mark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}
.nl-check input:checked ~ .nl-check-mark {
  background: var(--white);
  border-color: var(--white);
}
.nl-check input:checked ~ .nl-check-mark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--navy);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.nl-check-label {
  font-size: 0.85rem;
  color: var(--gray-300);
}
.nl-check input:checked ~ .nl-check-label {
  color: var(--white);
}
.nl-error {
  display: none;
  color: #f48fb1;
  font-size: 0.82rem;
  margin: 0;
}
.nl-success {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #c8e6c9;
}
.nl-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.4;
}
.nl-check--privacy {
  border: none !important;
  padding: 6px 0 !important;
}
.nl-check--privacy .nl-check-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.nl-form .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--white);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gray-200);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

/* --- Job cards --- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.job-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.job-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 12px;
}
.job-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.jbadge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.jb-vz { background: rgba(59, 130, 246, 0.12); color: #93bbfd; }
.jb-tz { background: rgba(168, 85, 247, 0.12); color: #c4b5fd; }
.jb-mini { background: rgba(249, 115, 22, 0.12); color: #fdba74; }
.job-company {
  color: var(--gray-300);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.job-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-top: 6px;
}
.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--gray-500);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* --- Post box (forms) --- */
/* Newsletter-Box (Events-Seite) */
.nl-box {
  background: linear-gradient(135deg, rgba(0, 1, 39, 0.85) 0%, rgba(0, 1, 39, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 32px;
}
.nl-box-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.nl-box-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: #fff;
}
.nl-box-text p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 0.95rem;
}
.nl-box-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nl-field input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.nl-field input::placeholder { color: rgba(255, 255, 255, 0.4); }
.nl-field input:focus { outline: none; border-color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.12); }
.nl-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nl-cats .nl-cat-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 16px;
  border-radius: 24px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  user-select: none;
}
.nl-cats .nl-cat-item:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.nl-cats .nl-cat-item.checked {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  color: #D4AF37;
}
.nl-cats .nl-cat-item input[type="checkbox"] {
  display: none;
}
.nl-cats .nl-select-all {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 4px;
  transition: color 0.2s;
  text-decoration: none;
}
.nl-cats .nl-select-all:hover {
  color: rgba(255, 255, 255, 0.8);
}
.nl-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s;
}
.nl-privacy:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}
.nl-privacy input {
  accent-color: #D4AF37;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  cursor: pointer;
  flex-shrink: 0;
}
.nl-privacy a { color: rgba(255, 255, 255, 0.75); text-decoration: underline; }
.nl-privacy a:hover { color: #fff; }
.nl-box .btn--primary {
  align-self: flex-start;
  background: #D4AF37;
  color: #000127;
  font-weight: 700;
  border: none;
  padding: 14px 32px;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nl-box .btn--primary:hover {
  background: #e0c04a;
  transform: translateY(-1px);
}
.nl-box .nl-error {
  color: #fca5a5;
  font-size: 0.85rem;
  margin: 0;
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.15);
  border-radius: var(--radius);
}
.nl-box .nl-success {
  color: #86efac;
  font-size: 0.9rem;
  padding: 14px 18px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  line-height: 1.5;
}
.nl-box .nl-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

@media (max-width: 768px) {
  .nl-box { padding: 28px; }
  .nl-box-inner { grid-template-columns: 1fr; gap: 24px; }
  .nl-pill-container { grid-template-columns: 1fr; }
}

.post-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.post-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.post-box > p {
  color: var(--gray-400);
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1 / -1; }
.fg label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}
.fg input,
.fg select,
.fg textarea {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
}
.fg select option { background: var(--navy-light); }
.fg textarea { resize: vertical; min-height: 90px; }
.price-note {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 14px;
  grid-column: 1 / -1;
}
.price-note strong { color: var(--white); }

/* --- Event cards --- */
.events-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.events-grid--images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.event-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.event-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.ev-content {
  display: flex;
  align-items: stretch;
}
.ev-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.ev-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ev-date {
  background: var(--white);
  color: var(--navy);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 100px;
}
.ev-day {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.ev-mon {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.ev-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.ev-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ev-loc {
  color: var(--gray-500);
  font-size: 0.8rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ev-meta-line {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.ev-time, .ev-end-date {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.ev-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.ev-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0.06em;
  display: inline-block;
}
.ev-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}
/* Image view: stack vertically */
.events-grid--images .ev-content {
  flex-direction: column;
}
.events-grid--images .ev-date {
  min-width: auto;
}
.events-grid--images .ev-title {
  white-space: normal;
}

/* --- Map --- */
#restaurant-map {
  height: 380px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

/* --- Legal pages --- */
.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  line-height: 1.8;
  color: var(--gray-300);
}
.legal h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.legal h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 28px 0 8px;
}
.legal p { margin-bottom: 12px; }
.legal a { color: var(--gray-200); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--white); }

/* --- About --- */
.about-content {
  max-width: 640px;
}
.about-content p {
  color: var(--gray-400);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* --- Footer --- */
.footer {
  background: #000010;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  color: var(--gray-500);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 220px;
  margin-top: 10px;
}
.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-partners {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-partners-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 16px;
}
.footer-partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-partners-logos a {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-partners-logos a:hover {
  opacity: 0.9;
}
.footer-partners-logos img {
  height: 32px;
  width: auto;
  filter: grayscale(100%) brightness(2);
  transition: filter 0.2s;
}
.footer-partners-logos a:hover img {
  filter: grayscale(0%) brightness(1);
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-600);
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
}
.modal h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal p {
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.6;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--gray-500);
  font-size: 1.2rem;
}

/* --- Event Detail Page --- */
.ed-hero {
  height: 0;
  transition: height 0.3s;
}
.ed-hero--has-image {
  height: 360px;
  background-size: cover;
  background-position: center 30%;
  position: relative;
}
.ed-hero--has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,1,39,0.7) 100%);
}
.ed-hero-copyright {
  position: absolute;
  bottom: 16px;
  right: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 3;
  transition: color 0.2s ease;
}
.ed-hero-copyright:hover {
  color: rgba(255, 255, 255, 1);
}
.ed-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 24px;
  transition: color 0.2s;
}
.ed-back:hover { color: var(--white); }
.ed-header { margin-bottom: 24px; }
.ed-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.ed-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.ed-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
}
.ed-meta-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.ed-meta-value {
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.5;
}
.ed-desc {
  font-size: 0.95rem;
  color: var(--gray-300, #d1d5db);
  line-height: 1.8;
  margin-bottom: 28px;
}
.ed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.ed-map-section { margin-bottom: 40px; }
.ed-map-container {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  height: 300px;
}
#ed-map { height: 300px; width: 100%; }
.ed-loading, .ed-error {
  text-align: center;
  color: var(--gray-400);
  padding: 40px 0;
  font-size: 0.95rem;
}
.event-card { cursor: pointer; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(0, 1, 39, 0.98);
    backdrop-filter: blur(16px);
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-toggle { display: flex; }
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero { min-height: 80vh; }
  .ed-hero--has-image { height: 240px; }
  .ed-hero-copyright { font-size: 0.7rem; bottom: 12px; right: 16px; }
  .ed-meta { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .nl-cta { padding: 24px; flex-direction: column; }
  .post-box { padding: 24px; }
  .hero-cards { flex-direction: column; align-items: center; }
  .hero-card { width: 100%; max-width: 260px; text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .restaurant-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
