:root {
  --bg: #1c2024;
  --bg-deep: #14171a;
  --bg-alt: #20252a;
  --bg-card: #262b30;
  --gold: #c9a35c;
  --gold-bright: #e6c074;
  --gold-soft: #b08b46;
  --gold-dark: #7a5e2a;
  --text: #f5f1e8;
  --text-dim: #a89f8d;
  --border: rgba(201, 163, 92, 0.18);
  --border-strong: rgba(201, 163, 92, 0.45);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --display: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --brand: 'Cinzel Decorative', 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Metallic gold: dark base -> mid gold -> bright highlight line -> mid gold -> dark base
     with sharper stops to simulate polished metal */
  --grad-gold: linear-gradient(
    160deg,
    #5a3f15 0%,
    #8a6a28 8%,
    #c8a04a 22%,
    #f0d27a 36%,
    #fff4c4 46%,
    #ffffe0 50%,
    #fff4c4 54%,
    #f0d27a 64%,
    #c8a04a 78%,
    #8a6a28 92%,
    #5a3f15 100%
  );
  --grad-gold-soft: linear-gradient(135deg, #a07a2e 0%, #d4ad5c 50%, #8a6a2a 100%);
  --grad-bg: radial-gradient(ellipse at top, rgba(201,163,92,0.10), transparent 60%), radial-gradient(ellipse at bottom, rgba(122,94,42,0.06), transparent 60%), transparent;
  --slate-tex: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='420'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.09  0 0 0 0 0.10  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  --slate-streaks: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><filter id='s'><feTurbulence type='turbulence' baseFrequency='0.012 0.18' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.06  0 0 0 0 0.08  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23s)'/></svg>");
  --shadow-gold: 0 0 40px rgba(201, 163, 92, 0.15);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background:
    radial-gradient(ellipse at 50% 0%, #2a3036 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, #181b1f 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, #161a1d 0%, transparent 55%),
    linear-gradient(180deg, #1f242a 0%, #181c20 50%, #14181b 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Slate streaks layer */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--slate-streaks);
  background-size: 800px 800px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  mix-blend-mode: overlay;
}

/* Slate noise grain layer */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--slate-tex);
  background-size: 420px 420px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.86;
  mix-blend-mode: overlay;
}

main, nav, footer, section { position: relative; z-index: 1; }
body.modal-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1.5rem; }
h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-bright); }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  transition: transform 0.3s;
}
.nav-brand:hover { transform: scale(1.03); }
.nav-brand span {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  white-space: nowrap;
  flex-wrap: nowrap;
  background: var(--grad-gold);
  background-size: 200% 200%;
  background-position: 50% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(0,0,0,0.7))
    drop-shadow(0 0 12px rgba(247, 226, 154, 0.25));
  transition: background-position 0.6s ease;
}
.nav-brand span::before,
.nav-brand span::after {
  content: '';
  display: block;
  width: 1.4em;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #c9a35c 40%, #f0d27a 50%, #c9a35c 60%, transparent);
  -webkit-text-fill-color: initial;
}
.nav-brand:hover span { background-position: 100% 50%; }
.nav-brand:hover { transform: scale(1.03); }
.nav-logo-wrap {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 78px; height: 78px;
  filter:
    drop-shadow(0 0 14px rgba(247, 226, 154, 0.55))
    drop-shadow(0 0 32px rgba(201, 163, 92, 0.35));
  transition: all 0.4s;
}
.nav-logo-wrap img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.nav.scrolled .nav-brand { font-size: clamp(1.3rem, 2vw, 1.7rem); }
.nav.scrolled .nav-logo-wrap { width: 58px; height: 58px; }
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  font-weight: 400;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1.5px;
  background: var(--grad-gold);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  position: relative;
  z-index: 110;
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease,
              background 0.3s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 8.5rem 2rem 5rem;
  background: var(--grad-bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(230, 192, 116, 0.12), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(122, 94, 42, 0.1), transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}
.hero { touch-action: pan-y; }
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
}
.hero-logo {
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Hero background slider */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: pan-y;
}
.hero-track.dragging { transition: none; }
.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(12, 14, 16, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10, 12, 14, 0.5) 0%, rgba(10, 12, 14, 0.08) 35%, rgba(10, 12, 14, 0.08) 65%, rgba(20, 24, 27, 0.7) 100%);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dots button.active {
  background: var(--grad-gold);
  box-shadow: 0 0 8px rgba(230, 192, 116, 0.6);
}
@media (max-width: 768px) {
  .hero-dots { bottom: 4rem; }
}
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 187px; height: 187px;
  margin-bottom: 2rem;
  filter:
    drop-shadow(0 0 30px rgba(247, 226, 154, 0.55))
    drop-shadow(0 0 80px rgba(201, 163, 92, 0.35));
  animation: float 6s ease-in-out infinite;
}
.hero-logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Animated sheen sweep over logos */
.logo-wrap {
  border-radius: 50%;
  overflow: hidden;
}
.logo-wrap::after {
  content: '';
  position: absolute;
  inset: -10%;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 250, 220, 0.0) 44%,
    rgba(255, 250, 220, 0.55) 48%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 250, 220, 0.55) 52%,
    rgba(255, 250, 220, 0.0) 56%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: sheenSweep 5s ease-in-out infinite;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.nav-logo-wrap::after { animation-duration: 6s; animation-delay: -2s; }

@keyframes sheenSweep {
  0%, 55% { transform: translateX(-120%); }
  90%, 100% { transform: translateX(120%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero h1 {
  margin-bottom: 1rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: var(--grad-gold);
  background-size: 200% 200%;
  background-position: 50% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 2px 0 rgba(0,0,0,0.75))
    drop-shadow(0 4px 8px rgba(0,0,0,0.5))
    drop-shadow(0 0 30px rgba(247, 226, 154, 0.22));
  animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 50% 50%; }
  50% { background-position: 100% 50%; }
}
.hero h1::before,
.hero h1::after {
  content: '';
  display: block;
  width: 1.4em;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a35c 35%, #f0d27a 50%, #c9a35c 65%, transparent);
  -webkit-text-fill-color: initial;
  flex-shrink: 0;
}
.hero .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 0, 0, 0.5);
}
.hero .intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.05rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  opacity: 0.6;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Sections */
.section {
  padding: 7rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.section.alt {
  background: linear-gradient(180deg, transparent, rgba(20, 24, 28, 0.55) 15%, rgba(20, 24, 28, 0.55) 85%, transparent);
  max-width: none;
}
.section.alt > .inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(0,0,0,0.7))
    drop-shadow(0 0 18px rgba(247, 226, 154, 0.15));
}
.section-header::after {
  content: '';
  display: block;
  width: 280px;
  max-width: 80%;
  height: 32px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 32'><g fill='none' stroke='%23c9a35c' stroke-width='1.2' stroke-linecap='round'><line x1='12' y1='16' x2='112' y2='16'/><path d='M112 16 Q 118 10 124 14 Q 128 18 124 20'/><line x1='156' y1='16' x2='268' y2='16'/><path d='M168 16 Q 162 10 156 14 Q 152 18 156 20'/></g><path fill='%23e6c074' d='M140 4 C 134 13 145 16 140 26 C 136 22 132 19 135 14 C 137 16 138 14 140 4 Z'/></svg>") no-repeat center;
  background-size: contain;
  margin: 1.5rem auto 0;
  filter: drop-shadow(0 0 6px rgba(201, 163, 92, 0.45));
}
.lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-dim);
  white-space: pre-line;
  font-size: 1.05rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* Menüs */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.menu-card {
  background: linear-gradient(145deg, rgba(38, 43, 48, 0.85), rgba(22, 26, 30, 0.85));
  backdrop-filter: blur(2px);
  border: 1px solid var(--border);
  padding: 2.2rem;
  border-radius: 4px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.menu-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201, 163, 92, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
}
.menu-card:hover::before { transform: scaleX(1); }
.menu-card:hover::after { opacity: 1; }
.menu-card h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  position: relative; z-index: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4));
}
.menu-card p { white-space: pre-line; color: var(--text-dim); font-size: 0.95rem; position: relative; z-index: 1; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
  border-radius: 4px;
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1); }
.gallery-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.9rem;
  color: var(--text);
  transform: translateY(20%);
  opacity: 0;
  transition: all 0.4s ease;
}
.gallery-item:hover .caption { transform: translateY(0); opacity: 1; }

/* About */
.about-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  white-space: pre-line;
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, transparent, rgba(8, 10, 12, 0.9) 30%);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2.5rem;
  text-align: center;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 280px;
  max-width: 80%;
  height: 32px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 32'><g fill='none' stroke='%23c9a35c' stroke-width='1.2' stroke-linecap='round'><line x1='12' y1='16' x2='112' y2='16'/><path d='M112 16 Q 118 10 124 14 Q 128 18 124 20'/><line x1='156' y1='16' x2='268' y2='16'/><path d='M168 16 Q 162 10 156 14 Q 152 18 156 20'/></g><path fill='%23e6c074' d='M140 4 C 134 13 145 16 140 26 C 136 22 132 19 135 14 C 137 16 138 14 140 4 Z'/></svg>") no-repeat center;
  background-size: contain;
  filter: drop-shadow(0 0 6px rgba(201, 163, 92, 0.4));
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-dim);
}
.footer-contact a { color: var(--gold); transition: all 0.3s; }
.footer-contact a:hover { color: var(--gold-bright); text-shadow: 0 0 12px rgba(230, 192, 116, 0.4); }
.footer-bottom { font-size: 0.85rem; color: var(--text-dim); margin-top: 1.5rem; }

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0a0d10;
    padding: 6rem 2rem 4rem;
    gap: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 105;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
    max-width: 360px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.16s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.22s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.28s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.34s; }
  .nav-links a {
    display: block;
    padding: 1.1rem 1rem;
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    font-family: var(--display);
    color: var(--gold-bright);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 24px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(201, 163, 92, 0.22);
  }
  .nav-links a::after { display: none; }
  .nav-links a:active { color: var(--gold-bright); background: rgba(201, 163, 92, 0.06); }
  body.nav-open { overflow: hidden; }
  .hero { padding: 7.5rem 1.5rem 4rem; }
  .hero-logo-wrap { width: 112px; height: 112px; margin-bottom: 1.5rem; }
  .nav-brand { font-size: 0.95rem; letter-spacing: 0.12em; gap: 0.6rem; }
  .nav-logo-wrap { width: 48px; height: 48px; }
  .nav.scrolled .nav-brand { font-size: 0.85rem; }
  .nav.scrolled .nav-logo-wrap { width: 38px; height: 38px; }
  .nav-inner { padding: 0.9rem 1.25rem; }
  .nav-brand span::before, .nav-brand span::after { width: 0.6em; }
  .hero .subtitle { font-size: 1rem; }
  .hero h1 { letter-spacing: 0.1em; gap: 0.4em; flex-wrap: wrap; justify-content: center; }
  .hero h1::before, .hero h1::after { width: 0.5em; }
  .nav-brand { letter-spacing: 0.08em; }
  .nav-brand span::before, .nav-brand span::after { width: 0.35em; }
  .section-header h2 { letter-spacing: 0.05em; }
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 10, 0.92);
  }
  .nav-links {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }
  .section { padding: 5rem 1.5rem; }
  .admin-wrap { padding: 9rem 1.5rem 4rem; }
  .login-box { margin-top: 18vh; }
  .footer-contact { flex-direction: column; gap: 1rem; }
}

/* Admin */
.admin-wrap {
  min-height: 100vh;
  padding: 7rem 2rem 4rem;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.admin-wrap h1 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.7)) drop-shadow(0 0 16px rgba(247, 226, 154, 0.18));
}
.admin-wrap h2 {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 1.7rem;
  margin: 3rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4));
}
.admin-wrap h2::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 50px; height: 2px;
  background: var(--grad-gold);
}
.admin-field { margin-bottom: 1.4rem; }
.admin-field label {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.admin-field input,
.admin-field textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1.1rem;
  font-family: var(--sans);
  font-size: 1rem;
  border-radius: 3px;
  transition: all 0.3s;
}
.admin-field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.admin-field input:focus,
.admin-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 163, 92, 0.12);
}

.btn {
  display: inline-block;
  background: var(--grad-gold);
  color: #0a0a0a;
  border: none;
  padding: 0.9rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 163, 92, 0.3); }
.btn:active { transform: translateY(0); }
.btn.secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn.secondary:hover { background: var(--gold); color: var(--bg); }

.toggle-label {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-size: 1rem !important;
  color: var(--text) !important;
}
.toggle-label input[type="checkbox"] {
  width: 22px !important;
  height: 22px;
  accent-color: #c9a35c;
  cursor: pointer;
  flex-shrink: 0;
}

.admin-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.admin-msg {
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 3px;
  font-size: 0.9rem;
}
.admin-msg.ok { background: rgba(76, 175, 80, 0.12); color: #a3d9a5; border: 1px solid rgba(76, 175, 80, 0.3); }
.admin-msg.err { background: rgba(244, 67, 54, 0.12); color: #e9a8a3; border: 1px solid rgba(244, 67, 54, 0.3); }

.login-box {
  max-width: 420px;
  margin: 14vh auto 0;
  padding: 3rem;
  background: linear-gradient(145deg, rgba(38, 43, 48, 0.92), rgba(22, 26, 30, 0.92));
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow-deep), var(--shadow-gold);
  position: relative;
  z-index: 1;
}
.login-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
}
.login-box h1 { font-size: 2.2rem; text-align: center; }

.menu-item-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  border-radius: 3px;
  transition: border-color 0.3s;
}
.menu-item-row:hover { border-color: var(--border-strong); }
.menu-item-row .remove-btn {
  position: absolute; top: 0.5rem; right: 0.5rem;
  background: transparent; border: none;
  color: var(--text-dim); cursor: pointer;
  font-size: 1.3rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  transition: all 0.2s;
}
.menu-item-row .remove-btn:hover { color: #e9a8a3; background: rgba(244, 67, 54, 0.1); }

.row-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 600px) {
  .row-grid { grid-template-columns: 1fr; }
}
.img-preview {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0a0a0a;
  border: 1px dashed var(--border);
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: border-color 0.3s;
}
.img-preview::after {
  content: '🖼  kein Bild';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.img-preview.has-img { border-style: solid; border-color: var(--border-strong); }
.img-preview.has-img::after { content: ''; }
.row-fields { min-width: 0; }
.upload-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.sub-image-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.sub-image-row .img-preview.small {
  width: 64px;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.sub-image-row .img-preview.small::after { content: ''; }
.sub-image-row .mi-src {
  flex: 1;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  border-radius: 3px;
}
.sub-image-row .mi-src:focus { outline: none; border-color: var(--gold); }
.sub-image-row .mi-remove { padding: 0.5rem 0.75rem; }
@media (max-width: 600px) {
  .sub-image-row { flex-wrap: wrap; }
  .sub-image-row .mi-src { flex-basis: 100%; order: -1; }
}

/* Menu cards with image */
.menu-card { padding: 0; overflow: hidden; }
.menu-card .card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.menu-card .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
}
.menu-card .card-body { padding: 2rem 2.2rem 2.2rem; position: relative; z-index: 1; }
.menu-card.no-img .card-body { padding-top: 2.2rem; }

/* Flames */
.flames {
  position: fixed;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
  width: 140px;
  height: 60vh;
  max-height: 600px;
  overflow: visible;
}
.flames-left { left: 0; }
.flames-right { right: 0; transform: scaleX(-1); }
.flames-center { display: none; }
.flames { transition: opacity 0.5s ease, visibility 0.5s; }

.flame {
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 110px;
  height: 220px;
  border-radius: 50% 50% 45% 45% / 70% 70% 30% 30%;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(255, 245, 200, 0.85) 0%,
    rgba(255, 190, 70, 0.65) 18%,
    rgba(255, 120, 30, 0.45) 38%,
    rgba(200, 60, 20, 0.22) 60%,
    rgba(120, 30, 10, 0.08) 78%,
    transparent 92%
  );
  filter: blur(14px);
  mix-blend-mode: screen;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}
.flame.f1 {
  transform: translateX(-50%) scale(1, 1);
  animation: flicker1 2.6s ease-in-out infinite alternate;
  opacity: 0.85;
}
.flame.f2 {
  width: 80px;
  height: 280px;
  transform: translateX(-50%) scale(1, 1);
  animation: flicker2 1.9s ease-in-out infinite alternate;
  animation-delay: -0.6s;
  opacity: 0.75;
}
.flame.f3 {
  width: 50px;
  height: 180px;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(255, 250, 220, 0.9) 0%,
    rgba(255, 210, 110, 0.6) 30%,
    rgba(255, 140, 50, 0.3) 60%,
    transparent 90%
  );
  filter: blur(8px);
  transform: translateX(-50%) scale(1, 1);
  animation: flicker3 1.4s ease-in-out infinite alternate;
  animation-delay: -1.1s;
  opacity: 0.9;
}

@keyframes flicker1 {
  0%   { transform: translateX(-50%) scale(0.92, 0.95) translateY(0);     opacity: 0.78; }
  20%  { transform: translateX(-48%) scale(1.05, 1.02) translateY(-6px);  opacity: 0.92; }
  40%  { transform: translateX(-52%) scale(0.96, 1.06) translateY(-2px);  opacity: 0.82; }
  60%  { transform: translateX(-50%) scale(1.02, 0.98) translateY(-8px);  opacity: 0.88; }
  80%  { transform: translateX(-49%) scale(0.94, 1.04) translateY(-4px);  opacity: 0.8;  }
  100% { transform: translateX(-50%) scale(1.0,  1.0)  translateY(-6px);  opacity: 0.85; }
}
@keyframes flicker2 {
  0%   { transform: translateX(-50%) scale(1.0,  0.9)  translateY(0);     opacity: 0.65; }
  30%  { transform: translateX(-47%) scale(0.94, 1.1)  translateY(-10px); opacity: 0.85; }
  60%  { transform: translateX(-53%) scale(1.06, 0.94) translateY(-4px);  opacity: 0.7;  }
  100% { transform: translateX(-50%) scale(0.98, 1.04) translateY(-8px);  opacity: 0.8;  }
}
@keyframes flicker3 {
  0%   { transform: translateX(-50%) scale(0.95, 0.9)  translateY(0);     opacity: 0.85; }
  25%  { transform: translateX(-46%) scale(1.08, 1.1)  translateY(-14px); opacity: 1;    }
  55%  { transform: translateX(-54%) scale(0.92, 1.0)  translateY(-6px);  opacity: 0.75; }
  100% { transform: translateX(-50%) scale(1.0,  0.96) translateY(-10px); opacity: 0.9;  }
}

/* Embers (small glow at base) */
.flames::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(255, 140, 40, 0.35), transparent 70%);
  filter: blur(8px);
  mix-blend-mode: screen;
  animation: emberPulse 3s ease-in-out infinite alternate;
}
@keyframes emberPulse {
  0%   { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
  100% { opacity: 0.9; transform: translateX(-50%) scale(1.05); }
}

/* Mobile: smaller side flames, no center */
@media (max-width: 768px) {
  .flames-center { display: none; }
  .flames {
    width: 90px;
    height: 40vh;
    max-height: 380px;
    opacity: 0.75;
  }
  .flames .flame { width: 70px; height: 150px; filter: blur(10px); }
  .flames .flame.f2 { width: 50px; height: 190px; filter: blur(8px); }
  .flames .flame.f3 { width: 36px; height: 130px; filter: blur(6px); }
  .flames::after { width: 110px; height: 35px; }

  body.is-scrolled .flames {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flame, .flames::after { animation: none; }
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 92, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
@media (hover: hover) { .cursor-glow.active { opacity: 1; } }

/* ===== Page loader ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0d10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.page-loader img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(247, 226, 154, 0.5)) drop-shadow(0 0 60px rgba(201, 163, 92, 0.35));
  animation: loaderPulse 1.5s ease-in-out infinite;
  opacity: 0.9;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
@keyframes loaderPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.7; }
  50%      { transform: scale(1.05); opacity: 1; }
}
@media (max-width: 768px) {
  .page-loader img { width: 120px; height: 120px; }
}

/* ===== Sparks ===== */
.sparks {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}
.sparks > span {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffd073;
  box-shadow:
    0 0 4px #fff5c8,
    0 0 10px #ffb55a,
    0 0 20px rgba(255, 160, 64, 0.7);
  opacity: 0;
  animation: sparkRise 4.5s ease-out infinite;
}
.sparks > span:nth-child(1) { animation-delay: 0s;    left: 38%; --drift: 18px; }
.sparks > span:nth-child(2) { animation-delay: 0.9s;  left: 56%; --drift: -22px; }
.sparks > span:nth-child(3) { animation-delay: 1.7s;  left: 46%; --drift: 12px;  width: 3px; height: 3px; }
.sparks > span:nth-child(4) { animation-delay: 2.4s;  left: 62%; --drift: -10px; }
.sparks > span:nth-child(5) { animation-delay: 3.1s;  left: 50%; --drift: 26px;  width: 5px; height: 5px; }
.sparks > span:nth-child(6) { animation-delay: 3.8s;  left: 42%; --drift: -16px; }
@keyframes sparkRise {
  0%   { transform: translate(-50%, 0) scale(0.6);          opacity: 0; }
  10%  { opacity: 1; }
  60%  { opacity: 0.9; }
  100% { transform: translate(calc(-50% + var(--drift, 0)), -340px) scale(0.3); opacity: 0; }
}
@media (max-width: 768px) {
  .sparks > span {
    animation-duration: 4s;
    width: 6px; height: 6px;
    box-shadow: 0 0 6px #fff5c8, 0 0 14px #ffb55a, 0 0 28px rgba(255, 160, 64, 0.8);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sparks > span { animation: none; opacity: 0; }
}

/* ===== Custom scrollbar ===== */
html { scrollbar-width: thin; scrollbar-color: #b08b46 #14181b; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #14181b; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e6c074, #c9a35c 50%, #7a5e2a);
  border-radius: 6px;
  border: 2px solid #14181b;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fff4c4, #e6c074 50%, #c9a35c);
}


/* Tilt + 3D perspective on hero logo (desktop only) */
@media (hover: hover) and (min-width: 769px) {
  .hero { perspective: 1200px; }
  .hero-logo-wrap { transform-style: preserve-3d; will-change: transform; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
  .hero-logo-wrap.tilting { transition: transform 0.08s linear; }
}

/* ===== Menu detail modal ===== */
.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(5, 7, 9, 0.9);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.menu-modal.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mm-panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  overflow-y: auto;
  background: linear-gradient(145deg, rgba(38, 43, 48, 0.98), rgba(22, 26, 30, 0.98));
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  box-shadow: var(--shadow-deep), var(--shadow-gold);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-modal.open .mm-panel { transform: translateY(0) scale(1); }
.mm-panel::before {
  content: '';
  position: sticky;
  top: 0;
  display: block;
  height: 2px;
  background: var(--grad-gold);
  z-index: 2;
}
.mm-hero {
  width: 100%;
  aspect-ratio: 16 / 8;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}
.mm-hero:empty { display: none; }
.mm-hero.no-img { display: none; }
.mm-body { padding: 2rem 2.5rem 2.5rem; }
.mm-body h3 {
  font-family: var(--display);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.mm-desc {
  white-space: pre-line;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.mm-details {
  white-space: pre-line;
  color: var(--text-dim);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}
.mm-details:empty { display: none; }
.mm-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}
.mm-images .mm-thumb {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}
.mm-images .mm-thumb:hover {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.mm-close {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  z-index: 3;
  background: rgba(20, 24, 28, 0.8);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s;
}
.mm-close:hover { background: rgba(201, 163, 92, 0.2); color: var(--gold-bright); border-color: var(--gold); }
.menu-card { cursor: pointer; }
.menu-card .card-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .menu-modal { padding: 0.75rem; }
  .mm-body { padding: 1.5rem 1.25rem 1.75rem; }
  .mm-panel { max-height: 92vh; }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(5, 7, 9, 0.95);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }
.lb-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  max-width: 92vw;
}
.lb-figure img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(201, 163, 92, 0.4);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(201, 163, 92, 0.18);
  background: #14181b;
}
.lb-figure figcaption {
  color: var(--text);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  max-width: 600px;
}
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(20, 24, 28, 0.7);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-family: var(--serif);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  line-height: 1;
  padding-bottom: 4px;
}
.lb-close { top: 1.5rem; right: 1.5rem; padding-bottom: 0; }
.lb-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-nav:hover {
  background: rgba(201, 163, 92, 0.2);
  color: var(--gold-bright);
  border-color: var(--gold);
}
@media (max-width: 600px) {
  .lb-close, .lb-nav { width: 42px; height: 42px; font-size: 1.4rem; }
  .lb-close { top: 0.75rem; right: 0.75rem; }
  .lb-prev  { left: 0.5rem; }
  .lb-next  { right: 0.5rem; }
  .lb-figure img { max-height: 72vh; }
  .lb-figure { padding: 1rem; }
}
