/* ------------------------------------------------------------------ */
/* Billard Palace Dieburg – Theme-Styles (v1.6)                        */
/* Premium Design in Hell- & Dunkelmodus mit Auto-Erkennung.           */
/* ------------------------------------------------------------------ */

/* --- Schriftarten (selbst gehostet, keine externen Requests) ------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/fraunces-var-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/fraunces-var-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-var-latin.woff2') format('woff2');
}

/* --- Grundtokens ----------------------------------------------------- */
:root {
  --bp-ink-950: #0a0a0b;
  --bp-ink-900: #121110;
  --bp-ink-800: #1a1815;

  --bp-cream-100: #f2ede2;
  --bp-cream-200: #e5ded0;
  --bp-cream-300: #cfc5b2;
  --bp-sand-400: #a99e8b;
  --bp-sand-500: #8a8172;
  --bp-sand-600: #6b6459;

  /* Champagner-Gold */
  --bp-gold-200: #f4e5c0;
  --bp-gold-300: #e7cb8e;
  --bp-gold-400: #d2aa62;
  --bp-gold-500: #b68d3f;
  --bp-gold-600: #8f6c2c;

  --bp-felt-500: #5f7d59;

  /* Helle Fläche */
  --bp-light-bg: #f4eee3;
  --bp-light-bg-alt: #ece4d5;
  --bp-light-surface: #fdfaf3;
  --bp-light-fg: #1f1b15;
  --bp-light-muted: #6c6150;
  --bp-light-soft: #988c7b;
  --bp-light-border: rgba(31, 27, 21, 0.1);
  --bp-light-border-strong: rgba(31, 27, 21, 0.17);
  --bp-light-shadow: 0 1px 2px rgba(31, 27, 21, 0.05),
    0 8px 24px -20px rgba(31, 27, 21, 0.3);

  --bp-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --bp-serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  --bp-container: 1152px;
  --bp-gutter: 1.25rem;

  --bp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Thema: Standard = hell ------------------------------------------ */
:root,
:root[data-theme="light"] {
  color-scheme: light;

  --t-body-bg: var(--bp-light-bg);
  --t-section-alt: var(--bp-light-bg-alt);
  --t-surface: var(--bp-light-surface);
  --t-surface-2: #f8f1e2;
  --t-glow: rgba(255, 255, 255, 0.65);
  --t-fg: var(--bp-light-fg);
  --t-muted: var(--bp-light-muted);
  --t-soft: var(--bp-light-soft);
  --t-accent: #96722f;
  --t-border: var(--bp-light-border);
  --t-border-strong: var(--bp-light-border-strong);
  --t-hairline: rgba(31, 27, 21, 0.09);
  --t-shadow: var(--bp-light-shadow);
  --t-header-bg: rgba(253, 250, 243, 0.9);
  --t-bar-bg: rgba(253, 250, 243, 0.94);
  --t-today-bg: #f6ead2;
  --t-card-hover-border: rgba(150, 114, 47, 0.5);
}

/* --- Thema: dunkel (Espresso) ----------------------------------------- */
:root[data-theme="dark"] {
  color-scheme: dark;

  --t-body-bg: #0c0b09;
  --t-section-alt: #131110;
  --t-surface: #1a1713;
  --t-surface-2: #1f1b16;
  --t-glow: rgba(220, 184, 120, 0.06);
  --t-fg: #f0e9dc;
  --t-muted: #b2a892;
  --t-soft: #8f8574;
  --t-accent: #dcb878;
  --t-border: rgba(240, 233, 220, 0.1);
  --t-border-strong: rgba(240, 233, 220, 0.18);
  --t-hairline: rgba(240, 233, 220, 0.09);
  --t-shadow: 0 0 0 transparent;
  --t-header-bg: rgba(12, 11, 9, 0.82);
  --t-bar-bg: rgba(12, 11, 9, 0.9);
  --t-today-bg: rgba(220, 184, 120, 0.12);
  --t-card-hover-border: rgba(220, 184, 120, 0.42);
}

/* --- Semantische Farben ------------------------------------------------ */
:root {
  --c-fg: var(--t-fg);
  --c-muted: var(--t-muted);
  --c-soft: var(--t-soft);
  --c-accent: var(--t-accent);
  --c-surface: var(--t-surface);
  --c-surface-solid: var(--t-surface);
  --c-border: var(--t-border);
  --c-border-strong: var(--t-border-strong);
  --c-hairline: var(--t-hairline);
  --c-shadow: var(--t-shadow);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--t-body-bg);
  color: var(--t-fg);
  font-family: var(--bp-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--bp-gold-400);
  color: #241c0e;
}

:focus-visible {
  outline: 2px solid var(--bp-gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--t-body-bg); }
  ::-webkit-scrollbar-thumb {
    background: var(--c-border-strong);
    border-radius: 5px;
    border: 2px solid var(--t-body-bg);
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--c-muted); }
}

/* --- Layout-Helfer ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--bp-container);
  margin-inline: auto;
  padding-inline: var(--bp-gutter);
}
@media (min-width: 640px) {
  :root { --bp-gutter: 2rem; }
}
.container--narrow {
  max-width: 820px;
}

.section {
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .section { padding-block: 8.5rem; }
}
.section--base {
  background: var(--t-body-bg);
  border-top: 1px solid var(--c-border);
}
.section--tinted {
  background:
    radial-gradient(1200px 520px at 50% -5%, var(--t-glow), transparent 62%),
    var(--t-section-alt);
  border-top: 1px solid var(--c-border);
}

/* --- Skip-Link & Zugänglichkeit ----------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--bp-gold-400);
  color: #241c0e;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
}

/* --- Eyebrows -------------------------------------------------------- */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-soft);
}

/* --- Section-Überschriften ------------------------------------------ */
.section-heading {
  max-width: 44rem;
}
.section-heading--center {
  margin-inline: auto;
  text-align: center;
}
.section-heading__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-soft);
}
.section-heading__title {
  margin-top: 1rem;
  font-family: var(--bp-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--c-fg);
}
.section-heading__text {
  margin-top: 1.4rem;
  max-width: 40rem;
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.75;
}
.section-heading--center .section-heading__text {
  margin-inline: auto;
}

/* --- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding-inline: 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    color 0.3s ease, box-shadow 0.3s ease, transform 0.2s var(--bp-ease);
}
.btn:active { transform: scale(0.98); }
.btn__arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s var(--bp-ease);
}
.btn:hover .btn__arrow { transform: translateX(2px); }
.btn--primary {
  background: var(--bp-gold-400);
  color: #241c0e;
  box-shadow: 0 1px 2px rgba(31, 27, 21, 0.12);
}
.btn--primary:hover {
  background: var(--bp-gold-300);
  transform: translateY(-1px);
}
.btn--ghost {
  border-color: var(--c-border-strong);
  color: var(--c-fg);
}
.btn--ghost:hover {
  border-color: var(--bp-gold-500);
  color: var(--c-accent);
  box-shadow: 0 8px 20px -12px rgba(150, 114, 47, 0.5);
}
.btn--small { height: 2.5rem; padding-inline: 1.25rem; }
.btn--lg { height: 3.25rem; padding-inline: 2.25rem; font-size: 0.95rem; }
.btn--block { width: 100%; }
.btn--disabled {
  cursor: not-allowed;
  border-color: var(--c-border);
  color: var(--c-soft);
  opacity: 0.8;
  box-shadow: none;
}
.btn--disabled:hover {
  border-color: var(--c-border);
  color: var(--c-soft);
  box-shadow: none;
  transform: none;
}

/* --- Badge-Leiste (oben) ------------------------------------------- */
.announcement {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, #d9b06a, #e7cb8e 50%, #d9b06a);
  border-bottom: 1px solid rgba(36, 28, 14, 0.14);
  text-align: center;
  padding: 0.6rem 1rem;
}
.announcement__text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a2112;
}
.announcement__text::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: #2a2112;
  vertical-align: middle;
  animation: glow-breathe 3s ease-in-out infinite;
}

/* --- Site-Header ---------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Header folgt immer dem aktiven Design – kein dunkler Verlauf,
     der beim Über-Scrollen im White Mode als schwarzer Fade erscheint. */
  background: var(--t-header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  --c-fg: var(--t-fg);
  --c-muted: var(--t-muted);
  --c-soft: var(--t-soft);
  --c-border-strong: var(--t-border-strong);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled,
.site-header.is-menu-open {
  border-bottom-color: var(--c-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  height: 68px;
}

.site-brand {
  margin-right: auto;
}
.site-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.site-brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bp-gold-400);
  transition: color 0.3s ease, transform 0.3s var(--bp-ease);
}
.site-brand__link:hover .site-brand__mark {
  color: var(--bp-gold-300);
  transform: rotate(-6deg);
}
.site-brand__ball { width: 2.25rem; height: 2.25rem; }
.site-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-brand__name {
  font-family: var(--bp-serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-fg);
}
.site-brand__city {
  margin-top: 0.25rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-soft);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.site-nav__link {
  position: relative;
  padding-block: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color 0.2s ease;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--bp-gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--bp-ease);
}
.site-nav__link:hover { color: var(--c-fg); }
.site-nav__link:hover::after { transform: scaleX(1); }
.site-nav__divider {
  width: 1px;
  height: 1rem;
  margin-inline: 0.25rem;
  background: var(--c-border-strong);
}
.site-nav .btn { flex-shrink: 0; }

.site-header__mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-header__mobile .btn { flex-shrink: 0; }

@media (min-width: 1152px) {
  .site-nav { display: flex; }
  .site-header__mobile { display: none; }
}
@media (max-width: 767px) {
  /* Auf dem Handy übernimmt die Sticky-Leiste unten den Reserve-Button */
  .site-header__mobile .btn { display: none; }
}

/* Themen-Umschalter */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  margin-left: 0.75rem;
  border-radius: 50%;
  border: 1px solid var(--c-border-strong);
  background: transparent;
  color: var(--c-fg);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--bp-ease);
}
.theme-toggle:hover {
  border-color: var(--bp-gold-400);
  color: var(--bp-gold-300);
  transform: rotate(12deg);
}
.theme-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle__icon svg { width: 1.125rem; height: 1.125rem; }
.theme-toggle__icon--sun { display: none; }
:root[data-theme="dark"] .theme-toggle__icon--sun { display: flex; }
:root[data-theme="dark"] .theme-toggle__icon--moon { display: none; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--c-border-strong);
  background: transparent;
  color: var(--c-fg);
  transition: border-color 0.3s ease;
}
.nav-toggle:hover { border-color: var(--bp-gold-400); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle__icon {
  position: relative;
  display: block;
  width: 1.125rem;
  height: 0.875rem;
}
.nav-toggle__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle__icon span:nth-child(1) { top: 0; }
.nav-toggle__icon span:nth-child(2) { top: 7px; }
.nav-toggle__icon span:nth-child(3) { top: 14px; }

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--bp-ease);
}
.mobile-menu.is-open {
  max-height: 620px;
  border-top: 1px solid var(--c-border);
}
.mobile-menu__list {
  list-style: none;
  padding: 0.75rem 1.25rem 1.5rem;
  margin: 0;
}
.mobile-menu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--c-hairline);
  font-family: var(--bp-serif);
  font-size: 1.125rem;
  color: var(--c-fg);
  transition: color 0.2s ease;
}
.mobile-menu__link:last-of-type { border-bottom: 0; }
.mobile-menu__link:hover { color: var(--c-accent); }

/* --- Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
  color: var(--bp-cream-100);
  background:
    radial-gradient(1100px 540px at 50% -6%, rgba(212, 170, 98, 0.2), transparent 62%),
    radial-gradient(1000px 640px at 80% 112%, rgba(95, 125, 89, 0.16), transparent 62%),
    var(--bp-ink-950);
  /* Dunkler Kontext für Buttons & Texte im Hero */
  --c-fg: var(--bp-cream-100);
  --c-muted: var(--bp-sand-400);
  --c-soft: var(--bp-sand-500);
  --c-accent: var(--bp-gold-400);
  --c-border: rgba(255, 255, 255, 0.07);
  --c-border-strong: rgba(255, 255, 255, 0.18);
  --c-hairline: rgba(255, 255, 255, 0.1);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 11, 0.92) 0%,
      rgba(10, 10, 11, 0.58) 42%,
      rgba(10, 10, 11, 0.08) 72%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 10, 11, 0.62) 0%,
      rgba(10, 10, 11, 0.16) 45%,
      transparent 75%
    );
}
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding-block: 6rem;
}
.hero__title {
  margin-top: 1.5rem;
  font-family: var(--bp-serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--bp-cream-100);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.hero__title-line { display: block; }
.hero__title-line:nth-child(2) {
  font-style: italic;
  color: var(--bp-gold-300);
}
.hero__sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: var(--bp-cream-200);
  font-size: 1.05rem;
  line-height: 1.7;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}
@media (min-width: 640px) {
  .hero__sub { font-size: 1.2rem; }
}
.hero__ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .hero__ctas .btn--lg {
    height: 2.75rem;
    padding-inline: 1.25rem;
    font-size: 0.85rem;
  }
}
.hero__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(242, 237, 226, 0.14);
}
@media (min-width: 640px) {
  .hero__facts { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.hero__fact {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.hero__fact-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--bp-gold-400);
}
.hero__fact dt {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bp-cream-300);
}
.hero__fact dd {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bp-cream-100);
}
.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 10rem;
  background: linear-gradient(to top, var(--bp-ink-950) 30%, transparent);
  pointer-events: none;
}

/* --- Intro ---------------------------------------------------------- */
.intro {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .intro { grid-template-columns: 5fr 5fr; gap: 4rem; }
}
.intro__paragraph {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: var(--c-muted);
  line-height: 1.75;
}
.intro__quote {
  margin-top: 2.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--c-accent);
  font-family: var(--bp-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--c-fg);
}
@media (min-width: 640px) {
  .intro__quote { font-size: 1.6rem; }
}
.intro__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--c-hairline);
  border-bottom: 1px solid var(--c-hairline);
}
.intro__highlight {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-hairline);
}
.intro__highlights > li:last-child .intro__highlight { border-bottom: 0; }
.intro__num {
  flex-shrink: 0;
  min-width: 2rem;
  padding-top: 0.35rem;
  font-family: var(--bp-serif);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--c-accent);
}
.intro__highlight-title {
  font-family: var(--bp-serif);
  font-size: 1.25rem;
  color: var(--c-fg);
}
.intro__highlight-text {
  margin-top: 0.375rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--c-soft);
}

/* --- Angebot: redaktionelle Liste ------------------------------------ */
.offer-list {
  list-style: none;
  padding: 0;
  margin: 4rem 0 0;
  border-top: 1px solid var(--c-hairline);
}
.offer-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--c-hairline);
}
@media (min-width: 768px) {
  .offer-item { grid-template-columns: 3rem minmax(0, 1fr) auto; }
}
.offer-item__num {
  padding-top: 0.4rem;
  font-family: var(--bp-serif);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--c-accent);
}
.offer-item__title {
  font-family: var(--bp-serif);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 1.2;
  color: var(--c-fg);
}
.offer-item__text {
  margin-top: 0.5rem;
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-muted);
}
.offer-item__detail {
  grid-column: 1 / -1;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
}
@media (min-width: 768px) {
  .offer-item__detail {
    grid-column: auto;
    align-self: center;
    max-width: 16rem;
    padding-left: 2.5rem;
    text-align: right;
  }
}

/* --- Preisband ------------------------------------------------------- */
.price-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem 1.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--c-border);
  background: var(--t-today-bg);
}
@media (min-width: 640px) {
  .price-band { padding: 2rem 2.5rem; }
}
.price-band__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-soft);
}
.price-band__note {
  margin-top: 0.5rem;
  max-width: 32rem;
  font-size: 0.875rem;
  color: var(--c-muted);
}
.price-band__value {
  font-family: var(--bp-serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1;
  color: var(--c-accent);
}

/* --- Reservierung: Kontaktzeilen ------------------------------------- */
.res-list {
  margin-top: 3.5rem;
  border-top: 1px solid var(--c-hairline);
}
.res-row {
  display: grid;
  gap: 0.35rem 1.5rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--c-hairline);
}
@media (min-width: 640px) {
  .res-row { grid-template-columns: 8.5rem minmax(0, 1fr) auto; }
}
.res-row__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-soft);
}
.res-row__value {
  font-family: var(--bp-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--c-fg);
  word-break: break-word;
}
.res-row__note {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--c-soft);
}
.res-row .btn {
  justify-self: start;
  margin-top: 0.6rem;
}
@media (min-width: 640px) {
  .res-row .btn { margin-top: 0; }
}

.res-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.6rem 1.75rem;
  border-radius: 0.5rem;
  background: var(--t-today-bg);
}
@media (min-width: 640px) {
  .res-hint { padding: 1.75rem 2.25rem; }
}
.res-hint__title {
  font-family: var(--bp-serif);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--c-fg);
}
.res-hint__sub {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--c-muted);
}
.res-hint__phone {
  font-family: var(--bp-serif);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--c-accent);
  transition: color 0.2s ease;
}
.res-hint__phone:hover { color: var(--bp-gold-500); }

/* --- Öffnungszeiten --------------------------------------------------- */
.hours-panel {
  margin: 3rem 0 0;
  max-width: 36rem;
  padding: 1.5rem 1.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--c-hairline);
}
.hours-row:last-of-type { border-bottom: 0; }
.hours-row--today {
  margin-inline: -0.75rem;
  padding-inline: 0.75rem;
  border-radius: 0.5rem;
  background: var(--t-today-bg);
  border-left: 3px solid var(--bp-gold-500);
}
.hours-row__day {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--bp-serif);
  font-size: 1.05rem;
  color: var(--c-fg);
}
.hours-row--today .hours-row__day { color: var(--c-accent); }
.hours-row__today {
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(182, 141, 63, 0.45);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.hours-row__time {
  font-size: 0.95rem;
  color: var(--c-fg);
}
.hours-row--today .hours-row__time { color: var(--c-accent); font-weight: 600; }
.hours-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--c-soft);
}

/* --- Standort -------------------------------------------------------- */
.location {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .location { grid-template-columns: 5fr 7fr; gap: 4rem; }
}
.location__name {
  font-family: var(--bp-serif);
  font-size: 1.35rem;
  color: var(--c-fg);
}
.location__street {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-muted);
}
.location__facts {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.location__fact {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.location__fact-label {
  flex-shrink: 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-soft);
}
.location__fact-line {
  flex: 1;
  align-self: center;
  height: 1px;
  background: var(--c-hairline);
}
.location__fact-value {
  font-weight: 600;
  color: var(--c-fg);
}
.location__map-wrap { margin-top: 0.25rem; }
.location__map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 0.5rem;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
}
.location__map-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Kontakt: kompakte Liste ----------------------------------------- */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  border-top: 1px solid var(--c-hairline);
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--c-hairline);
}
.contact-row__label {
  width: 100%;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-soft);
}
@media (min-width: 640px) {
  .contact-row__label { width: 8.5rem; flex-shrink: 0; }
}
.contact-row__value {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  color: var(--c-fg);
  word-break: break-word;
}

/* --- Blog: Beitragskarten ------------------------------------------------ */
.post-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) {
  .post-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .post-cards { grid-template-columns: repeat(3, 1fr); }
}
.post-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  min-height: 17rem;
  border-radius: 0.5rem;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  transition: transform 0.3s var(--bp-ease), border-color 0.3s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--t-card-hover-border);
}
.post-card__date {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.post-card__title {
  margin-top: 0.9rem;
  font-family: var(--bp-serif);
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--c-fg);
}
.post-card__title a { transition: color 0.2s ease; }
.post-card__title a:hover { color: var(--c-accent); }
.post-card__excerpt {
  margin-top: 0.625rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--c-muted);
}
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-accent);
  transition: color 0.2s ease;
}
.post-card__link:hover { color: var(--bp-gold-500); }
.post-card__link:hover .post-card__arrow { transform: translateX(2px); }
.post-card__arrow {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.3s var(--bp-ease);
}
.post-cards-empty {
  margin-top: 3rem;
  text-align: center;
  color: var(--c-soft);
}
.menu-empty {
  margin-top: 2.5rem;
  padding: 2rem;
  border: 1px dashed var(--c-border-strong);
  border-radius: 0.5rem;
  text-align: center;
  color: var(--c-soft);
}
.blog-all {
  margin-top: 2.5rem;
  text-align: center;
}

/* Blog-Übersicht (Beitragsseite) */
.post-cards--list {
  grid-template-columns: 1fr;
  max-width: 52rem;
}
@media (min-width: 640px) {
  .post-cards--list { grid-template-columns: 1fr; }
}
.post-card--list { text-align: left; min-height: 0; }

/* --- Einzelbeitrag ------------------------------------------------------- */
.single-thumb { margin: 2rem 0 0; }
.single-thumb__img {
  display: block;
  width: 100%;
  border-radius: 0.875rem;
  border: 1px solid var(--c-border);
}
.single-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-hairline);
}
.single-back a {
  color: var(--c-accent);
  transition: color 0.2s ease;
}
.single-back a:hover { color: var(--bp-gold-500); }

/* --- Pagination ----------------------------------------------------------- */
.pagination { margin-top: 3rem; text-align: center; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  margin: 0.15rem;
  padding: 0 0.6rem;
  border-radius: 9999px;
  border: 1px solid var(--c-border-strong);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-fg);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.pagination .page-numbers:hover { border-color: var(--bp-gold-500); color: var(--c-accent); }
.pagination .page-numbers.current {
  background: linear-gradient(180deg, #ecd6a1, #d2aa62);
  border-color: transparent;
  color: #241c0e;
}

/* --- Getränkekarte --------------------------------------------------------- */
.menu-page {
  max-width: 50rem;
  padding-bottom: 5rem;
}
.drink-intro { margin-bottom: 1rem; }
.menu-group { margin-top: 2.5rem; }
.menu-group__title {
  font-family: var(--bp-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-fg);
  padding-left: 0.875rem;
  border-left: 3px solid var(--c-accent);
}
.menu-group__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--c-hairline);
}
.menu-item__name {
  min-width: 0;
  font-weight: 600;
  color: var(--c-fg);
}
.menu-item__desc {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--c-soft);
}
.menu-item__dots {
  display: none;
  flex: 1;
  align-self: flex-end;
  margin-bottom: 0.35rem;
  border-bottom: 1px dotted var(--c-border-strong);
}
@media (min-width: 640px) {
  .menu-item__dots { display: block; }
}
.menu-item__price {
  flex-shrink: 0;
  font-family: var(--bp-serif);
  font-size: 1.125rem;
  color: var(--c-accent);
  white-space: nowrap;
}
.menu-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--c-soft);
}

/* --- Footer (immer dunkel) -------------------------------------------- */
.site-footer {
  position: relative;
  border-top: 1px solid rgba(242, 237, 226, 0.1);
  background: var(--bp-ink-950);
  color: var(--bp-cream-200);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bp-gold-500), transparent);
}
.site-footer__inner {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .site-footer__inner { grid-template-columns: repeat(4, 1fr); }
}
.site-brand--footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer__claim {
  margin-top: 1.25rem;
  max-width: 18rem;
  font-size: 0.9rem;
  color: var(--bp-sand-400);
}
.site-footer__title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bp-sand-500);
}
.site-footer__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.8;
  font-style: normal;
  color: var(--bp-cream-200);
}
.site-footer__text a { transition: color 0.2s ease; }
.site-footer__text a:hover { color: var(--bp-gold-300); }
.site-footer__list { list-style: none; padding: 0; }
.site-footer__list li { margin-bottom: 0.5rem; }
.site-footer__hours {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.75rem;
}
.site-footer__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
}
.site-footer__hours-row span:first-child { color: var(--bp-sand-400); }
.site-footer__hours-row span:last-child { color: var(--bp-cream-100); }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 0 2.5rem;
  border-top: 1px solid rgba(242, 237, 226, 0.08);
  font-size: 0.75rem;
  color: var(--bp-sand-500);
}
.site-footer__bottom nav {
  display: flex;
  gap: 1.5rem;
}
.site-footer__bottom a { transition: color 0.2s ease; }
.site-footer__bottom a:hover { color: var(--bp-cream-100); }

/* --- Mobile-CTA --------------------------------------------------------- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--c-border);
  background: var(--t-bar-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.mobile-cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--c-border-strong);
  color: var(--c-accent);
  transition: border-color 0.2s ease;
}
.mobile-cta__phone:hover { border-color: var(--bp-gold-500); }
.mobile-cta__phone svg { width: 1.25rem; height: 1.25rem; }
.mobile-cta__main {
  flex: 1;
  height: 3rem;
}
@media (max-width: 767px) {
  .mobile-cta { display: flex; }
  /* Platz für die fixierte Reserve-Leiste am Seitenfuß */
  .front-page .site-footer { padding-bottom: 5rem; }
}

/* --- Seiten (Impressum/Datenschutz/Getränkekarte) -------------------- */
.page-content {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .page-content { padding: 6rem 0; }
}
/* Karten-/Listen-Seiten: Kopf direkt an den Inhalt anschließen */
.page-content--menu {
  padding-bottom: 0;
}
.page-content__title {
  margin-top: 1rem;
  font-family: var(--bp-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-fg);
}
.entry-content {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--c-muted);
}
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  margin-top: 2rem;
  font-family: var(--bp-serif);
  font-weight: 500;
  color: var(--c-fg);
}
.entry-content h2 { font-size: 1.25rem; }
.entry-content h3 { font-size: 1.125rem; }
.entry-content p { margin: 1rem 0; }
.entry-content ul { padding-left: 1.25rem; }
.entry-content a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--bp-gold-500); }

.post-list { list-style: none; padding: 0; margin-top: 2rem; }
.post-list__title { font-family: var(--bp-serif); font-size: 1.25rem; }
.post-list__title a { color: var(--c-fg); }
.post-list__title a:hover { color: var(--c-accent); }
.post-list__excerpt { margin-top: 0.5rem; color: var(--c-muted); font-size: 0.875rem; }

/* --- Texturen ----------------------------------------------------------- */
.noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.noise-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Animationen ---------------------------------------------------------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.animate-rise {
  animation: rise 0.9s var(--bp-ease) both;
}
.animate-rise--1 { animation-delay: 120ms; }
.animate-rise--2 { animation-delay: 240ms; }
.animate-rise--3 { animation-delay: 380ms; }

/* Scroll-Reveal: ohne JavaScript sichtbar, mit JS gated */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--bp-ease), transform 0.7s var(--bp-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--0 { --reveal-delay: 0ms; }
.reveal--1 { --reveal-delay: 120ms; }
.reveal--2 { --reveal-delay: 200ms; }
.reveal--3 { --reveal-delay: 280ms; }

/* --- Reduzierte Bewegung & Mobilgeräte ------------------------------------ */
@media (max-width: 767px) {
  /* Auf Handys kein Hintergrundvideo (Daten & Akku) */
  .hero-video { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-rise,
  html.js .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
  .announcement__text::before { animation: none; }
  /* Kein Hintergrund-Video bei reduzierter Bewegung */
  .hero-video { display: none; }
}