/* Typografie: Hiragino Mincho ProN (macOS/iOS) · Fallback Noto Serif JP */
@font-face {
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/noto-serif-jp-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/noto-serif-jp-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --color-bg: #fafafa;
  --color-surface: #ffffff;
  --color-text: #2a2a2f;
  --color-muted: #5c5c66;
  --color-nav: #3d3d44;
  --color-nav-border: #52525b;
  --color-gold: #b8942f;
  --color-gold-bright: #d4af37;
  --color-gold-soft: #f3e8c8;
  --color-line: rgba(61, 61, 68, 0.12);
  --shadow-soft: 0 12px 40px rgba(42, 42, 47, 0.08);
  --radius: 12px;
  --font: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "Noto Serif JP", serif;
  --header-h: 64px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

a,
button {
  -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--color-surface);
  color: var(--color-text);
  z-index: 280;
  border: 2px solid var(--color-gold-bright);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Nur für Screenreader sichtbar (nicht visuell) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Header / Nav (Grau) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.navigation-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.5rem max(1.25rem, env(safe-area-inset-right, 0px)) 0.5rem max(1.25rem, env(safe-area-inset-left, 0px));
  background: var(--color-nav);
  border-bottom: 1px solid var(--color-nav-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 6px;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.nav-brand:hover {
  opacity: 1;
  transform: scale(1.04);
  filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.45));
}

.nav-brand:active {
  transform: scale(0.98);
  filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.35));
}

.nav-brand:focus-visible {
  outline: 2px solid var(--color-gold-soft);
  outline-offset: 3px;
}

.avishasLogo {
  height: clamp(36px, 7vw, 48px);
  width: auto;
  max-width: min(200px, 45vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 4px;
}

.nav-panel {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.35rem;
}

.nav-links a {
  color: var(--color-gold-bright);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.2rem;
  border-radius: 4px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

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

.nav-links a:focus-visible {
  outline: 2px solid var(--color-gold-soft);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-gold-soft);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--color-gold-soft);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navigation-bar.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.navigation-bar.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— Layout sections ——— */
main {
  overflow-x: hidden;
}

main section {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--color-gold);
  letter-spacing: 0.03em;
}

.subheading {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.section-intro,
.lead {
  margin: 0 0 1.25rem;
  color: var(--color-muted);
  font-size: 1rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--color-text);
}

/* Hero */
.hero {
  background: radial-gradient(120% 80% at 50% 0%, var(--color-gold-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-line);
  padding-top: clamp(2.5rem, 8vw, 4.5rem);
  padding-bottom: 3rem;
  padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--color-muted);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
}

.hero h1::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-bright));
  margin: 0.75rem auto 0.75rem;
  border-radius: 2px;
}

/* Hero-Zusatz: nur unter 768px sichtbar (Mobile-Darstellung) */
.hero-highlight {
  display: none;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.hero-locale {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-gold);
}

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-bright) 100%);
  color: #1a1a1f;
  box-shadow: 0 4px 20px rgba(184, 148, 47, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(61, 61, 68, 0.25);
}

.btn-ghost:hover {
  border-color: var(--color-gold-bright);
  color: var(--color-gold);
}

/* Gallery — infinite auto-scroll band */
.section-motive {
  background: var(--color-surface);
  overflow: hidden;
  position: relative;
}

.section-motive::before,
.section-motive::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.section-motive::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-surface) 0%, transparent 100%);
}

.section-motive::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-surface) 0%, transparent 100%);
}

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

.gallery-scroller-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}

.gallery-scroller-wrap:active {
  cursor: grabbing;
}

.gallery-scroller-wrap::-webkit-scrollbar {
  display: none;
}

.gallery-scroller-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
  animation: gallery-scroll 32s linear infinite;
  will-change: transform;
}

.gallery-scroller-wrap:hover .gallery-scroller-inner {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-scroller-inner {
    animation: none;
  }
  .gallery-scroller-wrap {
    scroll-snap-type: x mandatory;
  }
  .gallery-item {
    scroll-snap-align: start;
  }
}

.gallery-item {
  flex-shrink: 0;
  margin: 0;
  width: clamp(180px, 22vw, 260px);
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-bg);
  box-shadow: 0 8px 32px rgba(42, 42, 47, 0.1);
  border: 1px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(184, 148, 47, 0.2);
}

.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: clamp(220px, 28vw, 320px);
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.gallery-item:hover img {
  filter: brightness(1.04);
}

/* Mobile (<768px): Hero, Gold-Trenner, Galerie wie Apple-Karussell (scroll-snap) */
@media (max-width: 767.98px) {
  .site-header {
    z-index: 300;
  }

  .hero {
    min-height: calc(90dvh - var(--header-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(2rem, 6vh, 3rem);
    padding-bottom: clamp(2rem, 6vh, 3rem);
  }

  .hero-inner {
    width: 100%;
    text-align: center;
  }

  .hero .eyebrow {
    margin: 0 auto clamp(1rem, 3vh, 1.5rem);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 11vw, 3.5rem);
    line-height: 1.08;
    margin: 0 auto clamp(1.25rem, 4vh, 1.75rem);
  }

  .hero-highlight {
    display: block;
    margin: 0 auto clamp(1.25rem, 4vh, 1.75rem);
    font-size: clamp(1.15rem, 4.2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.025em;
    color: var(--color-text);
    max-width: min(42ch, 100%);
    text-wrap: balance;
  }

  .hero-lead {
    margin: 0 auto clamp(1.75rem, 5vh, 2.25rem);
    font-size: clamp(0.95rem, 3.5vw, 1.05rem);
    line-height: 1.6;
    max-width: min(34ch, 100%);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    width: 100%;
  }

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

  /* Zweiter Buchungs-Button unter der Preisliste: auf Smartphone ausgeblendet */
  p.prices-cta-tail-wrap {
    display: none;
  }

  main > section:not(:first-of-type)::before {
    content: "";
    display: block;
    width: 60%;
    margin: 0 auto 1rem;
    height: 1px;
    background: var(--color-gold-bright);
    box-sizing: border-box;
  }

  /* --- Preisliste: horizontales Karussell gleicher Logik wie Motive (<768px) --- */
  .price-carousel {
    width: 100%;
    min-width: 0;
  }

  #price-track {
    display: flex;
    flex-flow: row nowrap;
    gap: clamp(0.875rem, 3vw, 1rem);
    overflow-x: scroll;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(0.75rem, env(safe-area-inset-left, 0px));
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: manipulation;
    padding-bottom: 0.5rem;
    margin: 0;
  }

  #price-track::-webkit-scrollbar {
    height: 0;
    width: 0;
    display: none;
  }

  #price-track::-webkit-scrollbar-thumb {
    background: transparent;
  }

  #price-track .price-group {
    flex: 0 0 92%;
    min-width: 0;
    flex-shrink: 0;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
    min-height: min(62vh, 520px);
    align-self: stretch;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  #price-track .price-list {
    flex: 1;
  }

  .price-dots:not([hidden]) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .price-dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgb(174, 174, 178);
    cursor: pointer;
    opacity: 0.75;
    -webkit-appearance: none;
    appearance: none;
  }

  .price-dot.is-active {
    opacity: 1;
    background: var(--color-gold-bright);
    transform: scale(1.2);
  }
}

/* About */
.section-about {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.two-col {
  display: grid;
  gap: 2rem;
  align-items: start;
  min-width: 0;
}

.two-col > * {
  min-width: 0;
}

@media (min-width: 840px) {
  .two-col {
    grid-template-columns: 1fr 320px;
  }
}

.checklist {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-muted);
}

.checklist li {
  margin-bottom: 0.65rem;
}

.checklist strong {
  color: var(--color-text);
}

.about-card {
  background: var(--color-surface);
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.about-card-title {
  margin-top: 0;
}

.about-card--wide {
  width: 100%;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-color: rgba(61, 61, 68, 0.35);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.about-card--wide .about-card-title {
  font-size: 1.6rem;
  letter-spacing: 0.01em;
}

.about-card--wide:hover {
  border-color: var(--color-gold-bright);
}

.about-card--wide p {
  margin: 0;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 72ch;
}

@media (min-width: 840px) {
  .about-card--wide {
    padding: 2.5rem 2.5rem;
  }
}

/* Services Grid */
.section-services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (max-width: 767.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.service-card:hover {
  border-color: var(--color-gold-bright);
  box-shadow: 0 8px 32px rgba(184, 148, 47, 0.15);
  transform: translateY(-2px);
}

.service-icon {
  display: block;
  font-size: 1.1rem;
  color: var(--color-gold-bright);
  margin-bottom: 0.65rem;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* Prices */
.section-prices {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.prices-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.price-grid {
  display: grid;
  gap: 1.25rem;
}

/* Zweiter Buchungs-CTA: Basis (mobile siehe max-width 767.98px; Desktop siehe folgender Block) */
p.prices-cta-tail-wrap {
  margin: 0;
}

/* Desktop (≥768px): oberer „Online buchen“ ausblenden, unteren CTA mit Abstand unter dem Raster */
@media (min-width: 768px) {
  #buchung {
    display: none;
  }

  .price-carousel {
    margin-block-end: 0;
    padding-block-end: 0;
  }

  #price-track {
    margin-block-end: 0;
    padding-block-end: 0;
  }

  p.prices-cta-tail-wrap {
    margin-block-start: 2rem;
    padding-block-start: 0;
    text-align: left;
  }
}

@media (min-width: 700px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.price-group {
  background: var(--color-bg);
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
}

.price-group--wide {
  grid-column: 1 / -1;
}

@media (min-width: 700px) {
  .price-group--wide .price-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.5rem;
  }
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "name price"
    "meta price";
  gap: 0.15rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.98rem;
  min-width: 0;
}

.pl-name {
  grid-area: name;
  font-weight: 500;
  min-width: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.pl-meta {
  grid-area: meta;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.pl-price {
  grid-area: price;
  align-self: center;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}

/* Location */
.section-location {
  background: var(--color-bg);
}

@media (min-width: 840px) {
  .section-location .two-col {
    align-items: center;
  }
}

.address {
  font-style: normal;
  margin: 0 0 1rem;
  line-height: 1.7;
}

.address-map-link {
  color: var(--color-text);
  font-weight: 400;
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.address-map-link:hover {
  color: #000000;
}

.address-map-link:focus-visible {
  outline: 2px solid var(--color-gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

.text-link {
  color: var(--color-gold);
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.hint {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hours {
  width: 100%;
  max-width: 320px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours th,
.hours td {
  padding: 0.45rem 0.75rem 0.45rem 0;
  text-align: left;
  border-bottom: 1px solid var(--color-line);
}

.hours th {
  font-weight: 600;
  width: 42%;
  color: var(--color-text);
}

.fineprint {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 1rem;
}

.map-card {
  position: relative;
  min-height: min(240px, 50vw);
}

.map-embed {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 240px;
  height: min(50vw, 320px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* Contact & Reviews */
.section-contact {
  background: var(--color-surface);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-line);
  overflow-wrap: anywhere;
}

/* Kontakt: keine Hover-/Farbübergänge; nur Zeilentrenner wie bei li — kein Text-Unterstrich */
.section-contact .contact-list a {
  color: var(--color-gold);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: none;
}

.section-contact .contact-list a.address-map-link {
  align-items: flex-start;
}

.section-contact .contact-list a:hover,
.section-contact .contact-list a:active {
  color: var(--color-gold);
  text-decoration: none;
}

.section-contact .contact-list a:focus-visible {
  color: var(--color-gold);
  text-decoration: none;
  outline: 2px solid var(--color-gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

.contact-label {
  min-width: 5rem;
  color: var(--color-muted);
  font-weight: 500;
}

.section-reviews {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-line);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.25rem 0 1.25rem;
  font-size: 1.5rem;
  color: var(--color-gold-bright);
}

.review-score {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--color-nav);
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem max(1.25rem, env(safe-area-inset-right, 0px)) max(2rem, calc(1.25rem + env(safe-area-inset-bottom, 0px))) max(1.25rem, env(safe-area-inset-left, 0px));
  border-top: 3px solid var(--color-gold-bright);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.footer-links a {
  color: var(--color-gold-soft);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0.35rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .footer-cookie-btn {
  background: none;
  border: none;
  padding: 0.25rem 0.35rem;
  margin: 0;
  font: inherit;
  font-size: 0.9rem;
  color: var(--color-gold-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.footer-links .footer-cookie-btn:hover {
  text-decoration: underline;
}

.footer-credit {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.9;
}

.credit-name {
  color: var(--color-gold-bright);
  font-weight: 600;
  text-decoration: none;
}

/* Rechtstexte (Impressum / Datenschutz) */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem max(1.25rem, env(safe-area-inset-right, 0px)) 4rem max(1.25rem, env(safe-area-inset-left, 0px));
}

.legal-page h1 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  color: var(--color-gold);
}

.legal-page h3 {
  font-size: 1rem;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--color-gold-bright);
  font-weight: 600;
}

.legal-page p,
.legal-page li {
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-page .legal-list li {
  margin-bottom: 0.35rem;
}

.legal-page code {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.05em 0.35em;
  border-radius: 4px;
  font-size: 0.92em;
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
  font-weight: 600;
}

.nav-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.nav-minimal .home-link {
  color: var(--color-gold-bright);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0;
}

.nav-minimal .home-link:hover {
  color: var(--color-gold-soft);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-panel {
    flex: 0 0 auto;
    justify-content: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-nav);
    border-bottom: 1px solid var(--color-nav-border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .navigation-bar.is-open .nav-panel {
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem max(1.25rem, env(safe-area-inset-right, 0px)) 1rem max(1.25rem, env(safe-area-inset-left, 0px));
    gap: 0;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 767.98px) {
  .navigation-bar .nav-panel {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    max-height: none !important;
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    width: auto;
    padding: 2rem max(1.25rem, env(safe-area-inset-right, 0px)) max(2rem, env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-left, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: var(--color-nav);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 1;
  }

  .navigation-bar.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    width: min(26rem, 100%);
    margin: 0 auto;
    align-items: center;
    text-align: center;
    gap: 0.25rem !important;
    padding: 0;
  }

  .nav-links a {
    justify-content: center;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 600;
    min-height: 56px;
    padding: 0.5rem 0.75rem;
    letter-spacing: 0.06em;
    border-bottom: none;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .prices-head {
    flex-direction: column;
    align-items: stretch;
  }

  .prices-head .btn-primary {
    width: 100%;
    box-sizing: border-box;
  }

  .review-actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 200px);
  }
}

/* ——— Cookie-Banner & Präferenzen ——— */
body.cookie-banner-visible {
  padding-bottom: max(7.5rem, env(safe-area-inset-bottom, 0px));
}

.cookie-banner {
  position: fixed;
  z-index: 250;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.9rem max(1rem, env(safe-area-inset-right, 0px)) max(0.9rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  box-shadow: 0 -8px 32px rgba(42, 42, 47, 0.1);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  align-items: center;
}

.cookie-banner__actions .btn {
  min-height: 44px;
  padding: 0.5rem 1.1rem;
  font-size: 0.92rem;
}

/* Nur „Alle akzeptieren“ als klarer Haupt-CTA; andere Aktionen dezent wie Textlinks */
.cookie-banner__actions .btn-ghost {
  background: transparent;
  border: none;
  color: var(--color-muted);
  font-weight: 500;
  box-shadow: none;
  padding: 0.45rem 0.5rem;
}

.cookie-banner__actions .btn-ghost:hover {
  color: var(--color-gold);
  border: none;
  text-decoration: underline;
  filter: none;
}

.cookie-banner__actions .btn-primary {
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(184, 148, 47, 0.42);
}

@media (min-width: 700px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__text {
    flex: 1 1 16rem;
    max-width: 40rem;
  }
}

@media (max-width: 519px) {
  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

.cookie-dialog {
  width: min(100% - 2rem, 36rem);
  max-height: min(90dvh, 40rem);
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.cookie-dialog::backdrop {
  background: rgba(28, 28, 32, 0.45);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.cookie-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0 1.25rem;
  border-bottom: 1px solid var(--color-line);
}

.cookie-dialog__title {
  margin: 0;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

.cookie-dialog__close {
  flex-shrink: 0;
  margin-top: -0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-dialog__close:hover {
  border-color: var(--color-gold-bright);
  color: var(--color-gold);
}

.cookie-dialog__body {
  padding: 1.1rem 1.25rem 0.5rem;
  overflow-y: auto;
  max-height: min(60dvh, 24rem);
}

.cookie-dialog__intro {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.cookie-dialog__subtitle {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold);
}

.cookie-block {
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-line);
}

.cookie-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}

.cookie-block--static .cookie-block__row {
  margin-bottom: 0.4rem;
}

.cookie-block__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.cookie-block__row--toggle {
  margin-bottom: 0.4rem;
}

.cookie-block__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.cookie-block__desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.cookie-badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(184, 148, 47, 0.18);
  color: var(--color-nav);
}

.cookie-check-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  font-weight: inherit;
}

.cookie-check-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.cookie-dialog__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
  padding: 1rem 1.25rem max(1rem, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--color-line);
  background: var(--color-bg);
  border-radius: 0 0 var(--radius) var(--radius);
}

.cookie-dialog__footer .btn {
  min-height: 44px;
}



/* ——— Öffnungszeiten-Status (abgerundeter „Chip“ mit einem Satz + Punkt) ——— */
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
  padding: 0.5rem 1.05rem;
  padding-left: 0.8rem;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.945rem;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.015em;
  box-shadow: 0 1px 6px rgba(42, 42, 47, 0.06);
}

.hours-status::before {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 1px;
  border-radius: 50%;
}

.hours-status--open {
  background: rgba(22, 163, 74, 0.11);
  border-color: rgba(22, 163, 74, 0.32);
  color: var(--color-text);
}

.hours-status--open::before {
  background: #22c55e;
}

.hours-status--soon {
  background: rgba(217, 119, 6, 0.1);
  border-color: rgba(217, 119, 6, 0.3);
  color: var(--color-text);
}

.hours-status--soon::before {
  background: #f59e0b;
}

.hours-status--closed {
  background: var(--color-bg);
  border-color: var(--color-line);
  color: var(--color-muted);
}

.hours-status--closed::before {
  background: #a8b0bd;
}

.hours-status[hidden] {
  display: none;
}
