:root {
  --bg:           #f2e4c6;
  --bg-card:      rgba(61, 90, 61, 0.06);
  --bg-card-hover:rgba(61, 90, 61, 0.12);
  --gold:         #3d5a3d;
  --gold-light:   #507a4e;
  --gold-dark:    #263826;
  --text:         #2a1e14;
  --text-muted:   #6b573e;
  --text-faint:   #a89068;
  --border:       rgba(61, 90, 61, 0.22);
  --border-hover: rgba(61, 90, 61, 0.5);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', sans-serif;
  --radius:       1.5rem;
  --radius-sm:    0.75rem;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* =============================================
   UTILITIES
   ============================================= */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.sr-only    { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(61, 90, 61, 0.08);
  border: 1px solid rgba(61, 90, 61, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* =============================================
   NAVIGATION
   ============================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}

#nav.scrolled {
  background: rgba(242, 228, 198, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.nav-logo span {
  display: block;
  font-size: 0.58rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

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

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: #f2e4c6 !important;
  padding: 0.55rem 1.4rem;
  border-radius: 99px;
  font-weight: 700 !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: scale(1.05); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
#mobileNav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(242, 228, 198, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#mobileNav.open { opacity: 1; pointer-events: all; }

#mobileNav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s;
}
#mobileNav a:hover { color: var(--gold-light); }

#mobileNav .mob-cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 0.875rem 2.5rem;
  border-radius: 99px;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-burger { display: flex; }
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 80%, rgba(61,90,61,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(179,90,42,0.11) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(139,69,19,0.08) 0%, transparent 70%),
    var(--bg);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1.5px at 18% 25%, rgba(61,90,61,0.5) 0%, transparent 100%),
    radial-gradient(circle 1px   at 80% 18%, rgba(61,90,61,0.35) 0%, transparent 100%),
    radial-gradient(circle 1px   at 65% 72%, rgba(61,90,61,0.25) 0%, transparent 100%),
    radial-gradient(circle 1px   at 8%  60%, rgba(61,90,61,0.3) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 92% 82%, rgba(61,90,61,0.25) 0%, transparent 100%),
    radial-gradient(circle 1px   at 45% 12%, rgba(61,90,61,0.2) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(61,90,61,0.3);
  padding: 0.4rem 1.25rem;
  border-radius: 99px;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  padding: 1rem 2.5rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(61,90,61,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 1rem 2.5rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(42,30,20,0.18);
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold-dark)); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* =============================================
   HIGHLIGHTS STRIP
   ============================================= */
#highlights {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.highlight-item { padding: 1.25rem; }

.highlight-icon  { font-size: 1.75rem; margin-bottom: 0.6rem; }
.highlight-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.highlight-text  { font-size: 0.85rem; color: var(--text-muted); }

/* =============================================
   SPEISEKARTE
   ============================================= */
#speisekarte {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(179,90,42,0.025) 50%, var(--bg) 100%);
}

.menu-header { text-align: center; margin-bottom: 3rem; }

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.menu-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.menu-tab:hover  { color: var(--gold-light); border-color: var(--gold-dark); }
.menu-tab.active { background: var(--gold); color: var(--bg); border-color: var(--gold); font-weight: 700; }

.menu-panel { display: none; }
.menu-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.menu-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.3s;
  overflow: hidden;
}
.menu-item > .menu-item-info,
.menu-item > .menu-item-price {
  padding: 1.2rem 0;
}
.menu-item > .menu-item-info { padding-left: 1.4rem; flex: 1; min-width: 0; }
.menu-item > .menu-item-price { padding-right: 1.4rem; }
.menu-item:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-2px); }

.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.menu-item-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.menu-item-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
  display: inline-block;
}
.tag-vegan   { background: rgba(61,90,61,0.12); color: #3d5a3d; }
.tag-veggie  { background: rgba(107,142,35,0.14); color: #4a6b20; }
.tag-beliebt { background: rgba(61,90,61,0.1);  color: var(--gold); }

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  padding-top: 0.1rem;
  flex-shrink: 0;
}

.menu-item { cursor: pointer; }

.menu-item-allergens {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 0 1.4rem;
  background: rgba(61, 90, 61, 0.04);
  border-top: 1px solid transparent;
}

.menu-item.open .menu-item-allergens {
  max-height: 80px;
  opacity: 1;
  padding: 0.75rem 1.4rem;
  border-top-color: var(--border);
}

.menu-item-allergens span {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(61, 90, 61, 0.1);
  border: 1px solid rgba(61, 90, 61, 0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-right: 0.35rem;
  margin-bottom: 0.25rem;
}

.menu-item-allergens .no-allergens {
  background: none;
  border: none;
  color: var(--text-faint);
  font-weight: 400;
  font-style: italic;
  padding: 0;
}

.allergen-legend {
  margin-top: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  border-color: transparent;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, margin 0.4s ease, border-color 0.3s ease;
}

.allergen-legend.visible {
  max-height: 300px;
  opacity: 1;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  border-color: var(--border);
}

.allergen-legend-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.allergen-legend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.35rem 1.5rem;
}

.allergen-legend-grid span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.allergen-legend-grid strong {
  color: var(--gold-light);
  font-weight: 700;
  margin-right: 0.35rem;
}

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-faint);
  font-style: italic;
}

.menu-allergen-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(61, 90, 61, 0.08);
  border: 1px solid rgba(61, 90, 61, 0.2);
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: fit-content;
}

/* =============================================
   ÜBER UNS
   ============================================= */
#ueber-uns { border-top: 1px solid var(--border); }

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

.about-img-wrap { position: relative; }

.about-img-placeholder {
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 40% 40%, rgba(61,90,61,0.18) 0%, transparent 60%),
    rgba(179,90,42,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-faint);
}
.about-img-placeholder span { font-size: 3rem; }
.about-img-placeholder p    { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--bg);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.65rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 30px rgba(61,90,61,0.3);
}
.about-badge strong { font-size: 1.5rem; display: block; line-height: 1; }

.about-text blockquote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 2rem;
}

.about-fact {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.about-fact-num   { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--gold-light); line-height: 1; margin-bottom: 0.2rem; }
.about-fact-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* =============================================
   ÖFFNUNGSZEITEN
   ============================================= */
#oeffnungszeiten {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(61,90,61,0.025) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

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

.hours-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.hours-row:last-child     { border-bottom: none; }
.hours-row:hover          { background: var(--bg-card); }
.hours-row.today          { background: rgba(61,90,61,0.07); border-left: 3px solid var(--gold); }
.hours-row.closed .hours-day,
.hours-row.closed .hours-time { color: var(--text-faint); }

.hours-day  { font-weight: 600; font-size: 0.95rem; color: var(--text); min-width: 120px; }
.hours-time { font-size: 0.875rem; color: var(--text-muted); text-align: right; }

.hours-closed {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ef4444;
  background: rgba(239,68,68,0.1);
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
}

.hours-info { display: flex; flex-direction: column; gap: 1.25rem; }

.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.hours-card-icon  { font-size: 1.4rem; flex-shrink: 0; }
.hours-card-title { font-weight: 700; color: var(--text); margin-bottom: 0.25rem; font-size: 0.95rem; }
.hours-card-text  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   RESERVIERUNG
   ============================================= */
#reservierung { border-top: 1px solid var(--border); }

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

.res-info { position: sticky; top: 6rem; }

.res-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

.res-step { display: flex; gap: 1rem; align-items: flex-start; }

.res-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(61,90,61,0.1);
  border: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.res-step-title { font-weight: 600; color: var(--text); margin-bottom: 0.2rem; font-size: 0.95rem; }
.res-step-text  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.res-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group      { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input {
  background: rgba(42,30,20,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  transition: all 0.3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus     { outline: none; border-color: var(--gold); background: rgba(61,90,61,0.04); }
.form-input::placeholder { color: var(--text-faint); }

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6654' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select.form-input option { background: #f2e4c6; color: var(--text); }

textarea.form-input { resize: vertical; min-height: 90px; }

.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.form-check input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 1rem; height: 1rem; min-width: 1rem;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; cursor: pointer; }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(61,90,61,0.25);
}

#formSuccess {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
#formSuccess .suc-icon { font-size: 3rem; margin-bottom: 1rem; }
#formSuccess h3 { font-family: var(--font-heading); font-size: 1.75rem; color: var(--gold-light); margin-bottom: 0.75rem; }
#formSuccess p  { color: var(--text-muted); font-size: 1rem; }

/* =============================================
   KONTAKT
   ============================================= */
#kontakt { border-top: 1px solid var(--border); }

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

.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  transition: all 0.3s;
}
.contact-item:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

.contact-item-icon  { font-size: 1.2rem; flex-shrink: 0; }
.contact-item-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-item-value { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.contact-item-sub   { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }

.map-wrap {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: rgba(179,90,42,0.02);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,90,61,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,90,61,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-faint);
  z-index: 1;
}
.map-overlay span { font-size: 2.5rem; }
.map-overlay p    { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* =============================================
   CTA BANNER
   ============================================= */
#cta-banner { padding: 5rem 0; }

.cta-inner {
  background: linear-gradient(135deg, rgba(61,90,61,0.12) 0%, rgba(179,90,42,0.08) 100%);
  border: 1px solid rgba(61,90,61,0.25);
  border-radius: var(--radius);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -15%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,90,61,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  position: relative;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--gold-light); }

.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-copy   { font-size: 0.8rem; color: var(--text-faint); }
.footer-credit { font-size: 0.75rem; color: var(--text-faint); }
.footer-credit a { color: var(--gold-dark); transition: color 0.3s; }
.footer-credit a:hover { color: var(--gold); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .res-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .res-info   { position: static; }
}

@media (max-width: 768px) {
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .hours-layout  { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge   { right: 0; bottom: -1rem; width: 80px; height: 80px; font-size: 0.6rem; }
  .about-badge strong { font-size: 1.2rem; }
}

@media (max-width: 640px) {
  .section        { padding: 4rem 0; }
  .menu-panel.active { grid-template-columns: 1fr; }
  .form-grid      { grid-template-columns: 1fr; }
  .res-form-wrap  { padding: 1.5rem; }
  .cta-inner      { padding: 2.5rem 1.5rem; }
  .hero-actions   { flex-direction: column; align-items: center; }
}

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