/* ═══════════════════════════════════════════════════════════════════════
   REBSTOCK STUBE — theme.css
   Complete production stylesheet
═══════════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
  color-scheme: dark;
  --gold:           #c8a96e;
  --gold-light:     #dfc48a;
  --gold-dark:      #9a7d4e;
  --bg-dark:        #0a0a0a;
  --bg-card:        #141414;
  --bg-section:     #111111;
  --text-light:     #f2ede4;
  --text-muted:     #9a8e7e;
  --border:         rgba(200, 169, 110, 0.2);
  --border-hover:   rgba(200, 169, 110, 0.5);
  --font-display:   'Playfair Display', Georgia, serif;
  --font-elegant:   'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Raleway', sans-serif;
  --transition:     0.4s ease;
  --container-max:  1160px;
  --container-pad:  2.5rem;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

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

address { font-style: normal; }

table { border-collapse: collapse; }

/* ── Scrollbar ──────────────────────────────────────────────────────── */
::-webkit-scrollbar         { width: 6px; }
::-webkit-scrollbar-track   { background: var(--bg-dark); }
::-webkit-scrollbar-thumb   { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Container ──────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition),
              border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  transition: height var(--transition);
}

.site-header.scrolled .logo-img {
  height: 44px;
}

/* Minimal header (inner pages — logo only) */
.site-header--minimal {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.site-header--minimal .header-inner {
  justify-content: center;
}

.site-header--minimal .logo-img {
  height: 44px;
}

/* Navigation — desktop */
.primary-nav { display: flex; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.8);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--gold); }

.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 1.8rem); }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-light);
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.3s ease, width 0.3s ease;
}

.hamburger span:nth-child(1) { width: 26px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 26px; }

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 26px; }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 26px; }

.nav-ig { display: flex; align-items: center; }
.nav-ig svg { transition: color 0.3s, transform 0.3s; }
.nav-ig:hover svg { color: var(--gold); transform: scale(1.15); }

/* ══════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {  position: absolute;
  inset: -12% 0;
  background: url('../images/restaurant.jpg') center center / cover no-repeat;
  will-change: transform;
  transition: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem 8rem;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text-light);
  margin-bottom: 1.6rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.8rem;
  max-width: 520px;
}

.btn-hero {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

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

.btn-hero--outline {
  background: transparent;
  border-color: rgba(242, 237, 228, 0.35);
  color: rgba(242, 237, 228, 0.7);
}

.btn-hero--outline:hover {
  background: rgba(242, 237, 228, 0.1);
  color: rgba(242, 237, 228, 1);
  border-color: rgba(242, 237, 228, 0.6);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: scrollBounce 2.2s ease-in-out infinite;
  cursor: pointer;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  background: var(--gold);
}

.hero-scroll-hint span:first-child  { height: 30px; opacity: 0.7; }
.hero-scroll-hint span:last-child   { height: 14px; opacity: 0.35; }

/* Awards strip */
.hero-awards {
  position: absolute;
  bottom: calc(2.4rem + 15px);
  right: var(--container-pad);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.hero-award {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.45;
  transition: opacity 0.3s ease;
  position: relative;
}

.hero-award:hover { opacity: 0.9; }

.hero-award-logo {
  display: block;
  height: 60px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-award-name {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.7);
  white-space: nowrap;
}

.hero-award-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(15, 12, 8, 0.92);
  border: 1px solid rgba(184, 150, 46, 0.35);
  color: rgba(242, 237, 228, 0.9);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  white-space: normal;
  width: 200px;
  text-align: center;
  padding: 0.65rem 0.9rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}

.hero-award-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(15, 12, 8, 0.92);
}

.hero-award:hover .hero-award-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 0.6; }
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION SHARED STYLES
══════════════════════════════════════════════════════════════════════ */
section { padding: 7rem 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.eyebrow::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-light);
  margin-bottom: 1.4rem;
}

.section-lead {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 660px;
  margin-bottom: 3.5rem;
}

.gold-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.8rem 0 2rem;
}

/* ══════════════════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════════════════ */
.section-about {
  background: var(--bg-card);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-crest {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-crest img {
  width: 280px;
  height: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1) sepia(1) saturate(0.75) hue-rotate(-5deg);
}

.about-text .eyebrow { display: block; }

.about-text p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: rgba(242, 237, 228, 0.8);
  margin-bottom: 1.2rem;
}

.about-photo {
  margin-top: 4rem;
  border-radius: 2px;
  overflow: hidden;
  max-height: 520px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ══════════════════════════════════════════════════════════════════════
   KITCHEN SECTION
══════════════════════════════════════════════════════════════════════ */
.section-kitchen {
  background: var(--bg-dark);
  padding-bottom: 1.5rem;
}

.section-kitchen .section-lead,
.section-kitchen .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kitchen > .container > .eyebrow {
  display: flex;
  justify-content: center;
  width: 100%;
}

.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 0.5rem;
}

.kitchen-showcase {
  margin: 3rem auto;
  max-width: 700px;
  border-radius: 2px;
  overflow: hidden;
  max-height: 560px;
}

.kitchen-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.kitchen-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color var(--transition), background var(--transition);
}

.kitchen-card:hover {
  border-color: var(--border-hover);
  background: rgba(200, 169, 110, 0.03);
}

.card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.4rem;
  transition: color var(--transition);
}

.kitchen-card:hover .card-num {
  color: rgba(200, 169, 110, 0.35);
}

.kitchen-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.9rem;
}

.kitchen-card p {
  font-size: 0.91rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════════
   MENU SECTION
══════════════════════════════════════════════════════════════════════ */
.section-menu {
  background: var(--bg-card);
}

.section-menu .eyebrow {
  display: flex;
  justify-content: center;
}

.section-menu .section-title,
.section-menu .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.menu-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  gap: 0;
  margin-bottom: 0;
}

.menu-tab {
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.menu-tab:hover { color: var(--gold-light); }

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

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-list {
  border-top: 1px solid var(--border);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.menu-item:hover {
  background: rgba(200, 169, 110, 0.04);
}

.menu-item-info { flex: 1; }

.menu-item-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.menu-item-info p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.menu-price {
  font-family: var(--font-elegant);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════════════
   HOURS & RESERVATION SECTION
══════════════════════════════════════════════════════════════════════ */
.section-hours {
  background: var(--bg-dark);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.8rem;
}

.hours-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.hours-table tbody tr:first-child {
  border-top: 1px solid var(--border);
}

.hours-day,
.hours-time {
  padding: 1rem 0;
  font-size: 0.93rem;
  line-height: 1.65;
  vertical-align: top;
}

.hours-day {
  color: var(--text-muted);
  width: 45%;
  font-family: var(--font-sans);
  font-weight: 300;
}

.hours-time {
  color: var(--text-light);
  font-family: var(--font-elegant);
  font-size: 1rem;
}

.hours-note {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
}

/* Reservation form */
.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154, 142, 126, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.04);
}

.form-group select {
  background-color: rgba(255, 255, 255, 0.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a8e7e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 1rem 2.4rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.4rem;
}

.btn-primary:hover {
  background: var(--gold-light);
}

/* ══════════════════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════════════════ */
.section-contact {
  background: var(--bg-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-value a {
  color: var(--text-light);
  transition: color var(--transition);
}

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

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 4rem 0 3rem;
  text-align: center;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-wappen {
  width: 52px;
  height: auto;
  filter: invert(1);
  opacity: 0.35;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.65;
}

.footer-brand em {
  font-style: italic;
  color: var(--gold-dark);
}

.footer-tagline {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.55;
}

.footer-copyright {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  opacity: 0.5;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.footer-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.55;
  transition: opacity var(--transition), color var(--transition);
}

.footer-link:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-sep {
  color: var(--text-muted);
  opacity: 0.35;
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════════════════════════════════
   FADE-IN ANIMATIONS
══════════════════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }

/* ══════════════════════════════════════════════════════════════════════
   FALLBACK / INDEX STYLES
══════════════════════════════════════════════════════════════════════ */
.site-main { min-height: 60vh; }

.post-entry {
  max-width: 760px;
  margin: 0 auto 4rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.post-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.post-content {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(242, 237, 228, 0.8);
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --container-pad: 2rem; }

  .hero-content  { padding: 0 3rem 6rem; }
  .about-grid    { gap: 3rem; }
  .contact-grid  { gap: 3rem; }
  .hours-grid    { gap: 3rem; }
  .kitchen-grid  { gap: 1.2rem; }

  .menu-tab { padding: 0.9rem 1.5rem; }

  /* News — 2 columns on tablet */
  .news-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --container-pad: 1.4rem; }

  /* Header / Nav */
  .hamburger { display: flex; }

  .primary-nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 999;
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .nav-link {
    font-size: 1rem;
    letter-spacing: 0.25em;
    padding: 0.9rem 1.5rem;
  }

  .nav-link::after { display: none; }

  /* Hero */
  .hero-content {
    padding: 0 1.6rem 5.5rem;
  }

  .hero-subtitle { font-size: 1.1rem; }

  .hero-awards { gap: 1.2rem; }
  .hero-award-logo { height: 32px; max-width: 90px; }
  .hero-award-name { display: none; }

  /* Sections */
  section { padding: 4.5rem 0; }

  .about-grid,
  .contact-grid,
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-crest { order: -1; }

  .about-crest img { width: 200px; }

  .kitchen-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .section-lead { max-width: 100%; }

  /* Menu tabs — scrollable */
  .menu-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar { display: none; }

  .menu-tab { padding: 0.9rem 1.2rem; }

  .menu-item {
    padding: 1.2rem 0.8rem;
    align-items: flex-start;
  }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Map */
  .map-wrap { aspect-ratio: 1 / 1; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .gallery-item--tall { grid-row: span 2; }
  .gallery-item--wide { grid-column: span 1; }

  /* News */
  .news-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .news-card-img { aspect-ratio: 16 / 9; }
  .news-card-body { padding: 1.2rem 1.4rem 1.6rem; }
  .news-card-title { font-size: 1.05rem; }
  .news-popup-panel { max-height: 100vh; border-radius: 0; }
  .news-popup-img-wrap { aspect-ratio: 16 / 9; }
  .news-popup-content { padding: 1.8rem 1.6rem 2.5rem; }
  .news-popup-title { font-size: 1.4rem; }
  .btn-news-all { width: 100%; text-align: center; box-sizing: border-box; }
}

@media (max-width: 480px) {
  .hero-content { padding: 0 1.2rem 5rem; }

  .hero-title { font-size: clamp(3.2rem, 16vw, 5rem); }

  .menu-item { flex-direction: column; gap: 0.35rem; }
  .menu-price { font-size: 1.1rem; }

  .kitchen-card { padding: 1.8rem; }

  .site-name { display: none; }

  /* News */
  .news-grid { grid-template-columns: 1fr; }
  .news-card-img { aspect-ratio: 16 / 9; }
  .news-card-title { font-size: 1rem; }
  .news-card-excerpt { font-size: 0.85rem; }
}


/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-gallery {
  background: var(--bg);
  padding-top: 1rem;
  padding-bottom: 0;
}

.section-gallery .container {
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 320px;
  gap: 6px;
  margin-top: 0.5rem;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  background: var(--bg-dark);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--instagram a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-instagram-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item--instagram:hover .gallery-instagram-overlay {
  opacity: 1;
}

.gallery-instagram-overlay svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke: #fff;
}

.gallery-instagram-overlay span {
  font-family: var(--font-sans, sans-serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.gallery-instagram-link {
  text-align: center;
  margin-top: 2rem;
}

.gallery-instagram-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans, sans-serif);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold, #b8962e);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.gallery-instagram-link a:hover {
  border-bottom-color: var(--gold, #b8962e);
  opacity: 0.8;
}

.gallery-instagram-link svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--gold, #b8962e);
}

/* ═══════════════════════════════════════════════════════════════
   NEWS SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-news {
  background: var(--bg);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.news-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}

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

/* Archive variant – gold border always visible */
.news-card--bordered {
  border-color: var(--gold-dark);
}

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

.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-dark);
}

.news-card-img--empty {
  background: rgba(200, 169, 110, 0.08);
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 1.6rem 1.8rem 2rem;
}

.news-card-date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.news-card-excerpt {
  font-size: 0.88rem;
  color: rgba(242, 237, 228, 0.65);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.news-card-more {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.news-card:hover .news-card-more {
  color: var(--gold-light);
  border-color: var(--gold);
}

.news-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 0;
}

.news-all-wrap {
  text-align: center;
  margin-top: 3rem;
}

.btn-news-all {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dark);
  padding: 0.85rem 2.2rem;
  transition: background 0.25s ease, color 0.25s ease;
}

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

/* ── News Popup ─────────────────────────────────────────────── */
.news-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.news-popup[hidden] { display: none; }

.news-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.news-popup-panel {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.news-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.news-popup-close:hover {
  background: var(--gold-dark);
  color: #fff;
}

.news-popup-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--bg);
}

.news-popup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-popup-content {
  padding: 2.5rem 3rem 3rem;
}

.news-popup-date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.news-popup-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.news-popup-body {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(242, 237, 228, 0.8);
}

.news-popup-body p { margin-bottom: 1.2rem; }
.news-popup-body img { max-width: 100%; height: auto; }

.news-popup-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.popup-cat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}

/* ── Single post page (no-JS fallback) ─────────────────────── */
.single-post-hero {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.single-post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-post-date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.single-post-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.single-post-body {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(242, 237, 228, 0.8);
  max-width: 720px;
}

.single-post-body p { margin-bottom: 1.3rem; }

.single-post-back {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dark);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.single-post-back:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   INSTAGRAM
   ═══════════════════════════════════════════════════════════════ */
.section-instagram {
  background: var(--bg-dark);
  text-align: center;
}

.instagram-header {
  margin-bottom: 3rem;
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: color 0.3s, gap 0.3s;
}
.instagram-handle:hover { color: var(--gold-light); gap: 1rem; }

.ig-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.instagram-sub {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

.instagram-feed {
  margin-bottom: 3rem;
}

/* Override Smash Balloon defaults for dark theme */
.instagram-feed .sbi_follow_btn a,
#sbi .sbi_follow_btn a {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
}
#sbi { background: transparent !important; }
#sbi .sbi_photo_wrap { border-radius: 0 !important; }
#sbi img { filter: brightness(0.92) contrast(1.05); transition: filter 0.4s, transform 0.4s; }
#sbi img:hover { filter: brightness(1) contrast(1.1); }

.instagram-cta { }

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.35s, color 0.35s, transform 0.35s;
}
.btn-ig svg { width: 16px; height: 16px; }
.btn-ig:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Footer Instagram link */
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.footer-ig svg { width: 16px; height: 16px; }
.footer-ig:hover { color: var(--gold); }

/* Nav Instagram icon */
.nav-ig { display: flex; align-items: center; }
.nav-ig svg { transition: color 0.3s, transform 0.3s; }
.nav-ig:hover svg { color: var(--gold); transform: scale(1.15); }

/* ═══════════════════════════════════════════════════════════════
   PAGE TEMPLATE (Impressum, Datenschutz, etc.)
   ═══════════════════════════════════════════════════════════════ */
.page-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.page-body {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(242, 237, 228, 0.8);
  max-width: 720px;
}

.page-body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-light);
  margin: 2.5rem 0 0.8rem;
  letter-spacing: 0.02em;
}

.page-body h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.8rem 0 0.6rem;
}

.page-body p { margin-bottom: 1.3rem; }

.page-body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dark);
  transition: opacity 0.2s;
}

.page-body a:hover { opacity: 0.75; }

/* ═══════════════════════════════════════════════════════════════
   NEWS ARCHIVE PAGE
   ═══════════════════════════════════════════════════════════════ */
.news-grid--archive {
  margin-top: 3rem;
}

.archive-pagination {
  margin-top: 3.5rem;
  text-align: center;
}

.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dark);
  padding: 0.55rem 1rem;
  transition: background 0.2s ease, color 0.2s ease;
  min-width: 2.6rem;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.archive-pagination .page-numbers.dots {
  border-color: transparent;
  background: none;
  color: rgba(242, 237, 228, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   PAGES BLOCK
   ═══════════════════════════════════════════════════════════════ */
.section-pages {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.pages-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.5rem;
}

.pages-list-item a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ═══════════════════════════════════════════════════════════════
   SPEISEKARTE LINK (Philosophie section)
   ═══════════════════════════════════════════════════════════════ */
.kitchen-speisekarte {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.btn-speisekarte {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dark);
  padding: 0.75rem 1.6rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-speisekarte svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  flex-shrink: 0;
}

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