/* DinnerSpots.de — Stylesheet (Designvorlage: Stitch „DinnerSpots“, Schrift: Montserrat, lokal) */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --canvas: #FAF9F7;
  --card: #FFFFFF;
  --field: #F3F4F6;
  --field-2: #EFEDEC;
  --line: #E5E7EB;
  --line-soft: rgba(31, 41, 55, .06);
  --coral: #E74C3C;
  --coral-strong: #D63A2B;
  --coral-hover: #C0392B;
  --coral-soft: #FDF2F1;
  --coral-soft-2: #FBE3E0;
  --ink: #1F2937;
  --charcoal: #2D3A42;
  --muted: #5B6573;
  --muted-2: #8A929C;
  --grey: #D1D5DB;
  --star: #F59E0B;
  --award-bg: #FEF3C7;
  --award-fg: #92400E;
  --success: #15803D;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --pill: 999px;

  --sh-1: 0 2px 8px rgba(31, 41, 55, .04), 0 0 0 1px rgba(31, 41, 55, .06);
  --sh-2: 0 8px 24px rgba(31, 41, 55, .08), 0 0 0 1px rgba(31, 41, 55, .04);
  --sh-3: 0 12px 32px -4px rgba(31, 41, 55, .12), 0 4px 12px rgba(225, 61, 48, .04);

  --container: 1280px;
  --gutter: 1rem;
  --header-h: 64px;
  --bottom-nav-h: 64px;
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

@media (min-width: 640px) { :root { --gutter: 2rem; } }
@media (min-width: 1024px) { :root { --gutter: 3rem; --header-h: 72px; } }

/* ── Basis ─────────────────────────────────────────── */

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

html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; }

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--coral); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; color: var(--ink); }
p { margin: 0; }

:focus-visible { outline: 3px solid rgba(231, 76, 60, .45); outline-offset: 2px; border-radius: 6px; }

.ic { width: 20px; height: 20px; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ic-sm { width: 16px; height: 16px; }
.ic-xs { width: 14px; height: 14px; }
.ic-lg { width: 24px; height: 24px; }
.ic-xl { width: 32px; height: 32px; }
.ic-fill { fill: currentColor; stroke: none; }

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

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip-link { position: absolute; left: 1rem; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: var(--r-sm); font-weight: 600; }
.skip-link:focus { top: .75rem; color: #fff; }

/* Profil-Vorschau für Leads */
.preview-banner { background: var(--charcoal); color: #fff; font-size: 13px; line-height: 19px; }
.preview-banner .container { display: flex; align-items: center; gap: .6rem; padding-top: .6rem; padding-bottom: .6rem; }
.preview-banner .ic { flex: none; width: 18px; height: 18px; }

/* Typografie */
.h-xl { font-size: 30px; line-height: 38px; font-weight: 800; letter-spacing: -.02em; }
.h-lg { font-size: 24px; line-height: 32px; font-weight: 700; letter-spacing: -.01em; }
.h-md { font-size: 22px; line-height: 28px; font-weight: 600; letter-spacing: -.01em; }
.h-sm { font-size: 18px; line-height: 24px; font-weight: 700; }
.body-sm { font-size: 14px; line-height: 22px; }
.body-xs { font-size: 12px; line-height: 18px; }
.label-lg { font-size: 14px; line-height: 20px; font-weight: 600; letter-spacing: .01em; }
.label-md { font-size: 12px; line-height: 16px; font-weight: 600; letter-spacing: .02em; }
.label-sm { font-size: 11px; line-height: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.muted { color: var(--muted); }
.coral { color: var(--coral); }

@media (min-width: 1024px) {
  .h-xl { font-size: 48px; line-height: 56px; letter-spacing: -.03em; }
  .h-lg { font-size: 32px; line-height: 40px; letter-spacing: -.02em; }
}

/* ── Buttons & Chips ───────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 44px; padding: 0 1.25rem; border-radius: var(--pill);
  font-size: 14px; font-weight: 700; line-height: 1; letter-spacing: .01em;
  border: 1px solid transparent; transition: background-color .15s, color .15s, border-color .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 4px 12px rgba(231, 76, 60, .25); }
.btn-primary:hover { background: var(--coral-hover); color: #fff; }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: #1c262c; color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-light:hover { border-color: var(--coral); color: var(--coral); }
.btn-ghost { background: var(--coral-soft); color: var(--coral-strong); }
.btn-ghost:hover { background: var(--coral-soft-2); color: var(--coral-hover); }
.btn-outline-light { color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-outline-light:hover { color: #fff; border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn-lg { min-height: 52px; padding: 0 1.75rem; font-size: 15px; }
.btn-sm { min-height: 36px; padding: 0 .9rem; font-size: 13px; }
.btn-block { width: 100%; }

.chip {
  display: inline-flex; align-items: center; gap: .4rem; flex: none;
  padding: .55rem .9rem; border-radius: var(--pill);
  background: var(--card); color: var(--ink); box-shadow: var(--sh-1);
  font-size: 13px; line-height: 16px; font-weight: 600; letter-spacing: .01em;
  transition: background-color .15s, color .15s, box-shadow .15s;
}
.chip .ic { width: 16px; height: 16px; color: var(--coral); }
.chip:hover { color: var(--coral); box-shadow: 0 0 0 1px rgba(231, 76, 60, .35), 0 4px 12px rgba(31, 41, 55, .06); }
.chip.is-active { background: var(--coral); color: #fff; box-shadow: 0 4px 12px rgba(231, 76, 60, .25); }
.chip.is-active .ic { color: #fff; }
.chip .count { color: var(--muted-2); font-weight: 600; }
.chip.is-active .count { color: rgba(255, 255, 255, .8); }

.tag {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .65rem; border-radius: var(--pill);
  background: var(--field); color: var(--charcoal);
  font-size: 12px; line-height: 16px; font-weight: 600;
}
.tag .ic { width: 14px; height: 14px; color: var(--coral); }

.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .65rem; border-radius: var(--pill);
  font-size: 11px; line-height: 14px; font-weight: 700; letter-spacing: .03em;
  background: rgba(255, 255, 255, .92); color: var(--coral-strong);
  box-shadow: 0 1px 4px rgba(31, 41, 55, .12);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.badge .ic { width: 14px; height: 14px; }
.badge-award { background: var(--award-bg); color: var(--award-fg); }
.badge-coral { background: var(--coral); color: #fff; }
.badge-dark { background: rgba(31, 41, 55, .78); color: #fff; }

.kicker {
  display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start;
  padding: .35rem .75rem; border-radius: var(--pill);
  background: var(--coral-soft); color: var(--coral-strong);
  font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: .02em;
}
.kicker .ic { width: 15px; height: 15px; }

/* ── Header ────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 249, 247, .88);
  -webkit-backdrop-filter: saturate(1.4) blur(18px); backdrop-filter: saturate(1.4) blur(18px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, .04);
}
.site-header .container { height: var(--header-h); display: flex; align-items: center; gap: .75rem; }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 30px; width: auto; }
@media (min-width: 1024px) { .brand img { height: 36px; } }

.city-picker { position: relative; }
.city-picker > summary {
  list-style: none; display: inline-flex; align-items: center; gap: .3rem;
  min-height: 40px; padding: 0 .75rem 0 .6rem; border-radius: var(--pill);
  background: var(--field-2); font-size: 13px; font-weight: 600; cursor: pointer;
  max-width: 180px;
}
.city-picker > summary::-webkit-details-marker { display: none; }
.city-picker > summary .ic { width: 18px; height: 18px; color: var(--coral); }
.city-picker > summary .chev { width: 16px; height: 16px; color: var(--muted); }
.city-picker > summary span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.city-picker[open] > summary { background: var(--coral-soft); }
.city-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px; z-index: 60;
  background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-3); padding: .5rem;
}
.city-menu p { padding: .5rem .75rem .25rem; }
.city-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .6rem .75rem; border-radius: var(--r-sm); font-size: 14px; font-weight: 600;
}
.city-menu a:hover, .city-menu a.is-active { background: var(--coral-soft); color: var(--coral-strong); }
.city-menu a small { color: var(--muted-2); font-weight: 600; }

.main-nav { display: none; margin-left: auto; align-items: center; gap: .25rem; }
.main-nav a {
  padding: .5rem .8rem; border-radius: var(--pill);
  font-size: 14px; font-weight: 600; color: var(--charcoal);
}
.main-nav a:hover { color: var(--coral); }
.main-nav a[aria-current="page"] { color: var(--coral); background: var(--coral-soft); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: .25rem; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink);
}
.icon-btn:hover { color: var(--coral); background: var(--field); }
.icon-btn .ic { width: 22px; height: 22px; }
.count-dot {
  position: absolute; top: 6px; right: 5px; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: var(--pill); background: var(--coral); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
}
.count-dot[hidden] { display: none; }
.header-cta { display: none; }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-actions { margin-left: .5rem; }
  .header-cta { display: inline-flex; }
}

/* Mobile Bottom-Navigation (wie Stitch-Vorlage) */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(250, 249, 247, .94);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .05);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.bottom-nav ul { list-style: none; margin: 0; padding: 0 .25rem; height: var(--bottom-nav-h); display: flex; justify-content: space-around; align-items: center; }
.bottom-nav a {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-width: 64px; min-height: 44px; color: var(--muted);
  font-size: 11px; line-height: 14px; font-weight: 600;
}
.bottom-nav a .ic { width: 22px; height: 22px; }
.bottom-nav a[aria-current="page"] { color: var(--coral); }
.bottom-nav .count-dot { top: -2px; right: 10px; }
body { padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 1024px) {
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
}

/* ── Hero & Suche ──────────────────────────────────── */

.hero { position: relative; padding: 1.25rem 0 1.5rem; overflow: hidden; }
.hero-grid { display: grid; gap: 1.5rem; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: .75rem; }
.hero-copy .lead { font-size: 15px; line-height: 24px; color: var(--muted); max-width: 34rem; }
.hero-art { display: none; }

@media (min-width: 1024px) {
  .hero { padding: 3.5rem 0 3rem; }
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 3.5rem; }
  .hero-copy { gap: 1.1rem; }
  .hero-copy .lead { font-size: 18px; line-height: 28px; }
  .hero-art { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 1fr 1fr; gap: 1rem; height: 440px; }
  .hero-art .tile { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-2); }
  .hero-art .tile:first-child { grid-row: span 2; }
  .hero-art img { width: 100%; height: 100%; object-fit: cover; }
  .hero-art .tile-note {
    position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
    display: flex; align-items: center; gap: .6rem; padding: .7rem .9rem;
    background: rgba(255, 255, 255, .94); border-radius: var(--r-md); box-shadow: var(--sh-2);
    font-size: 13px; line-height: 18px; font-weight: 600;
  }
  .hero-art .tile-note .ic { color: var(--coral); }
}

.search-dock {
  background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-3);
  padding: 1rem; display: grid; gap: .6rem; margin-top: .5rem;
}
.field {
  position: relative; display: flex; align-items: center; gap: .6rem;
  min-height: 52px; padding: .35rem .85rem; border-radius: var(--r-sm); background: var(--field);
  border: 1px solid transparent; transition: border-color .15s, background-color .15s;
}
.field:focus-within { border-color: rgba(231, 76, 60, .5); background: #fff; }
.field > .ic { color: var(--coral); }
.field input, .field select {
  width: 100%; min-width: 0; border: 0; background: transparent; outline: none;
  font-size: 15px; font-weight: 600; color: var(--ink); padding: 0; min-height: 40px;
  appearance: none; -webkit-appearance: none;
}
.field input::placeholder { color: var(--muted-2); font-weight: 500; }
.field select { cursor: pointer; padding-right: 1.25rem; }
.field .field-label { position: absolute; top: 6px; left: 2.85rem; font-size: 10px; line-height: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-2); pointer-events: none; }
.field.has-label select, .field.has-label input { padding-top: 12px; }
.field .select-chev { position: absolute; right: .75rem; width: 16px; height: 16px; color: var(--muted); pointer-events: none; }
.search-dock .row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.search-dock .btn { min-height: 52px; font-size: 15px; }

@media (min-width: 768px) {
  .search-dock { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.4fr) auto; align-items: center; padding: .6rem; border-radius: var(--pill); gap: .4rem; }
  .search-dock .row { grid-template-columns: 1fr 1fr; gap: .4rem; }
  .search-dock .field { border-radius: var(--pill); padding-left: 1.1rem; }
  .search-dock .field .field-label { left: 3.1rem; }
  .search-dock .btn { width: 52px; height: 52px; min-height: 52px; padding: 0; border-radius: 50%; }
  .search-dock .btn span { display: none; }
}
@media (min-width: 1024px) {
  .hero .search-dock { margin-right: -6rem; position: relative; z-index: 2; }
}

.hero-facts { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: .5rem; color: var(--muted); font-size: 13px; font-weight: 600; }
.hero-facts span { display: inline-flex; align-items: center; gap: .35rem; }
.hero-facts .ic { width: 16px; height: 16px; color: var(--success); }

/* ── Sektionen ─────────────────────────────────────── */

.section { padding: 1.25rem 0 2rem; }
@media (min-width: 1024px) { .section { padding: 2rem 0 3rem; } }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.section-head p { color: var(--muted); font-size: 14px; line-height: 22px; margin-top: .15rem; }
.section-head .more { display: inline-flex; align-items: center; gap: .1rem; color: var(--coral); font-size: 13px; font-weight: 700; white-space: nowrap; }
.section-head .more .ic { width: 18px; height: 18px; }
@media (min-width: 1024px) { .section-head { margin-bottom: 1.5rem; } }

.scroller {
  display: flex; gap: .5rem; overflow-x: auto; scroll-snap-type: x proximity;
  padding: .35rem var(--gutter) .75rem; margin: 0 calc(var(--gutter) * -1);
  scrollbar-width: none;
}
.scroller::-webkit-scrollbar { display: none; }
.scroller > * { scroll-snap-align: start; }
@media (min-width: 1024px) {
  .scroller.wrap-desktop { flex-wrap: wrap; overflow: visible; margin: 0; padding: .35rem 0 .5rem; }
}

/* ── Restaurant-Karten ─────────────────────────────── */

.cards { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.cards.cols-2 { }
@media (min-width: 1024px) { .cards.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.r-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-2); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.r-card:hover { box-shadow: var(--sh-3); transform: translateY(-2px); }
.r-card .media { position: relative; aspect-ratio: 16 / 10; background: var(--field); overflow: hidden; }
.r-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.r-card:hover .media img { transform: scale(1.03); }
.r-card .media::after { content: ""; position: absolute; inset: auto 0 0 0; height: 45%; background: linear-gradient(to top, rgba(17, 24, 39, .45), transparent); pointer-events: none; }
.r-card .media .badge { position: absolute; top: .75rem; left: .75rem; z-index: 2; }
.r-card .place {
  position: absolute; left: .75rem; bottom: .6rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .2rem .55rem; border-radius: var(--pill);
  background: rgba(31, 41, 55, .72); color: #fff; font-size: 11px; line-height: 16px; font-weight: 700; letter-spacing: .02em;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.r-card .place .ic { width: 13px; height: 13px; }
.r-card .body { padding: 1rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.r-card .title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.r-card h3 { font-size: 18px; line-height: 24px; font-weight: 700; }
.r-card h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.r-card h3 a:hover { color: inherit; }
.r-card .meta { color: var(--muted); font-size: 13px; line-height: 20px; }
.r-card .meta .sep { margin: 0 .3rem; color: var(--grey); }
.r-card .desc { color: var(--muted); font-size: 14px; line-height: 21px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.r-card .foot { margin-top: auto; padding-top: .5rem; display: flex; flex-wrap: wrap; gap: .4rem; position: relative; z-index: 2; }
.r-card .foot .pill {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .45rem .75rem; border-radius: var(--r-sm);
  background: var(--coral-soft); color: var(--coral-strong);
  font-size: 12px; line-height: 16px; font-weight: 700;
}
.r-card .foot .pill:hover { background: var(--coral); color: #fff; }
.r-card .foot .pill .ic { width: 14px; height: 14px; }
.r-card .foot .pill.soft { background: var(--field); color: var(--charcoal); }
.r-card .foot .pill.soft:hover { background: var(--charcoal); color: #fff; }

.rating {
  display: inline-flex; align-items: center; gap: .25rem; flex: none;
  padding: .2rem .5rem; border-radius: var(--r-sm); background: var(--field);
  font-size: 13px; font-weight: 700;
}
.rating .ic { width: 15px; height: 15px; color: var(--star); }
.rating small { color: var(--muted); font-weight: 500; font-size: 12px; }

.save-btn {
  position: absolute; top: .65rem; right: .65rem; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .88); color: var(--ink);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 1px 4px rgba(31, 41, 55, .15); transition: transform .12s, color .15s;
}
.save-btn:hover { color: var(--coral); }
.save-btn:active { transform: scale(.9); }
.save-btn .ic { width: 20px; height: 20px; }
.save-btn .on { display: none; }
.save-btn.is-saved { color: var(--coral); }
.save-btn.is-saved .on { display: block; }
.save-btn.is-saved .off { display: none; }

.img-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--coral-soft), var(--field)); color: var(--coral); }
.img-fallback .ic { width: 40px; height: 40px; opacity: .6; }

/* ── Guides ────────────────────────────────────────── */

.guides { display: grid; gap: 1rem; }
@media (min-width: 768px) { .guides { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.guide-card {
  position: relative; display: flex; align-items: flex-end; min-height: 150px;
  border-radius: var(--r-lg); overflow: hidden; padding: 1rem; color: #fff; box-shadow: var(--sh-1);
}
@media (min-width: 768px) { .guide-card { min-height: 240px; padding: 1.25rem; } }
.guide-card img, .guide-card picture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.guide-card picture img { position: static; }
.guide-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .35) 55%, rgba(0, 0, 0, .05)); }
.guide-card:hover { color: #fff; }
.guide-card:hover img { transform: scale(1.05); }
.guide-card .txt { position: relative; z-index: 2; display: flex; flex-direction: column; gap: .2rem; }
.guide-card .label-sm { color: #FFB4A9; }
.guide-card h3 { color: #fff; font-size: 18px; line-height: 24px; }
.guide-card p { color: rgba(255, 255, 255, .82); font-size: 13px; line-height: 19px; }

/* ── Vorteile / Info-Boxen ─────────────────────────── */

.benefits { background: #F5F3F2; border-radius: var(--r-lg); padding: 1.25rem; display: grid; gap: 1.25rem; }
@media (min-width: 1024px) { .benefits { padding: 2.25rem; grid-template-columns: 1fr 2.2fr; align-items: start; gap: 2.5rem; } }
.benefits-head { display: flex; flex-direction: column; gap: .5rem; }
.benefits-head .h-md { display: flex; align-items: center; gap: .5rem; }
.benefits-head .ic { width: 28px; height: 28px; color: var(--coral); }
.benefit-list { display: grid; gap: 1.1rem; }
@media (min-width: 768px) { .benefit-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.benefit { display: flex; align-items: flex-start; gap: .8rem; }
@media (min-width: 768px) { .benefit { flex-direction: column; } }
.benefit .dot { width: 40px; height: 40px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; background: var(--coral-soft); color: var(--coral); }
.benefit h3 { font-size: 14px; line-height: 20px; font-weight: 700; margin-bottom: .15rem; }
.benefit p { font-size: 13px; line-height: 20px; color: var(--muted); }

.cta-band {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--charcoal); color: #fff; padding: 1.75rem 1.25rem;
  display: grid; gap: 1.25rem; align-items: center;
}
.cta-band::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 76, 60, .45), rgba(231, 76, 60, 0) 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .78); font-size: 15px; line-height: 24px; max-width: 40rem; }
.cta-band .label-sm { color: #FFB4A9; margin-bottom: .4rem; display: block; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .6rem; }
@media (min-width: 1024px) { .cta-band { grid-template-columns: 1fr auto; padding: 2.75rem 3rem; } }

.empty {
  background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-1);
  padding: 2.25rem 1.25rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.empty .circle { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--coral-soft); color: var(--coral); margin-bottom: .25rem; }
.empty .circle .ic { width: 30px; height: 30px; }
.empty p { color: var(--muted); max-width: 32rem; font-size: 15px; line-height: 24px; }
.empty .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: .5rem; }

/* ── Seitenkopf (Unterseiten) ──────────────────────── */

.page-head { padding: 1.25rem 0 1rem; }
@media (min-width: 1024px) { .page-head { padding: 2.25rem 0 1.5rem; } }
.page-head p.lead { color: var(--muted); font-size: 15px; line-height: 24px; margin-top: .4rem; max-width: 44rem; }
@media (min-width: 1024px) { .page-head p.lead { font-size: 17px; line-height: 27px; } }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .15rem; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: .75rem; list-style: none; padding: 0; }
.crumbs li { display: inline-flex; align-items: center; gap: .15rem; }
.crumbs li + li::before { content: "›"; color: var(--grey); margin: 0 .3rem; }
.crumbs a:hover { color: var(--coral); }

/* ── Suche / Filter ────────────────────────────────── */

.search-layout { display: grid; gap: 1.25rem; padding-bottom: 2.5rem; }
@media (min-width: 1024px) { .search-layout { grid-template-columns: 280px minmax(0, 1fr); gap: 2rem; align-items: start; } }

.filters { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-1); padding: 1rem; }
.filters > summary { list-style: none; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 15px; cursor: pointer; }
.filters > summary::-webkit-details-marker { display: none; }
.filters > summary .ic { color: var(--coral); }
.filters form { display: grid; gap: 1rem; margin-top: 1rem; }
@media (min-width: 1024px) {
  .filters { position: sticky; top: calc(var(--header-h) + 1rem); padding: 1.25rem; }
  .filters > summary { pointer-events: none; }
  .filters > summary .chev { display: none; }
}
.fgroup { display: grid; gap: .4rem; }
.fgroup > label, .fgroup > legend { font-size: 11px; line-height: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); padding: 0; }
fieldset.fgroup { border: 0; margin: 0; padding: 0; }
.fgroup .field { min-height: 44px; }
.fgroup .field input, .fgroup .field select { font-size: 14px; min-height: 34px; }
.price-toggle { display: grid; grid-template-columns: repeat(4, 1fr); gap: .35rem; }
.price-toggle label { position: relative; }
.price-toggle input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.price-toggle span {
  display: flex; align-items: center; justify-content: center; min-height: 40px; border-radius: var(--r-sm);
  background: var(--field); font-size: 13px; font-weight: 700; color: var(--charcoal); border: 1px solid transparent;
}
.price-toggle input:checked + span { background: var(--coral-soft); color: var(--coral-strong); border-color: rgba(231, 76, 60, .4); }
.price-toggle input:focus-visible + span { outline: 3px solid rgba(231, 76, 60, .45); outline-offset: 2px; }
.filters .actions { display: flex; gap: .5rem; }
.filters .actions .btn { flex: 1; }

.results-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: 1rem; }
.results-bar strong { font-size: 15px; }
.active-filters { display: flex; flex-wrap: wrap; gap: .4rem; }
.active-filters a { display: inline-flex; align-items: center; gap: .25rem; padding: .3rem .4rem .3rem .7rem; border-radius: var(--pill); background: var(--coral-soft); color: var(--coral-strong); font-size: 12px; font-weight: 700; }
.active-filters a .ic { width: 14px; height: 14px; }

/* ── Restaurant-Profil ─────────────────────────────── */

.gallery { position: relative; display: grid; gap: .5rem; border-radius: var(--r-lg); overflow: hidden; margin: 0 calc(var(--gutter) * -1); border-radius: 0; }
.gallery .g-item { position: relative; display: block; overflow: hidden; background: var(--field); }
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery .g-item:hover img { transform: scale(1.03); }
.gallery .g-main { aspect-ratio: 16 / 10; }
.gallery .g-side { display: none; }
.gallery .g-count {
  position: absolute; right: .75rem; bottom: .75rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem; padding: .45rem .8rem; border-radius: var(--pill);
  background: rgba(255, 255, 255, .94); color: var(--ink); font-size: 12px; font-weight: 700; box-shadow: var(--sh-2);
}
.gallery .g-count .ic { width: 16px; height: 16px; }
@media (min-width: 768px) {
  .gallery { margin: 0; border-radius: var(--r-xl); height: 420px; grid-template-columns: 2fr 1fr; }
  .gallery.single { grid-template-columns: 1fr; }
  .gallery .g-main { aspect-ratio: auto; height: 100%; }
  .gallery .g-side { display: grid; gap: .5rem; grid-template-rows: 1fr 1fr; height: 100%; }
  .gallery .g-side.one { grid-template-rows: 1fr; }
}
@media (min-width: 1024px) { .gallery { height: 480px; } }

.profile { display: grid; gap: 1.5rem; padding: 1.25rem 0 2.5rem; }
@media (min-width: 1024px) { .profile { grid-template-columns: minmax(0, 1fr) 380px; gap: 3rem; padding-top: 2rem; align-items: start; } }

.profile-head { display: flex; gap: 1rem; align-items: flex-start; }
.profile-head .logo { flex: none; width: 64px; height: 64px; border-radius: var(--r-md); background: #fff; box-shadow: var(--sh-1); display: flex; align-items: center; justify-content: center; padding: .4rem; }
.profile-head .logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (min-width: 1024px) { .profile-head .logo { width: 84px; height: 84px; } }
.profile-head .meta { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem .5rem; margin-top: .35rem; color: var(--muted); font-size: 14px; font-weight: 500; }
.profile-head .meta .sep { color: var(--grey); }
.profile-head .meta .ic { width: 16px; height: 16px; color: var(--coral); }
.profile-head .meta .rating .ic { color: var(--star); }
.profile-head .meta .place { display: inline-flex; align-items: center; gap: .25rem; white-space: nowrap; }
.profile-head .logo-dark { background: var(--charcoal); }
.profile-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }

.p-section { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.p-section:first-of-type { border-top: 0; }
.p-section h2 { font-size: 20px; line-height: 28px; margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.p-section h2 .ic { color: var(--coral); }
.p-section .tagline { font-size: 18px; line-height: 28px; font-weight: 600; color: var(--charcoal); margin-bottom: .6rem; }
.p-section .prose p { color: #374151; }
.p-section .prose p + p { margin-top: .75rem; }
.hours-text { white-space: pre-line; background: var(--card); border-radius: var(--r-md); box-shadow: var(--sh-1); padding: 1rem 1.25rem; font-size: 15px; line-height: 26px; }
.hours-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--r-md); box-shadow: var(--sh-1); overflow: hidden; font-size: 14px; }
.hours-table th, .hours-table td { text-align: left; padding: .6rem 1rem; border-top: 1px solid var(--line); }
.hours-table tr:first-child th, .hours-table tr:first-child td { border-top: 0; }
.hours-table th { font-weight: 600; width: 40%; }
.hours-table tr.today { background: var(--coral-soft); }
.hours-table .closed { color: var(--muted-2); }

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem; }
.info-list li { display: flex; align-items: flex-start; gap: .75rem; padding: .6rem 0; }
.info-list .ic { margin-top: 3px; color: var(--coral); }
.info-list a { font-weight: 600; word-break: break-word; }
.info-list small { display: block; color: var(--muted); font-size: 13px; }

.book-card { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-3); padding: 1.25rem; display: grid; gap: 1rem; }
@media (min-width: 1024px) { .book-card { position: sticky; top: calc(var(--header-h) + 1.25rem); padding: 1.5rem; } }
.book-card .soon { display: flex; gap: .75rem; align-items: flex-start; padding: .9rem 1rem; border-radius: var(--r-md); background: var(--coral-soft); color: var(--ink); }
.book-card .soon .ic { color: var(--coral); margin-top: 2px; }
.book-card .soon strong { display: block; font-size: 14px; line-height: 20px; }
.book-card .soon span { display: block; font-size: 13px; line-height: 19px; color: var(--muted); margin-top: .15rem; }
.book-card .actions { display: grid; gap: .5rem; }
.book-card .fineprint { font-size: 12px; line-height: 18px; color: var(--muted); text-align: center; }
.book-card .save-inline { justify-self: center; display: inline-flex; align-items: center; gap: .4rem; font-size: 13px; font-weight: 700; color: var(--charcoal); padding: .4rem .8rem; border-radius: var(--pill); }
.book-card .save-inline:hover, .book-card .save-inline.is-saved { color: var(--coral); }
.book-card .save-inline .on { display: none; }
.book-card .save-inline.is-saved .on { display: block; }
.book-card .save-inline.is-saved .off { display: none; }
.book-card .save-inline .t-on { display: none; }
.book-card .save-inline.is-saved .t-on { display: inline; }
.book-card .save-inline.is-saved .t-off { display: none; }

.source-note { display: flex; align-items: center; gap: .5rem; font-size: 12px; line-height: 18px; color: var(--muted); margin-top: .5rem; }
.source-note .ic { width: 16px; height: 16px; color: var(--success); }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(17, 24, 39, .92); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lightbox .lb-inner { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 3.5rem 1rem; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--r-sm); }
.lightbox button { position: absolute; width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, .14); color: #fff; display: flex; align-items: center; justify-content: center; }
.lightbox button:hover { background: rgba(255, 255, 255, .26); }
.lightbox .lb-close { top: .75rem; right: .75rem; }
.lightbox .lb-prev { left: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count { position: absolute; top: 1.4rem; left: 1rem; color: rgba(255, 255, 255, .8); font-size: 13px; font-weight: 600; }

/* ── Textseiten ────────────────────────────────────── */

.prose-page { max-width: 820px; padding-bottom: 3rem; }
.prose-page h2 { font-size: 20px; line-height: 28px; margin: 2rem 0 .6rem; }
.prose-page h3 { font-size: 16px; line-height: 24px; margin: 1.5rem 0 .4rem; }
.prose-page p, .prose-page li { color: #374151; font-size: 15px; line-height: 26px; }
.prose-page p + p { margin-top: .75rem; }
.prose-page ul { padding-left: 1.2rem; margin: .5rem 0; }
.prose-page a { color: var(--coral-strong); font-weight: 600; }
.prose-page a:hover { text-decoration: underline; }
.prose-page .card { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-1); padding: 1.25rem 1.5rem; margin: 1rem 0; }

.faq { display: grid; gap: .6rem; }
.faq details { background: var(--card); border-radius: var(--r-md); box-shadow: var(--sh-1); }
.faq summary { list-style: none; cursor: pointer; padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 700; font-size: 15px; line-height: 22px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { color: var(--coral); transition: transform .2s; }
.faq details[open] summary .ic { transform: rotate(180deg); }
.faq details > div { padding: 0 1.25rem 1.1rem; color: #374151; font-size: 15px; line-height: 25px; }

/* Für Restaurants */
.steps { display: grid; gap: 1rem; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.step { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-1); padding: 1.25rem; }
.step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--coral); color: #fff; font-weight: 800; margin-bottom: .75rem; }
.step h3 { font-size: 16px; line-height: 22px; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: 14px; line-height: 22px; }

.feature-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.feature { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-1); padding: 1.25rem; display: flex; gap: .9rem; align-items: flex-start; }
.feature .dot { width: 44px; height: 44px; border-radius: var(--r-md); flex: none; display: flex; align-items: center; justify-content: center; background: var(--coral-soft); color: var(--coral); }
.feature h3 { font-size: 15px; line-height: 22px; margin-bottom: .2rem; }
.feature p { color: var(--muted); font-size: 14px; line-height: 22px; }
.feature .soon-tag { display: inline-block; margin-left: .35rem; padding: .1rem .45rem; border-radius: var(--pill); background: var(--award-bg); color: var(--award-fg); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; vertical-align: 2px; }

.split-hero { display: grid; gap: 1.5rem; align-items: center; padding: 1.5rem 0 2rem; }
@media (min-width: 1024px) { .split-hero { grid-template-columns: 1.1fr .9fr; gap: 3.5rem; padding: 3rem 0; } }
.split-hero .img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-2); aspect-ratio: 4 / 3; }
.split-hero .img img { width: 100%; height: 100%; object-fit: cover; }
.split-hero .copy { display: flex; flex-direction: column; gap: 1rem; }
.split-hero .copy .lead { color: var(--muted); font-size: 16px; line-height: 26px; }
.split-hero .copy .actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .25rem; }

/* Guide-Kopf */
.guide-hero { position: relative; border-radius: 0; overflow: hidden; min-height: 240px; display: flex; align-items: flex-end; color: #fff; margin: 0 calc(var(--gutter) * -1); }
.guide-hero img, .guide-hero picture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.guide-hero picture img { position: static; }
.guide-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .25)); }
.guide-hero .txt { position: relative; z-index: 2; padding: 1.5rem var(--gutter); display: flex; flex-direction: column; gap: .4rem; max-width: 760px; }
.guide-hero .label-sm { color: #FFB4A9; }
.guide-hero h1 { color: #fff; }
.guide-hero p { color: rgba(255, 255, 255, .85); font-size: 15px; line-height: 24px; }
@media (min-width: 768px) { .guide-hero { margin: 0; border-radius: var(--r-xl); min-height: 340px; } .guide-hero .txt { padding: 2.25rem; } }

/* ── Footer ────────────────────────────────────────── */

.site-footer { background: var(--charcoal); color: rgba(255, 255, 255, .78); margin-top: 2.5rem; padding: 2.5rem 0 1.5rem; font-size: 14px; line-height: 22px; }
.site-footer a { color: rgba(255, 255, 255, .78); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-brand img { height: 34px; width: auto; }
.footer-brand p { margin-top: .9rem; max-width: 22rem; font-size: 13px; line-height: 21px; color: rgba(255, 255, 255, .65); }
.site-footer h2 { color: #fff; font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .75rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-bottom { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; font-size: 12px; color: rgba(255, 255, 255, .55); }
.footer-bottom a { color: rgba(255, 255, 255, .7); }

/* Formular-Honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Fehlerseite */
.error-page { padding: 3rem 0 4rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.error-page .code { font-size: 72px; line-height: 1; font-weight: 800; color: var(--coral); letter-spacing: -.04em; }
.error-page p { color: var(--muted); max-width: 30rem; }
.error-page .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: .75rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
