/* ============================================
   ROSTAA® — Original Thüringer Rostbratwurst
   Königsbau Passagen Stuttgart
   ============================================ */

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

:root {
  /* Brand palette aligned with Rostaa logo & Thüringen tradition */
  --red: #c41e1e;
  --red-deep: #a40019;
  --red-dark: #7a1010;
  --red-bright: #e02828;
  --cream: #f5efe6;
  --cream-light: #fbf6ec;
  --cream-soft: #f0e4ca;
  --paper: #faf4e8;
  --ink: #2b1a12;
  --ink-soft: #5c4a3a;
  --ink-light: #7a6a58;
  --line: #d9cfba;
  --gold: #c79a5b;
  --gold-light: #d9b97f;
  --green: #5cb83a;
  --shadow-sm: 0 2px 8px rgba(196,30,30,0.06);
  --shadow-md: 0 8px 24px rgba(43,26,18,0.08);
  --shadow-lg: 0 20px 50px rgba(43,26,18,0.12);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-bright); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- NAVIGATION ---------- */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
#mainNav.scrolled {
  background: rgba(255, 253, 247, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  transition: transform 0.3s;
  display: block;
}
.nav-logo:hover { transform: scale(1.03); }
.nav-logo img { 
  height: 38px; 
  width: auto; 
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 70%; }
.nav-links a.active { color: var(--red); }

.btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(196,30,30,0.25);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-visit:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,30,30,0.35);
}
.btn-visit svg { transition: transform 0.3s; }
.btn-visit:hover svg { transform: rotate(-15deg) scale(1.1); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: white;
  padding: 1.5rem 2rem;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }

@media (max-width: 968px) {
  .nav-links, .btn-visit { display: none; }
  .nav-hamburger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 64px;
  background: 
    radial-gradient(ellipse at top right, rgba(247,235,205,0.6) 0%, transparent 60%),
    linear-gradient(135deg, var(--paper) 0%, var(--cream-soft) 100%);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(201, 154, 91, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(196, 30, 30, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content { animation: slideUp 1s var(--ease) 0.1s both; }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.hero-tagline::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 0;
  width: 80px;
  height: 1px;
  background: var(--red);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.03;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.italic-accent {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-subtitle .accent {
  color: var(--red);
  font-weight: 600;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white;
  padding: 14px 28px;
  border-radius: 32px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(196,30,30,0.28);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(196,30,30,0.35);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 32px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1.5px solid var(--line);
  transition: all 0.3s var(--ease);
}
.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* 1404 Vintage Scroll Badge */
.hero-1404-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #f5e4ba 0%, #e8d3a0 100%);
  border: 1.5px solid #b8985c;
  border-radius: 4px;
  padding: 0.5rem 1.3rem 0.8rem;
  position: relative;
  max-width: 220px;
  box-shadow: 0 4px 12px rgba(120,80,30,0.15);
}
.hero-1404-badge::before,
.hero-1404-badge::after {
  content: '';
  position: absolute;
  top: -2px;
  width: 18px; height: 8px;
  background: linear-gradient(180deg, #d4b070 0%, #a08040 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}
.hero-1404-badge::before { left: -8px; transform: rotate(-25deg); }
.hero-1404-badge::after { right: -8px; transform: rotate(25deg); }

.scroll-banner {
  background: linear-gradient(180deg, #d4b070 0%, #a08040 100%);
  color: white;
  padding: 3px 18px;
  border-radius: 2px;
  margin-top: -14px;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.scroll-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.ad-mark {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
}
.year-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 2px 0;
}
.diamonds {
  color: var(--red-deep);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  margin-bottom: 4px;
}
.ad-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink);
  line-height: 1.3;
  text-transform: uppercase;
}
.ad-source {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.2;
}

/* Hero visual right side */
.hero-visual {
  position: relative;
  animation: fadeIn 1.2s var(--ease) 0.4s both;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-bratwurst {
  position: relative;
  width: 100%;
  max-width: 580px;
  filter: drop-shadow(0 20px 40px rgba(43,26,18,0.15));
}

.bratwurst-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.steam-wrapper {
  position: absolute;
  top: 5%;
  right: 30%;
  width: 120px;
  height: 60px;
  pointer-events: none;
  z-index: 2;
}
.steam {
  position: absolute;
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  filter: blur(10px);
  animation: steamRise 4s ease-out infinite;
}
.steam.s1 { left: 10%; animation-delay: 0s; }
.steam.s2 { left: 35%; animation-delay: 1s; }
.steam.s3 { left: 60%; animation-delay: 2s; }
.steam.s4 { left: 85%; animation-delay: 3s; }
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-70px) scale(2.2); }
}

/* Hero quality badges */
.hero-badges {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge-img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
  transition: transform 0.3s var(--ease);
}
.badge-img:hover { transform: scale(1.08) rotate(-2deg); }

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-light);
  font-size: 0.78rem;
  font-style: italic;
  opacity: 0.7;
  z-index: 3;
}
.hero-scroll-hint svg { color: var(--red); }
.scroll-dot {
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(4px); opacity: 0.4; }
}

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem 4rem; }
  .hero-content { text-align: center; }
  .hero-tagline::after { left: 50%; transform: translateX(-50%); }
  .hero-actions { justify-content: center; }
  .hero-1404-badge { margin: 0 auto; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .hero-scroll-hint { bottom: 0.8rem; font-size: 0.7rem; }
}

@media (max-width: 600px) {
  .hero { padding-top: 70px; }
  .hero-subtitle { font-size: 1.05rem; }
  .badge-img { height: 44px; }
}

/* ---------- FEATURE STRIP ---------- */
.feature-strip {
  background: var(--cream-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.2rem 2.5rem;
}
.feature-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 1 auto;
}
.feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.feature-text p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.4;
}

.feature-divider {
  width: 1px;
  height: 50px;
  background: var(--line);
}

@media (max-width: 900px) {
  .feature-strip-inner { gap: 1.5rem; }
  .feature-strip { padding: 1.5rem 1rem; }
  .feature-divider { display: none; }
  .feature-item { flex: 1 1 250px; max-width: 320px; }
}

/* ---------- REVIEWS STRIP ---------- */
.reviews-strip {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-soft) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  min-height: 140px;
}

.reviews-anchor {
  flex-shrink: 0;
  width: 220px;
  background: var(--red);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 6px 0 18px rgba(196,30,30,0.18);
}

.reviews-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

.reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}

.reviews-stars {
  display: flex;
  gap: 3px;
  margin: 2px 0 4px;
}
.reviews-stars svg {
  width: 18px;
  height: 18px;
}

.reviews-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
  font-style: normal;
}

.reviews-track-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.reviews-track-wrap::before,
.reviews-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}
.reviews-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream-light), transparent);
}
.reviews-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream-soft), transparent);
}

.reviews-track {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.5rem;
  animation: reviewsScroll 36s linear infinite;
  will-change: transform;
}
.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: 280px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(43,26,18,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover {
  box-shadow: 0 6px 20px rgba(43,26,18,0.1);
  transform: translateY(-2px);
}

.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  flex: 1;
}

.review-source {
  font-size: 0.72rem;
  color: var(--ink-light);
  font-style: italic;
}

@media (max-width: 700px) {
  .reviews-anchor {
    width: 170px;
    padding: 1rem 1.1rem;
  }
  .reviews-score { font-size: 2.4rem; }
  .review-card { width: 240px; }
}

@media (max-width: 480px) {
  .reviews-anchor { width: 148px; }
  .reviews-score { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}

/* ---------- SPECIALTIES ---------- */
.specialties {
  padding: 5rem 2.5rem 4rem;
  background: var(--paper);
}

.section-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.title-flourish { display: inline-flex; }
.title-flourish svg { width: 60px; height: 12px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 8px auto 0;
}

.cards-row {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.spec-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
}
.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,30,30,0.3);
}
.spec-card.primary {
  border-color: rgba(196,30,30,0.2);
  background: linear-gradient(180deg, white 70%, rgba(247,235,205,0.3) 100%);
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.spec-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.card-badge.usa { background: linear-gradient(90deg, #b22, #c41e1e); }
.card-badge.tip { background: var(--gold); color: var(--ink); }

.card-content {
  padding: 1.2rem 1.2rem 1rem;
  position: relative;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  padding-right: 40px;
}
.card-desc {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.5;
  padding-right: 40px;
}

.card-arrow {
  position: absolute;
  bottom: 1.2rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: all 0.3s var(--ease);
}
.card-arrow:hover {
  background: var(--red);
  color: white;
  transform: scale(1.1) rotate(360deg);
}

@media (max-width: 1100px) { .cards-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .cards-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 420px)  { .cards-row { grid-template-columns: 1fr; } }

/* ---------- THREE COL ROW ---------- */
.three-col-wrap {
  padding: 1rem 2.5rem 4rem;
}
.three-col {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr;
  gap: 1.5rem;
  align-items: stretch;
}

.block-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  margin-bottom: 0.5rem;
}
.title-deco-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.deco-diamond { color: var(--gold); font-size: 0.7rem; }

/* Geschichte block */
.block-geschichte {
  background: linear-gradient(135deg, #f5ead4 0%, #ede0c6 100%);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 10% 90%, rgba(199,154,91,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(196,30,30,0.04) 0%, transparent 40%),
    linear-gradient(135deg, #f5ead4 0%, #ede0c6 100%);
}

.ornate-frame { position: absolute; inset: 0; pointer-events: none; }
.orn-c {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  opacity: 0.5;
}
.orn-c.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.orn-c.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.orn-c.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.orn-c.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.geschichte-inner {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.geschichte-illustration { 
  align-self: center;
}
.geschichte-illustration img {
  width: 100%; 
  height: auto; 
  opacity: 0.78;
  mix-blend-mode: multiply;
}
.geschichte-text p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.geschichte-text strong {
  color: var(--red);
  font-weight: 600;
}
.text-red { color: var(--red); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

/* Grilltechnik */
.block-grilltechnik {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem 1.8rem;
}
.tech-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.tech-item { padding: 0.5rem 0; }
.tech-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.5rem;
  transition: transform 0.4s var(--ease);
}
.tech-item:hover .tech-icon {
  transform: translateY(-4px) scale(1.08);
}
.tech-icon svg { width: 100%; height: 100%; }
.tech-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.tech-item p {
  font-size: 0.72rem;
  color: var(--ink-light);
  line-height: 1.4;
}

/* Besuchen */
.block-besuchen {
  background: var(--red);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  position: relative;
  min-height: 280px;
}
.block-besuchen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.besuchen-info {
  padding: 2rem 1.8rem;
  color: white;
  position: relative;
  z-index: 1;
}
.block-title-white {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.6rem 0;
  font-size: 0.86rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list li svg { flex-shrink: 0; margin-top: 2px; opacity: 0.9; }
.contact-list li a { color: white; transition: opacity 0.2s; }
.contact-list li a:hover { opacity: 0.8; }
.contact-list li > div { display: flex; flex-direction: column; gap: 2px; }
.contact-sub { font-size: 0.82rem; opacity: 0.85; }

.besuchen-map {
  position: relative;
  min-height: 280px;
  display: block;
}
.map-canvas {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.map-canvas iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85);
  pointer-events: none;
}
.map-pin {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.map-pin-label {
  background: white;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--red);
  white-space: nowrap;
  margin-top: 6px;
  text-align: center;
}
.map-pin-label small { 
  font-weight: 400; 
  color: var(--ink-light); 
  font-size: 0.65rem;
}
.map-hover-tip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: white;
  color: var(--red);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0.95;
  transition: all 0.3s;
}
.besuchen-map:hover .map-hover-tip {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

@media (max-width: 1100px) {
  .three-col { grid-template-columns: 1fr; }
  .block-besuchen { grid-template-columns: 1fr; min-height: 0; }
  .besuchen-map { min-height: 240px; }
}
@media (max-width: 700px) {
  .geschichte-inner { grid-template-columns: 1fr; text-align: center; }
  .geschichte-illustration { max-width: 100px; margin: 0 auto; }
}

/* ---------- HOURS BAR ---------- */
.hours-bar {
  background: var(--cream-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 2.5rem;
}
.hours-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hours-icon { width: 36px; height: 36px; flex-shrink: 0; }
.hours-icon svg { width: 100%; height: 100%; }
.hours-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
}
.hours-text { display: flex; align-items: baseline; gap: 12px; }
.hours-day { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.hours-time { font-size: 0.92rem; color: var(--ink-soft); }
.hours-time.closed { color: var(--red); font-weight: 500; }
.hours-sep { color: var(--ink-light); }
.hours-welcome {
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--red);
  font-weight: 500;
}

@media (max-width: 700px) {
  .hours-content { justify-content: center; text-align: center; }
  .hours-welcome { margin-left: 0; width: 100%; text-align: center; }
  .hours-sep { display: none; }
}

/* ---------- FOOTER ---------- */
#footer {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
  padding: 1.8rem 2.5rem 1rem;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.footer-logo-img { 
  height: 32px; 
  width: auto;
  filter: brightness(0) invert(1); 
  display: block;
}
.footer-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin: 0 auto;
  align-items: center;
}
.footer-nav a {
  font-size: 0.9rem;
  color: white;
  transition: opacity 0.2s;
}
.footer-nav a:hover { opacity: 0.75; }

.footer-social-li { display: inline-flex; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}
.social-link:hover {
  background: white;
  color: var(--red);
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.footer-legal a:hover { color: white; }

.footer-bottom {
  max-width: 1400px;
  margin: 1rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 850px) {
  .footer-content { flex-direction: column; text-align: center; gap: 1.2rem; }
  .footer-nav, .footer-legal { margin: 0; flex-wrap: wrap; justify-content: center; }
}

/* ---------- MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.open {
  display: flex;
  animation: fadeIn 0.3s var(--ease);
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43,26,18,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-box {
  position: relative;
  background: var(--paper);
  width: min(94vw, 760px);
  max-height: 88vh;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s var(--ease);
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.4rem;
  color: var(--ink);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
.modal-close:hover { background: var(--cream); color: var(--red); }
.modal-content { padding: 2.5rem; overflow-y: auto; }

.modal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.modal-content .sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 1.5rem 0 0.7rem;
}
.modal-content p { 
  font-size: 0.92rem; 
  color: var(--ink-soft); 
  line-height: 1.7; 
  margin-bottom: 0.8rem;
}
.modal-content ul { 
  list-style: none; 
  padding: 0; 
  margin-top: 0.5rem;
}
.modal-content ul li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.modal-content ul li:last-child { border-bottom: none; }
.modal-content .item-name { 
  color: var(--ink); 
  font-weight: 500; 
  display: block;
}
.modal-content .item-name .new-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.modal-content .item-name .premium-mark {
  color: var(--gold);
  font-size: 0.8rem;
  margin-left: 4px;
}
.modal-content .item-desc { 
  font-size: 0.8rem; 
  color: var(--ink-light); 
  display: block; 
  margin-top: 3px;
  font-weight: 400;
}
.modal-content .item-price { 
  color: var(--red); 
  font-weight: 700; 
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  white-space: nowrap;
}
.modal-badges {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  align-items: center;
  flex-wrap: wrap;
}
.modal-badges img { height: 50px; width: auto; }
.modal-note {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-light);
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

/* ---------- REVEAL ANIMATIONS ---------- */
/* Only hide elements when JS is confirmed loaded (progressive enhancement).
   Without JS the .js-ready class is never added, so all content stays visible. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

::selection { background: var(--red); color: white; }
