/* ═══════════════════════════════════════════
   CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
  --bg-deep: #0D0A07;
  --bg: #171310;
  --bg-elevated: #2A231C;
  --bg-card: #342C24;
  --bg-warm: #3D342A;
  --gold: #C49A5C;
  --gold-bright: #DABB84;
  --gold-dim: #896D3E;
  --gold-glow: rgba(196, 154, 92, 0.15);
  --cream: #F5EDE0;
  --cream-soft: #E5DAC8;
  --text-muted: #BFB19D;
  --text-faint: #847562;
  --wine: #7A3038;
  --border: rgba(196, 154, 92, 0.10);
  --border-hover: rgba(196, 154, 92, 0.25);
  --border-strong: rgba(196, 154, 92, 0.35);

  /* Legacy compat for legal pages */
  --dk: #0D0A07;
  --dk2: #171310;
  --dk3: #2A231C;
  --parch: #E5DAC8;
  --parch2: #BFB19D;
  --gold3: #DABB84;
  --gold2: #896D3E;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--bg-deep);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

body {
  background: var(--bg-deep);
  color: var(--cream-soft);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              visibility 0.6s;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  padding-left: 0.25em;
  opacity: 0;
  animation: preIn 0.5s ease 0.15s forwards;
}
.preloader-bar {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  transform-origin: center;
  transform: scaleX(0);
  animation: preBar 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
@keyframes preIn { to { opacity: 0.8; } }
@keyframes preBar { to { transform: scaleX(1); } }

/* ═══════════════════════════════════════════
   TYPOGRAPHY SYSTEM
   ═══════════════════════════════════════════ */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.body-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 1rem;
}
.body-text.centered { text-align: center; }

.ornament-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 0 0 1.8rem;
}

/* ═══════════════════════════════════════════
   SECTION DIVIDERS
   ═══════════════════════════════════════════ */
.about-section,
.reviews-section,
.menu-section,
.contact-section,
.gallery-section {
  position: relative;
}
.about-section::before,
.reviews-section::before,
.menu-section::before,
.contact-section::before,
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  z-index: 1;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1),
              backdrop-filter 0.5s,
              border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mainNav.scrolled {
  background: rgba(17, 14, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.logo-light { color: var(--cream); }
.logo-gold { color: var(--gold-bright); font-weight: 400; font-style: italic; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.3s cubic-bezier(0.22,1,0.36,1);
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream-soft);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  cursor: pointer;
}
.nav-phone:hover { color: var(--gold-bright); }
.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  transition: border-color 0.3s;
}
.nav-phone:hover .phone-icon { border-color: var(--gold); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 35% 45%, #2A231C, transparent),
    radial-gradient(ellipse 60% 50% at 75% 65%, #221B14, transparent),
    radial-gradient(ellipse 40% 30% at 50% 20%, rgba(196,154,92,0.04), transparent),
    var(--bg-deep);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.5);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 80%, rgba(17,14,10,0.85), transparent),
    radial-gradient(ellipse 50% 60% at 15% 10%, rgba(17,14,10,0.6), transparent),
    linear-gradient(to bottom, rgba(17,14,10,0.45) 0%, transparent 40%, rgba(17,14,10,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 350px;
  background: radial-gradient(ellipse, rgba(196,154,92,0.04), transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
body.loaded .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
body.loaded .hero-ornament {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.hero-ornament::before,
.hero-ornament::after {
  content: '';
  width: 50px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.hero-ornament::after {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}
.hero-ornament-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}
.hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(36px);
  filter: blur(4px);
  transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1),
              transform 1.1s cubic-bezier(0.22,1,0.36,1),
              filter 0.9s cubic-bezier(0.22,1,0.36,1);
}
body.loaded .hero-title {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.5s;
}
.hero-title-accent {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 400;
}
.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
body.loaded .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.95s;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
body.loaded .hero-scroll {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 1.3s;
}
.hero-scroll a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.hero-scroll a:hover { color: var(--gold-bright); }
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ═══════════════════════════════════════════
   SECTIONS BASE
   ═══════════════════════════════════════════ */
section {
  padding: 7rem 1.5rem;
  position: relative;
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-section {
  background: var(--bg);
  background-image: radial-gradient(ellipse 60% 50% at 70% 20%, rgba(196,154,92,0.03), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-elevated);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.85);
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
}
.about-img-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(0.88) saturate(1);
}
.about-img-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(196,154,92,0.18);
  pointer-events: none;
  z-index: 1;
  transition: inset 0.6s cubic-bezier(0.22,1,0.36,1);
}
.about-img-wrap:hover .about-img-frame { inset: 14px; }

.about-text .section-eyebrow { text-align: left; }
.about-text .section-title { text-align: left; }
.about-text .body-text { max-width: none; margin: 0 0 0.8rem; text-align: left; }

.about-details { margin-top: 1.8rem; }
.about-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.about-detail a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.about-detail a:hover { color: var(--gold-bright); }
.detail-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.15rem;
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery-section {
  background: var(--bg-deep);
  padding: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-elevated);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.7);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,14,10,0.55), transparent 55%);
  transition: opacity 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.82) saturate(1);
}
.gallery-item:hover::after { opacity: 0.3; }

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews-section {
  background: var(--bg);
  background-image: radial-gradient(ellipse 50% 60% at 30% 80%, rgba(196,154,92,0.03), transparent);
}

.reviews-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 2.5rem 0 3rem;
}
.reviews-stars {
  display: flex;
  gap: 0.2rem;
}
.star-icon {
  width: 18px; height: 18px;
  color: var(--gold);
}
.star-half { opacity: 0.35; }
.reviews-score {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.reviews-count {
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.4s, transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s;
}
.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.review-quote-mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: 0.5rem; left: 1.2rem;
  pointer-events: none;
}
.review-stars-small {
  display: flex;
  gap: 0.06rem;
  margin-bottom: 0.75rem;
}
.review-stars-small svg {
  width: 11px; height: 11px;
  color: var(--gold);
}
.review-text {
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.3rem;
  position: relative;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.review-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold-bright);
  flex-shrink: 0;
}
.review-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
}

/* ═══════════════════════════════════════════
   SPEISEKARTE / MENU
   ═══════════════════════════════════════════ */
.menu-section {
  background: var(--bg-elevated);
  background-image: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(196,154,92,0.04), transparent);
}

.pdf-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.pdf-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.8rem;
  border: 1px solid var(--border-hover);
  background: var(--bg-card);
  text-decoration: none;
  min-width: 250px;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.25s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s;
}
.pdf-link:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(196,154,92,0.06);
}
.pdf-link:active { transform: translateY(-1px); }
.pdf-link:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
.pdf-link-icon {
  flex-shrink: 0;
  color: var(--gold);
}
.pdf-link-icon svg { width: 26px; height: 26px; }
.pdf-link-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.pdf-link-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.pdf-link-sub {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-muted);
}
.pdf-link-arrow {
  width: 15px; height: 15px;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.pdf-link:hover .pdf-link-arrow {
  color: var(--gold);
  transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-section {
  background: var(--bg);
  background-image: radial-gradient(ellipse 50% 50% at 60% 30%, rgba(196,154,92,0.03), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-block-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.2rem;
}
.contact-item div {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-item strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 0.1rem;
}
.contact-item a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold-bright); }

/* Hours */
.hours-block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hours-table {
  display: flex;
  flex-direction: column;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196,154,92,0.05);
}
.hours-row:last-of-type { border-bottom: none; }
.hours-day {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--cream-soft);
}
.hours-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-bright);
  text-align: right;
  font-variant-numeric: tabular-nums;
  line-height: 1.6;
}
.hours-closed {
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.65;
}
.hours-note {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1rem;
  opacity: 0.6;
  line-height: 1.65;
}

/* Map */
.map-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.map-caption {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  opacity: 0.55;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--bg-deep);
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.footer-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 auto 2rem;
  opacity: 0.45;
}
.footer-logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  margin: 0.8rem 0;
}
.footer-dot {
  width: 3px; height: 3px;
  background: var(--text-faint);
  border-radius: 50%;
  opacity: 0.5;
}
.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
}
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  opacity: 0.45;
}
.footer-copy + .footer-copy { margin-top: 0.15rem; }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s, box-shadow 0.4s;
}
.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.review-card:nth-child(2) { transition-delay: 0.12s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .review-card { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   HAMBURGER TOGGLE
   ═══════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: 601;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   LEGAL PAGES  (Impressum, Datenschutz)
   ═══════════════════════════════════════════ */
.legal-page {
  padding: 8rem 1.5rem 6rem;
  min-height: 100vh;
  background: var(--bg-deep);
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.legal-content h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-top: 2.5rem;
  margin-bottom: 0.7rem;
}
.legal-content h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-bright);
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.legal-content a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-content a:hover { color: var(--gold); }
.legal-content ul, .legal-content ol {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.85;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
}
.legal-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1rem 0 2.5rem;
}

/* Legacy classes used in legal pages */
.section-gold-line { position: relative; }
.section-gold-line::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  z-index: 1;
}
.ornament {
  display: flex; align-items: center; gap: 1rem; justify-content: center; margin: 0 auto;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; max-width: 140px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.ornament-sym { color: var(--gold); font-size: 0.7rem; line-height: 1; opacity: 0.5; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-grid,
  .contact-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item:nth-child(n+4) { display: none; }

  .nav-inner { padding: 0.75rem 1.2rem; }
  .nav-logo { font-size: 0.92rem; letter-spacing: 0.05em; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17, 14, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    margin: 0; padding: 0;
    z-index: 600;
    list-style: none;
    transform: none;
    left: 0;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
  }
  .nav-toggle { z-index: 601; }

  section { padding: 4.5rem 1.2rem; }
  .hero-title { font-size: clamp(2.4rem, 13vw, 4rem); }
  .hero-ornament::before, .hero-ornament::after { width: 32px; }
  .hero-subtitle { max-width: 300px; }

  .about-text .section-eyebrow,
  .about-text .section-title { text-align: center; }
  .ornament-line { margin: 0 auto 1.8rem; }
  .about-text .body-text { text-align: center; }
  .about-details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pdf-links { flex-direction: column; align-items: center; }
  .pdf-link { min-width: 0; width: 100%; max-width: 340px; }

  .hours-day { font-size: 0.78rem; }
  .hours-time, .hours-closed { font-size: 0.78rem; }

  .legal-page { padding: 6rem 1.2rem 4rem; }
}

@media (max-width: 480px) {
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.25em; }
  .hero-subtitle br { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(n+3) { display: none; }
}
