/* =========================================================
   Dreams Lounge — Dark Luxury Theme
   ========================================================= */

:root {
  /* Dark backgrounds with subtle purple undertone — matches lounge interior */
  --bg-primary: #0c0814;
  --bg-secondary: #161028;
  --bg-tertiary: #1f1736;
  --bg-glass: rgba(167, 139, 250, 0.04);
  --bg-glass-strong: rgba(167, 139, 250, 0.08);

  /* Gold — primary accent, like the lounge's gold chairs and chandeliers */
  --gold: #d4af37;
  --gold-bright: #f0c870;
  --gold-deep: #9a7a1f;
  --gold-glow: rgba(212, 175, 55, 0.35);

  /* Purple — secondary accent, like the velvet seats and neon lighting */
  --purple: #a78bfa;
  --purple-deep: #7c3aed;
  --purple-glow: rgba(167, 139, 250, 0.35);

  /* Pink — subtle highlight, like cherry blossoms */
  --pink-accent: #f472b6;

  --text: #f5f5f5;
  --text-muted: #b8b3c7;
  --text-subtle: #75718a;

  --border: rgba(212, 175, 55, 0.2);
  --border-strong: rgba(212, 175, 55, 0.45);
  --border-purple: rgba(167, 139, 250, 0.25);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.18);
  --shadow-purple: 0 0 40px rgba(124, 58, 237, 0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --font-display: "Cinzel", "Times New Roman", serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-w: 1240px;
  --nav-h: 86px;
}

/* =========================================================
   Reset
   ========================================================= */

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Lila + Gold Nebel im Hintergrund — wie die Lounge-Beleuchtung */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 15% 5%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 95%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(244, 114, 182, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-bright);
}

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

/* =========================================================
   Typografie
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

.gold {
  color: var(--gold);
}

/* =========================================================
   Layout
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head .lead {
  margin-top: 1rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Goldenes Trennzeichen */
.divider {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.25rem auto;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* =========================================================
   Navbar
   ========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(12, 8, 20, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  background: rgba(12, 8, 20, 0.92);
  border-bottom-color: var(--border);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
  gap: 1.5rem;
}

/* Logo als Bild (echtes Wortmarken-Logo) */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 200px;
}

.nav-logo img {
  height: 32px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: filter 0.25s ease;
}

.nav-logo:hover img {
  filter: brightness(1.15) drop-shadow(0 0 8px var(--gold-glow));
}

/* Footer-Logo etwas größer */
.footer-brand .nav-logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 1.75rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.nav-links a.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--gold-glow);
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 transparent;
}

.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg-primary);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) 1.5rem 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/interior-seating.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(1.2) contrast(1.05);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 20, 0.45) 0%, rgba(12, 8, 20, 0.8) 70%, var(--bg-primary) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(12, 8, 20, 0.55) 100%);
}

/* Logo-Bild im Hero (echtes Gold-Branding, transparent) */
.hero-logo {
  display: block;
  max-width: min(520px, 85vw);
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7))
          drop-shadow(0 0 40px rgba(212, 175, 55, 0.25));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-content .eyebrow {
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, var(--text) 0%, var(--gold-bright) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-muted);
  margin: 1.5rem auto 2.5rem;
  max-width: 600px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-rating {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-rating .stars {
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* Scroll-Indikator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* =========================================================
   Page-Header (Innenseiten)
   ========================================================= */

.page-header {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  position: relative;
}

.page-header .lead {
  margin-top: 1rem;
  position: relative;
}

/* =========================================================
   Cards / Highlights
   ========================================================= */

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  background: var(--bg-glass-strong);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* =========================================================
   Über uns / About
   ========================================================= */

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

.about-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.4) 100%);
  pointer-events: none;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  margin: 0.2rem 0.7rem 0 0;
  color: var(--gold);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.95rem;
}

.review-badge .rating-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
}

.review-badge .stars {
  color: var(--gold);
  letter-spacing: 0.05em;
  font-size: 1rem;
}

/* =========================================================
   Angebote / Menu
   ========================================================= */

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.menu-tab {
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s ease;
}

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

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

.menu-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.menu-item:hover {
  border-color: var(--border-strong);
  background: var(--bg-glass-strong);
  transform: translateX(4px);
}

.menu-item-info h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

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

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}

.menu-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--bg-glass);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-serif);
}

/* =========================================================
   Galerie
   ========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: brightness(0.85) saturate(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.7) 100%);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.2);
}

.gallery-item:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--border-strong);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

/* =========================================================
   Kontakt
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-grid > * {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
}

.contact-block h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info .icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-info .label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.25rem;
}

.contact-info .value {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.5;
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table tr.today {
  background: rgba(212, 175, 55, 0.08);
}

.hours-table tr.today td {
  color: var(--gold);
}

.hours-table td {
  padding: 0.95rem 0.5rem;
  color: var(--text);
  font-size: 0.98rem;
}

.hours-table td:first-child {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-serif);
  color: var(--text-muted);
}

.hours-table tr.today td:last-child {
  color: var(--gold);
}

.map-wrap {
  margin-top: 3rem;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(0.4) contrast(1.05);
}

/* =========================================================
   Galerie-Teaser auf Startseite
   ========================================================= */

.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-teaser .gallery-item {
  aspect-ratio: 4 / 5;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-family: var(--font-serif);
  font-style: italic;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer ul a,
.footer ul li {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer ul a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--gold-glow);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    padding: 2rem 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-top: 1px solid var(--border);
    height: calc(100vh - var(--nav-h));
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1.1rem 1.5rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin: 1.5rem auto;
    width: max-content;
    border-bottom: 1px solid var(--gold);
  }

  .nav-toggle {
    display: flex;
  }

  .gallery-teaser {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  section {
    padding: 4rem 0;
  }

  .card {
    padding: 1.75rem 1.25rem;
  }

  .contact-grid > * {
    padding: 1.75rem;
  }
}

/* =========================================================
   Cookie-Hinweis-Banner (DSGVO-Hinweis, kein Tracking-Consent
   da keine nicht-essentiellen Cookies/Dienste verwendet werden)
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  max-width: 880px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: rgba(12, 8, 20, 0.96);
  border: 1px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(212, 175, 55, 0.12),
              0 0 32px rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.visible {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner__text {
  flex: 1 1 320px;
  margin: 0;
  color: var(--text);
}
.cookie-banner__text strong {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cookie-banner__text a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(240, 200, 112, 0.4);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.cookie-banner__text a:hover,
.cookie-banner__text a:focus-visible {
  color: var(--gold);
  text-decoration-color: var(--gold);
}
.cookie-banner__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  background: var(--gold);
  color: #0c0814;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease,
              box-shadow 0.2s ease;
}
.cookie-banner__btn:hover,
.cookie-banner__btn:focus-visible {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
  outline: none;
}
.cookie-banner__btn:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
    gap: 0.9rem;
  }
  .cookie-banner__btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
    transform: none;
  }
}
