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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --warm-white: #fdf9f3;
  --dark: #1a1610;
  --mid: #3d3426;
  --text: #4a3f30;
  --blue-sea: #2b5f8a;
  --blue-light: #5a9ec9;
  --terracotta: #b85c38;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(26, 22, 16, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: padding 0.3s;
}
nav.scrolled { padding: 0.7rem 4rem; }
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-decoration: none;
}
.nav-logo span { color: var(--cream); font-weight: 400; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--dark);
  background: var(--gold);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  height: 100vh; min-height: 680px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(43,95,138,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(184,92,56,0.15) 0%, transparent 50%),
    linear-gradient(160deg, #0e0d0a 0%, #1f1a12 50%, #0a1520 100%);
}
/* Decorative Greek pattern overlay */
.hero-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.12'%3E%3Crect x='5' y='5' width='50' height='50'/%3E%3Crect x='10' y='10' width='40' height='40'/%3E%3Cline x1='5' y1='30' x2='55' y2='30'/%3E%3Cline x1='30' y1='5' x2='30' y2='55'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  animation: fadeUp 1.2s ease both;
}
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s both;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s both;
}
.hero-title .accent { color: var(--gold); display: block; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(245, 240, 232, 0.65);
  letter-spacing: 0.08em;
  margin: 1.2rem 0 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s both;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s both;
}
.hero-divider::before, .hero-divider::after {
  content: ''; flex: 1; max-width: 80px;
  height: 1px; background: var(--gold); opacity: 0.5;
}
.hero-divider span { color: var(--gold); font-size: 1.2rem; }
.hero-buttons {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s both;
}
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--dark);
  background: var(--gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.btn-outline {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--gold); opacity: 0.6; cursor: pointer;
  animation: bounce 2s infinite 2s;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-hint::after {
  content: ''; display: block;
  width: 1px; height: 40px;
  background: var(--gold);
  animation: lineGrow 2s infinite 2s;
}

/* ── SECTION SHARED ── */
section { padding: 7rem 4rem; }
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.7;
}
.gold-line {
  display: block; width: 50px; height: 2px;
  background: var(--gold); margin: 1.5rem 0;
}

/* ── ABOUT ── */
#about {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px; margin: 0 auto;
}
.about-image-frame {
  position: relative;
}
.about-image-frame::before {
  content: '';
  position: absolute; top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  border-radius: 2px;
}
.about-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  background: linear-gradient(135deg, #2b5f8a 0%, #1a3a50 40%, #3d2a1a 100%);
  position: relative;
}
/* SVG placeholder inside the image box */
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, #0e2535 0%, #1a3a50 50%, #2b1f12 100%);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-placeholder svg { opacity: 0.35; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.about-badge strong {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}
.about-badge span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.about-feature {
  padding: 1.2rem 1.4rem;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.04);
}
.about-feature h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.about-feature p {
  font-size: 0.82rem;
  color: var(--text);
  opacity: 0.75;
  line-height: 1.5;
}

/* ── MENU ── */
#menu {
  background: var(--dark);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
#menu::before {
  content: 'MENU';
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Cinzel', serif;
  font-size: 10rem;
  font-weight: 800;
  color: rgba(201,168,76,0.04);
  letter-spacing: 0.2em;
  pointer-events: none;
}
.menu-inner { max-width: 1300px; margin: 0 auto; }
.menu-header { margin-bottom: 4rem; }
.menu-header .section-title { color: var(--cream); }
.menu-header .section-lead { color: rgba(245,240,232,0.55); }
.menu-header .section-label { color: var(--gold); }
.menu-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.menu-tab {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: rgba(245,240,232,0.5);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 1px;
}
.menu-tab.active, .menu-tab:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  border: 1px solid rgba(201,168,76,0.1);
}
.menu-item {
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: background 0.2s;
  cursor: default;
}
.menu-item:hover { background: rgba(201,168,76,0.05); }
.menu-item-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.5rem;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 600;
}
.menu-item-price {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 1rem;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  line-height: 1.6;
}
.menu-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.15rem 0.5rem;
  margin-top: 0.6rem;
  border-radius: 1px;
}

/* ── GALLERY ── */
#galerie { padding: 7rem 4rem; background: var(--cream); }
.galerie-inner { max-width: 1300px; margin: 0 auto; }
.galerie-header { margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
}
.gallery-item {
  overflow: hidden; border-radius: 2px; position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,22,16,0);
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(26,22,16,0.3); }

/* ── TESTIMONIALS ── */
#bewertungen {
  background: var(--dark);
  padding: 7rem 4rem;
  position: relative;
}
.bew-inner { max-width: 1300px; margin: 0 auto; }
.bew-header { margin-bottom: 3.5rem; }
.bew-header .section-title { color: var(--cream); }
.bew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bew-card {
  padding: 2rem 2.2rem;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.02);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.2s;
}
.bew-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.bew-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.bew-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.bew-author {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.bew-location {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.3);
  margin-top: 0.2rem;
}

/* ── RESERVIERUNG ── */
#reservierung {
  background: var(--warm-white);
  padding: 7rem 4rem;
}
.res-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.res-inner .section-label, .res-inner .section-title { text-align: center; }
.res-inner .gold-line { margin: 1.5rem auto; }
.res-inner .section-lead { margin: 0 auto 3rem; text-align: center; }
.res-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.res-form input, .res-form select, .res-form textarea {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(61,52,38,0.2);
  background: var(--cream);
  color: var(--dark);
  outline: none;
  border-radius: 1px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.res-form input:focus, .res-form select:focus, .res-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.res-form .full { grid-column: span 2; }
.res-form textarea { resize: vertical; min-height: 100px; }
.res-submit {
  grid-column: span 2;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 1.1rem 3rem;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.res-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.25); }
.res-status {
  max-width: 640px; margin: 0 auto 1.4rem;
  padding: 0.9rem 1.2rem; border-radius: 2px;
  font-size: 0.9rem; letter-spacing: 0.02em;
}
.res-status.ok { background: rgba(43,95,138,0.12); border: 1px solid var(--blue-sea); color: var(--blue-sea); }
.res-status.err { background: rgba(184,92,56,0.12); border: 1px solid var(--terracotta); color: var(--terracotta); }

/* ── KONTAKT ── */
#kontakt {
  background: var(--mid);
  padding: 5rem 4rem;
}
.kontakt-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; align-items: start;
}
.kontakt-brand .nav-logo { font-size: 1.6rem; display: block; margin-bottom: 1rem; }
.kontakt-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(245,240,232,0.5);
  line-height: 1.7;
  max-width: 320px;
}
.kontakt-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.kontakt-col ul { list-style: none; }
.kontakt-col ul li {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.kontakt-col ul li a {
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.kontakt-col ul li a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  border-radius: 1px;
  transition: background 0.2s, border-color 0.2s;
}
.social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── FOOTER BAR ── */
.footer-bar {
  background: var(--dark);
  padding: 1.2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bar p {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.1em;
}
.footer-bar a {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-bar a:hover { opacity: 1; }

/* ── LEGAL POPUP ── */
.legal-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  background: rgba(10, 9, 7, 0.82);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
}
.legal-modal.open { display: flex; }
.legal-box {
  background: var(--warm-white);
  width: 100%; max-width: 860px; height: 85vh;
  display: flex; flex-direction: column;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  overflow: hidden;
}
.legal-bar {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.4rem;
  background: var(--dark);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.legal-bar span {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem; letter-spacing: 0.15em;
  color: var(--gold);
}
.legal-actions { display: flex; align-items: center; gap: 1rem; }
.legal-actions a, .legal-close {
  background: none; border: none; cursor: pointer;
  color: var(--cream); opacity: 0.7;
  font-size: 1.1rem; line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
.legal-actions a:hover, .legal-close:hover { opacity: 1; color: var(--gold-light); }
.legal-content {
  flex: 1 1 auto; overflow-y: auto;
  padding: 1.6rem 2rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem; line-height: 1.65; color: var(--text);
}
.legal-content h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem; color: var(--mid);
  letter-spacing: 0.04em;
  margin: 1.6rem 0 0.5rem;
}
.legal-content p { margin-bottom: 0.8rem; }
.legal-content a { color: var(--blue-sea); word-break: break-word; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes lineGrow {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── DISH NUMBERS ── */
.dish-nr {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0.7;
  margin-right: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── MENU DATA PANELS ── */
.menu-panel { display: none; }
.menu-panel.active { display: grid; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 5rem 1.5rem; }
  #about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .bew-grid { grid-template-columns: 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .res-form { grid-template-columns: 1fr; }
  .res-form .full, .res-submit { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  #menu { padding: 5rem 1.5rem; }
  .footer-bar { padding: 1rem 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
/* ── SLIDER ── */
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(10,8,5,0.72) 0%, rgba(15,12,8,0.55) 50%, rgba(8,14,22,0.65) 100%);
}
.slider-dots {
  position: absolute; bottom: 5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 10;
}
.sdot {
  width: 28px; height: 3px;
  background: rgba(250,240,220,0.35);
  border: none; cursor: pointer; border-radius: 2px;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.sdot.active { background: var(--gold); width: 48px; }

/* gallery hover on real images */
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  display: flex; align-items: flex-end;
  padding: 1rem 1.2rem;
}
.gallery-overlay span {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--cream); text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1100;
  display: none; align-items: center; justify-content: center;
  background: rgba(10, 9, 7, 0.94);
  backdrop-filter: blur(6px);
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lb-figure {
  margin: 0; max-width: 90vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center;
  animation: lbFade 0.3s ease both;
}
@keyframes lbFade { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
.lb-img {
  max-width: 90vw; max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb-caption {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem; letter-spacing: 0.12em;
  color: var(--gold); text-align: center;
  margin-top: 1rem;
}
.lb-close, .lb-nav {
  position: fixed; z-index: 1101;
  background: rgba(26, 22, 16, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.lb-close:hover, .lb-nav:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.lb-close {
  top: 1.4rem; right: 1.4rem;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem; line-height: 1;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 2rem; line-height: 1; padding-bottom: 4px;
}
.lb-prev { left: 1.4rem; }
.lb-next { right: 1.4rem; }

@media (max-width: 600px) {
  .lb-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lb-prev { left: 0.6rem; }
  .lb-next { right: 0.6rem; }
  .lb-img { max-height: 70vh; }
}
