/* ==============================================
   Arabisk Innsbruck — styles.css v1
   ============================================== */

/* ---------- Design Tokens ---------- */
:root {
  --green-dark: #3B5957;
  --green-light: #7EAA9C;
  --gold:        #DC9923;
  --gold-light:  #ffdea0;
  --white:       #ffffff;
  --text:        #222222;
  --text-muted:  #555555;

  --ff-body:    'Inria Sans', sans-serif;
  --ff-heading: 'Libre Bodoni', serif;
  --ff-ui:      'Poppins', sans-serif;

  --max-w: 1200px;
  --radius: 4px;
  --transition: .3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; overflow-x: clip }
body {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block }
/* Fallstrick 55: Content-Bilder nie größer als Screen */
.reise-img img, .klassiker-img img, .geschichte-gallery img,
.willkommen-images img, .spezialitaet-card img { max-height: 80vh }
a { color: inherit; text-decoration: none }
ul { list-style: none }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--ff-heading); line-height: 1.25; color: var(--green-dark) }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin-bottom: .75rem }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: .5rem }
h4 { font-family: var(--ff-ui); font-size: 1rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem }
p { margin-bottom: 1rem }
p:last-child { margin-bottom: 0 }

/* ---------- Utility ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem }
.section { padding: 80px 0 }
.section--dark { background: var(--green-dark); color: var(--white) }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white) }
.section--gold { background: var(--gold); color: var(--white) }
.section--cream { background: #faf8f3 }
.text-center { text-align: center }
.ornament { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem }
.ornament img { width: 60px; opacity: .85 }

.btn {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn--gold    { background: var(--gold); color: var(--white) }
.btn--gold:hover { background: #c48419 }
.btn--outline { background: transparent; border: 2px solid var(--white); color: var(--white) }
.btn--outline:hover { background: var(--white); color: var(--green-dark) }
.btn--green   { background: var(--green-dark); color: var(--white) }
.btn--green:hover { background: #2d4442 }
.btn--dark    { background: var(--green-dark); color: var(--white) }
.btn--dark:hover  { background: #2d4442 }

/* ---------- Announcement Bar ---------- */
#announcement-bar {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: .6rem 1rem;
  font-family: var(--ff-ui);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ---------- Navigation ---------- */
#nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--green-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .75rem 1.5rem;
}
.nav-logo img { height: 55px; width: auto; display: block; filter: brightness(0) invert(1) }
.nav-links { display: flex; gap: 2rem; align-items: center }
.nav-links a {
  font-family: var(--ff-ui);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav-links a:hover { border-bottom-color: var(--gold) }
.nav-links a.btn--gold { padding: .5rem 1.2rem; border-bottom: none }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition) }

/* ---------- Info Bar (address / phone / hours) ---------- */
.info-bar {
  background: var(--green-dark);
  color: var(--gold-light);
  border-top: 1px solid rgba(255,255,255,.1);
}
.info-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .6rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 500;
}
.info-item img { width: 18px; height: 18px; filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(3deg) }
.info-item a { color: inherit }
.info-item a:hover { color: var(--white) }

/* ---------- Skip-to-content (WCAG) ---------- */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--gold); color: var(--white); padding: .5rem 1rem;
  font-family: var(--ff-ui); font-size: .9rem; z-index: 10000;
  transition: top .2s;
}
.skip-link:focus { top: 0 }

/* ---------- Cookie-Banner ---------- */
#cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: #fff; color: #1a2820;
  border-radius: 12px; box-shadow: 0 12px 48px rgba(0,0,0,.45);
  border-left: 5px solid var(--gold);
  padding: 1.5rem 2rem; max-width: 720px; width: calc(100% - 2rem);
  z-index: 10000; font-family: var(--ff-ui); font-size: .9rem;
  display: flex; align-items: center; gap: 1rem;
}
#cookie-banner.hidden { display: none !important }
.cookie-inner { display: flex; align-items: center; gap: 1.5rem; width: 100%; flex-wrap: wrap }
.cookie-inner p { flex: 1; margin: 0; line-height: 1.6; min-width: 200px; color: #1a2820 }
.cookie-inner p a { color: var(--green-dark); text-decoration: underline; font-weight: 600 }
.cookie-btns { flex-shrink: 0; display: flex; gap: .75rem; flex-wrap: wrap }
.cookie-btns .btn { font-size: 1rem; padding: 1rem 2rem; min-height: 52px; min-width: 130px; font-weight: 700 }
.btn--outline-cookie { background: transparent; color: #1a2820; border: 2px solid #c0bfbf; border-radius: 6px; cursor: pointer; font-family: var(--ff-ui); transition: background .2s, border-color .2s }
.btn--outline-cookie:hover { background: #f5f5f5; border-color: #999 }
@media (max-width: 600px) {
  #cookie-banner { bottom: 0; border-radius: 12px 12px 0 0; border-left: none; border-top: 5px solid var(--gold); left: 0; transform: none; width: 100%; padding: 1.25rem 1.25rem }
  .cookie-btns { width: 100%; flex-direction: column }
  .cookie-btns .btn { width: 100%; min-height: 58px; font-size: 1.1rem }
}

/* ---------- Hero ---------- */
#hero {
  position: relative;
  min-height: 92vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-slides { position: absolute; inset: 0 }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1 }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45) }
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 800px;
}
.hero-content h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem }
.hero-content h4 { color: var(--gold-light); margin-bottom: 1rem }
.hero-content .btn { margin-top: 1.5rem }
.hero-ornament-left, .hero-ornament-right {
  position: absolute;
  bottom: 2rem;
  z-index: 2;
  opacity: .6;
  width: 80px;
}
.hero-ornament-left  { left: 2rem }
.hero-ornament-right { right: 2rem; transform: scaleX(-1) }

/* ---------- Willkommen ---------- */
#willkommen { padding: 80px 0 }
.willkommen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.willkommen-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: .75rem;
}
.willkommen-images img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius) }
.willkommen-images img:first-child { grid-column: 1 / -1; height: 250px }

/* ---------- Geschichte / YouTube ---------- */
#geschichte-video {
  background: var(--green-dark);
  padding: 80px 0;
  color: var(--white);
}
.geschichte-video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.geschichte-video-inner h2,
.geschichte-video-inner h4 { color: var(--white) }
.yt-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.yt-wrapper img { width: 100%; height: 100%; object-fit: cover }
.yt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
  gap: 1rem;
  padding: 1.5rem;
  transition: var(--transition);
}
.yt-overlay:hover { background: rgba(0,0,0,.65) }
.yt-play-btn {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; transition: var(--transition);
  flex-shrink: 0;
}
.yt-play-btn:hover { background: #c48419; transform: scale(1.08) }
.yt-play-btn svg { margin-left: 4px }
.yt-consent-text {
  color: var(--white);
  font-family: var(--ff-ui);
  font-size: .78rem;
  text-align: center;
  opacity: .85;
  max-width: 280px;
}
.yt-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.yt-wrapper.loaded .yt-overlay { display: none }

/* ---------- Kulinarische Reise (Gold + Blatt) ---------- */
#reise {
  padding: 80px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.reise-leaf {
  position: absolute;
  top: -30px;
  right: 0;
  width: 380px;
  max-width: 55%;
  opacity: .18;
  pointer-events: none;
  transform: rotate(10deg) translateX(30%);
  mix-blend-mode: multiply;
}
.reise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.reise-img img { border-radius: var(--radius); width: 100%; height: 480px; object-fit: cover; box-shadow: 0 8px 32px rgba(0,0,0,.25) }
.reise-text h4 { color: var(--green-dark); opacity: .75 }
.reise-text h2 { color: var(--green-dark) }
.reise-text blockquote {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--green-dark);
  border-left: 4px solid var(--green-dark);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  line-height: 1.7;
}
.reise-text cite {
  font-family: var(--ff-ui);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: block;
  margin-top: 1rem;
}

/* ---------- Klassiker ---------- */
#klassiker {
  padding: 80px 0;
  background: var(--green-dark);
  color: var(--white);
}
.klassiker-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center }
.klassiker-img img { border-radius: var(--radius); width: 100%; height: 420px; object-fit: cover }
.klassiker-text h2, .klassiker-text h4 { color: var(--white) }

/* ---------- Spezialitäten ---------- */
#spezialitaeten {
  padding: 80px 0;
}
.spezialitaeten-header { text-align: center; margin-bottom: 3rem }
.spezialitaeten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.spezialitaet-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.spezialitaet-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,.12) }
.spezialitaet-card img { width: 100%; height: 200px; object-fit: cover }
.spezialitaet-card-body { padding: 1.25rem }
.spezialitaet-card-body h3 { font-size: 1.1rem; margin-bottom: .4rem }
.spezialitaet-card-body p { font-size: .9rem; color: var(--text-muted) }
.spezialitaeten-cta { text-align: center; margin-top: 2.5rem }

/* ---------- Kontakt / Reservierung ---------- */
#reservieren {
  padding: 80px 0;
  background: var(--green-dark);
  color: var(--white);
}
.reservieren-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.kontakt-info h2 { color: var(--white) }
.kontakt-info h4 { color: var(--gold-light) }
.kontakt-details { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .8rem }
.kontakt-details a { color: var(--gold-light); transition: var(--transition) }
.kontakt-details a:hover { color: var(--white) }
.kontakt-label { font-family: var(--ff-ui); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green-light); display: block; margin-bottom: .15rem }

.kontakt-oeffnungszeiten { margin-top: 1.5rem }
.oez-row { display: flex; gap: 1rem; padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .9rem }
.oez-row:last-child { border-bottom: none }
.oez-tag { min-width: 90px; font-weight: 600; color: var(--gold-light) }

/* Resmio widget container */
.kontakt-form { background: rgba(255,255,255,.07); border-radius: 8px; padding: 2rem }
.kontakt-form h2 { color: var(--white); margin-bottom: 1.5rem }
.resmio-hinweis { font-size: .72rem; opacity: .55; margin-top: 1rem; font-family: var(--ff-ui) }
.form-group { margin-bottom: 1.2rem }
.form-group label { display: block; font-family: var(--ff-ui); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--gold-light); margin-bottom: .4rem }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.45) }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.15) }
.form-group select option { background: var(--green-dark); color: var(--white) }
.form-group textarea { resize: vertical; min-height: 100px }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem }
.form-msg { display: none; padding: .75rem 1rem; border-radius: var(--radius); font-size: .9rem; margin-top: 1rem }
.form-msg.success { background: rgba(122,170,156,.3); border: 1px solid var(--green-light); color: var(--white) }
.form-msg.error   { background: rgba(220,50,50,.2); border: 1px solid #e07070; color: var(--white) }
#kontakt-success { display: none }
#kontakt-success.visible { display: block }

/* ---------- Google Bewertungen ---------- */
#bewertungen {
  padding: 80px 0;
  background: var(--green-dark);
}
.bewertungen-header { text-align: center; margin-bottom: 3rem }
.bewertungen-score { display: inline-flex; flex-direction: column; align-items: center; gap: .5rem }
.bewertungen-label { font-family: var(--ff-ui); font-weight: 700; font-size: 1.1rem; letter-spacing: .12em; color: var(--white) }
.bewertungen-stars { display: flex; gap: .15rem }
.bewertungen-stars svg { width: 28px; height: 28px; fill: var(--gold) }
.bewertungen-anzahl { font-family: var(--ff-ui); font-size: .85rem; color: var(--white); opacity: .7 }
.google-logo { margin-top: .25rem; opacity: .85 }
/* Bewertungen Carousel */
.bewertungen-carousel-wrap { position: relative; overflow: hidden; max-width: 100%; }
.bewertungen-viewport { overflow: hidden; max-width: 100%; }
.bewertungen-track {
  display: flex;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.review-card {
  flex-shrink: 0;
  background: rgba(255,255,255,.09); border-radius: 10px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: .85rem;
}
.review-header { display: flex; align-items: center; gap: .75rem }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-light); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-ui); font-weight: 700; font-size: 1.05rem; flex-shrink: 0;
}
.review-header > div:nth-child(2) { flex: 1 }
.review-header strong { display: block; color: var(--white); font-family: var(--ff-ui); font-size: .9rem }
.review-date { font-size: .75rem; color: rgba(255,255,255,.5); font-family: var(--ff-ui) }
.review-google-icon { flex-shrink: 0; margin-left: auto }
.review-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .1em }
.review-text { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.65; font-family: var(--ff-body) }
/* Carousel nav */
.carousel-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2rem;
}
.carousel-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.carousel-btn:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: #1a1a1a }
.carousel-btn:disabled { opacity: .25; cursor: default }
.carousel-btn svg { width: 20px; height: 20px; pointer-events: none }
.carousel-dots { display: flex; gap: .5rem; align-items: center }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  transition: width .3s ease, background .3s ease; padding: 0; flex-shrink: 0;
}
.carousel-dot.active { background: var(--gold); width: 22px }
/* Resmio fallback */
.resmio-fallback {
  background: rgba(255,255,255,.06); border-radius: 8px; padding: 2rem;
  text-align: center; color: var(--white); font-family: var(--ff-ui);
  margin-top: 1rem;
}
.resmio-fallback p { margin: 0 0 1.5rem; opacity: .8; line-height: 1.5 }
.resmio-fallback .resmio-fallback-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center }
.btn--outline-dark {
  border: 2px solid rgba(255,255,255,.35); color: var(--white);
  background: transparent; font-family: var(--ff-ui); font-size: .8rem;
  letter-spacing: .08em; padding: .6rem 1.5rem; border-radius: 2px;
  text-decoration: none; display: inline-block; transition: var(--transition);
}
.btn--outline-dark:hover { border-color: var(--gold); color: var(--gold) }

/* Map */
#karte { font-size: 0 }  /* kills inline-block gap without breaking text line-height */
.map-wrapper {
  position: relative;
  height: 420px;
  cursor: pointer;
}
.map-placeholder {
  width: 100%; height: 100%;
  background: var(--green-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--white); text-align: center; padding: 2rem;
  font-size: 1rem; line-height: 1.5;  /* reset inherited zero */
}
.map-placeholder p { font-family: var(--ff-ui); font-size: .9rem; max-width: 340px; opacity: .8; line-height: 1.5 }
.map-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none }
.map-wrapper.loaded .map-placeholder { display: none }

/* ---------- Geschichte (Madjy Story) ---------- */
#geschichte {
  padding: 80px 0;
  background: #faf8f3;
}
.geschichte-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.geschichte-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  position: sticky;
  top: 100px;
}
.geschichte-gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius) }
.geschichte-gallery img:first-child { grid-column: 1 / -1; height: 280px }

/* ---------- Spezial / Catering ---------- */
#spezial {
  padding: 80px 0;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}
#spezial h2 { color: var(--white) }
#spezial h4 { color: var(--gold-light) }
.spezial-arabic {
  font-family: var(--ff-heading);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin: .5rem 0 1.5rem;
}
.spezial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: left;
}
.spezial-item { border-top: 2px solid var(--gold); padding-top: 1rem }
.spezial-item h3 { color: var(--gold-light); font-size: 1rem; margin-bottom: .4rem }

/* ---------- Footer ---------- */
footer {
  background: #1a2e2d;
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand img { height: 80px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1) }
.footer-brand p { font-size: .9rem; max-width: 280px }
.footer-links h4 { color: var(--gold-light); font-size: .8rem; margin-bottom: 1rem }
.footer-links a { display: block; font-size: .9rem; padding: .25rem 0; color: rgba(255,255,255,.65); transition: var(--transition) }
.footer-links a:hover { color: var(--white) }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white); font-size: .85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold) }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
}
.footer-bottom a { color: var(--gold-light) }
.footer-bottom a:hover { color: var(--white) }

/* ---------- FAQ Akkordeon ---------- */
.faq-section { margin-top: 3rem }
.faq-section h2 { margin-bottom: 1.5rem; color: var(--green-dark) }
.faq-item { border-bottom: 1px solid rgba(59,89,87,.2); }
.faq-item summary {
  cursor: pointer;
  padding: 1rem 0;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: .95rem;
  color: var(--green-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--gold); flex-shrink: 0 }
.faq-item[open] summary::after { content: '−' }
.faq-item p { padding: .5rem 0 1rem; font-size: .95rem; color: var(--text-muted) }

/* ---------- Impressum / Datenschutz Pages ---------- */
.legal-page { padding: 80px 0 }
.legal-content { max-width: 860px; margin: 0 auto }
.legal-content h1 { margin-bottom: 2rem }
.legal-content h2 { font-size: 1.3rem; margin: 2rem 0 .75rem; padding-top: 1rem; border-top: 1px solid #e0e0e0 }
.legal-content h2:first-of-type { border-top: none }
.legal-content h3 { font-family: var(--ff-ui); font-size: 1rem; font-weight: 600; color: var(--text); margin: 1.2rem 0 .4rem }
.legal-content h4 { font-family: var(--ff-ui); font-size: .85rem; text-transform: uppercase; letter-spacing: .07em; color: var(--green-dark); margin: 1rem 0 .3rem }
.legal-content p { font-size: .95rem; color: var(--text-muted) }
.legal-content a { color: var(--gold); text-decoration: underline }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin: .75rem 0 }
.legal-content ul li { margin-bottom: .35rem; font-size: .95rem; color: var(--text-muted) }
.legal-callout {
  background: #faf8f3;
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.legal-uppercase { font-size: .85rem; font-weight: 600; line-height: 1.6; color: var(--text-muted) }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 120px 1.5rem }
.error-page h1 { font-size: 5rem; color: var(--gold); margin-bottom: 1rem }
.error-page p { font-size: 1.1rem; margin-bottom: 2rem }

/* ---------- Success page (Danke) ---------- */
.danke-page { text-align: center; padding: 120px 1.5rem }

/* ---------- Mobile ---------- */
@media (max-width: 1024px) {
  .spezialitaeten-grid { grid-template-columns: repeat(2, 1fr) }
  .footer-inner { grid-template-columns: 1fr 1fr }
}

@media (max-width: 768px) {
  .section, #willkommen, #geschichte-video, #reise, #klassiker,
  #spezialitaeten, #reservieren, #geschichte, #spezial { padding: 60px 0 }

  .willkommen-grid,
  .geschichte-video-inner,
  .reise-grid,
  .klassiker-inner,
  .reservieren-inner,
  .geschichte-inner { grid-template-columns: 1fr; gap: 2rem }

  .willkommen-images { grid-template-columns: 1fr }
  .willkommen-images img:first-child { height: 200px }
  .willkommen-images img { height: 180px }

  .reise-img { order: -1 }
  .reise-img img { height: 300px }

  .klassiker-img { order: -1 }
  .klassiker-img img { height: 300px }

  .spezialitaeten-grid { grid-template-columns: 1fr 1fr; gap: 1rem }
  .spezial-grid { grid-template-columns: 1fr }

  .geschichte-gallery { position: static; grid-template-columns: 1fr }
  .geschichte-gallery img { height: 200px }
  .geschichte-gallery img:first-child { height: 200px }

  .form-row { grid-template-columns: 1fr }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem }
  .footer-bottom { flex-direction: column; text-align: center }

  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--green-dark); flex-direction: column; gap: 0; padding: 1rem 1.5rem }
  .nav-links.open { display: flex }
  .nav-links a { padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.1) }
  .nav-links a:last-child { border-bottom: none }
  .nav-toggle { display: flex }
  #nav { position: sticky }
  .nav-inner { position: relative }

  .hero-ornament-left, .hero-ornament-right { width: 50px }
}

@media (max-width: 480px) {
  .spezialitaeten-grid { grid-template-columns: 1fr }
  .info-bar-inner { gap: 1rem }
  .hero-ornament-left, .hero-ornament-right { display: none }
}
