/* ============================================================
   RNBB — Premium Swiss Restaurant Theme v2
   Warm ivory · charcoal · burgundy · gold
   Replaces the dark Cherry override — enhances main.css
   ============================================================ */

/* ── 1. Font ──────────────────────────────────────────────── */
/* Cormorant Garamond for headlines, Inter for body */
:root {
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Refined palette — warm but modern */
  --ivory:         #FAFAF7;
  --warm-cream:    #F4EDE1;
  --blush:         #EDE3D4;
  --parchment:     #E0D0BB;
  --sand:          #C8AE90;
  --text-dark:     #1E1610;
  --text-mid:      #4A3A2A;
  --text-muted:    #7A6A58;
  --warm-grey:     #8A7A6A;
  --champagne:     #B8925A;
  --champagne-lt:  #C8A870;
  --champagne-dim: rgba(184,146,90,0.18);
  --soft-brass:    #B8925A;
  --soft-brass-lt: #C8A870;
  --burgundy:      #8B2635;
  --burgundy-dk:   #6E1C28;
  --burgundy-lt:   #A83040;
  --clay:          #8B2635;
  --clay-dk:       #6E1C28;
  --espresso:      #1E1610;
  --espresso-text: #1E1610;
  --ink:           #1E1610;
  --wood-dark:     #2A1E16;
  --wood-mid:      #3A2A20;
  --cream:         #FAFAF7;
  --warm-white:    #FAFAF7;
  --white:         #ffffff;

  /* Shadows — refined warm tones */
  --shadow-sm: 0 1px 4px rgba(30,22,16,0.08);
  --shadow:    0 4px 20px rgba(30,22,16,0.10);
  --shadow-lg: 0 12px 48px rgba(30,22,16,0.14);
  --shadow-xl: 0 24px 72px rgba(30,22,16,0.18);

  --header-h: 68px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
}

/* ── 2. Base: warm ivory body, dark text ──────────────────── */
body {
  background: #FAFAF7;
  color: #1E1610;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  color: #1E1610;
  line-height: 1.12;
}

p { color: #4A3A2A; }

/* Remove grain / dark body overlay from old theme */
body::after { display: none !important; }

/* ── 3. Navigation ────────────────────────────────────────── */
.site-header {
  height: var(--header-h);
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 22, 16, 0.08);
  box-shadow: 0 2px 20px rgba(30, 22, 16, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Home page top: transparent gradient so hero shows */
body.page-home .site-header:not(.site-header--scrolled) {
  background: linear-gradient(180deg, rgba(20,14,10,0.55) 0%, transparent 100%);
  border-bottom-color: transparent;
  box-shadow: none;
}

body.page-home .site-header--scrolled {
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(30, 22, 16, 0.08);
  box-shadow: 0 2px 24px rgba(30, 22, 16, 0.08);
}

body:not(.page-home) .site-header {
  background: rgba(250, 250, 247, 0.97);
  border-bottom: 1px solid rgba(30, 22, 16, 0.08);
  box-shadow: 0 2px 20px rgba(30, 22, 16, 0.06);
}
body:not(.page-home) .site-header--scrolled {
  background: rgba(250, 250, 247, 0.99);
}

/* Nav links on non-home (light bg) */
body:not(.page-home) .site-header__nav a,
body.page-home .site-header--scrolled .site-header__nav a {
  color: #4A3A2A;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
body:not(.page-home) .site-header__nav a:hover,
body:not(.page-home) .site-header__nav a[aria-current="page"],
body.page-home .site-header--scrolled .site-header__nav a:hover {
  color: #1E1610;
}
body:not(.page-home) .site-header__nav a::after,
body.page-home .site-header--scrolled .site-header__nav a::after {
  background: #8B2635;
}

/* Logo text on non-home */
body:not(.page-home) .site-header__logo-text,
body.page-home .site-header--scrolled .site-header__logo-text {
  color: #1E1610;
}
body:not(.page-home) .site-header__logo-text strong,
body.page-home .site-header--scrolled .site-header__logo-text strong {
  color: #B8925A;
}

/* Hamburger on non-home */
body:not(.page-home) .site-header__hamburger,
body.page-home .site-header--scrolled .site-header__hamburger {
  color: #1E1610;
}
body:not(.page-home) .site-header__hamburger span,
body.page-home .site-header--scrolled .site-header__hamburger span {
  background-color: #1E1610;
}

/* Lang switcher on light bg */
body:not(.page-home) .site-header__actions .lang-switcher__btn,
body.page-home .site-header--scrolled .site-header__actions .lang-switcher__btn {
  color: #7A6A58;
  font-weight: 600;
}
body:not(.page-home) .site-header__actions .lang-switcher__btn:hover,
body:not(.page-home) .site-header__actions .lang-switcher__btn--active,
body.page-home .site-header--scrolled .site-header__actions .lang-switcher__btn--active {
  color: #1E1610;
  background: rgba(30, 22, 16, 0.07);
}

/* Logo text (general) */
.site-header__logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

/* ── 4. Mobile nav ────────────────────────────────────────── */
.mobile-nav {
  background: #1E1610;
  border-top: 2px solid #8B2635;
}
.mobile-nav a {
  color: rgba(250, 244, 235, 0.75);
  font-size: 1rem;
  border-bottom-color: rgba(255,255,255,0.05);
  padding: 0.9rem 0.5rem;
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] {
  color: #C8A870;
  padding-left: 1rem;
}
.mobile-nav__lang { border-top-color: rgba(255,255,255,0.08); }
.lang-btn { color: rgba(250,244,235,0.45); }
.lang-btn:hover, .lang-btn--active { color: #C8A870; background: rgba(184,146,90,0.12); }

/* ── 5. Buttons ───────────────────────────────────────────── */
.btn {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.875rem 1.875rem;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: #8B2635;
  color: #ffffff;
  border-color: #8B2635;
  box-shadow: 0 4px 20px rgba(139, 38, 53, 0.32);
}
.btn--primary:hover {
  background: #6E1C28;
  border-color: #6E1C28;
  box-shadow: 0 8px 32px rgba(139, 38, 53, 0.45);
  transform: translateY(-2px);
}

.btn--gold {
  background: #B8925A;
  color: #1E1610;
  border-color: #B8925A;
  box-shadow: 0 4px 20px rgba(184, 146, 90, 0.30);
}
.btn--gold:hover {
  background: #C8A870;
  border-color: #C8A870;
  box-shadow: 0 8px 28px rgba(184, 146, 90, 0.45);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.90);
  color: #ffffff;
}

.btn--ghost-dark {
  background: transparent;
  color: #1E1610;
  border: 2px solid rgba(30,22,16,0.30);
}
.btn--ghost-dark:hover {
  background: #1E1610;
  color: #FAFAF7;
  border-color: #1E1610;
}

.btn--outline {
  background: transparent;
  color: #1E1610;
  border: 2px solid rgba(30,22,16,0.25);
}
.btn--outline:hover {
  background: #1E1610;
  color: #FAFAF7;
  border-color: #1E1610;
}

.btn--ghost-gold {
  background: transparent;
  color: #B8925A;
  border: 2px solid #B8925A;
}
.btn--ghost-gold:hover {
  background: #B8925A;
  color: #1E1610;
}

/* Ghost buttons inside hero (on dark overlay) */
.hero .btn--ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.50);
  color: rgba(255,255,255,0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.85);
  color: #ffffff;
}

/* ── 6. Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: #1E1610;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 5rem;
}

.hero__bg {
  top: 0;
  height: 100%;
}

.hero__bg img {
  opacity: 0.72;
  object-position: center 30%;
}

/* Graceful fallback when image fails */
.hero__bg:not(:has(img[complete])),
.hero__bg img[src=""],
.hero__bg img:not([src]) {
  background: linear-gradient(135deg, #2A1E16 0%, #3D2E22 40%, #1E1610 100%);
}

.hero__overlay {
  background:
    linear-gradient(135deg, rgba(20,14,10,0.80) 0%, rgba(20,14,10,0.35) 50%, rgba(20,14,10,0.60) 100%),
    linear-gradient(to top, rgba(20,14,10,0.85) 0%, transparent 60%);
}
.hero__overlay::after { display: none; }

.hero__content {
  text-align: left;
  max-width: 640px;
  margin: 0;
}

.hero__eyebrow {
  color: #C8A870;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  background: #C8A870;
  opacity: 0.60;
}

.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 600;
  line-height: 1.04;
  color: #ffffff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.35);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: #C8A870;
  display: inline;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(250, 244, 235, 0.82);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 48ch;
  margin-inline: 0;
}

.hero__ctas {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
  justify-content: flex-start;
}

/* ── 7. Trust bar ─────────────────────────────────────────── */
.trust-bar {
  background: #ffffff;
  border-top: none;
  border-bottom: 1px solid rgba(30,22,16,0.08);
  padding-block: 2.5rem;
  box-shadow: 0 4px 24px rgba(30,22,16,0.06);
}

.trust-card__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #8B2635;
  line-height: 1;
}
.trust-card__stars { color: #B8925A; font-size: 0.9rem; }
.trust-card__label {
  font-size: 0.72rem;
  color: #7A6A58;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ── 8. Section backgrounds — clean alternation ───────────── */
.section--dark {
  background: linear-gradient(160deg, #1E1610 0%, #2A1E16 60%, #1E1610 100%);
  color: #FAFAF7;
}
.section--deep {
  background: #1E1610;
  color: #FAFAF7;
}
.section--warm-dark {
  background: linear-gradient(160deg, #2A1E16 0%, #3A2A20 60%, #2A1E16 100%);
  color: #FAFAF7;
}
.section--wood { background: #3A2A20; color: #FAFAF7; }
.section--burgundy, .section--red { background: #8B2635; color: #ffffff; }
.section--cream { background: #FAFAF7; color: #1E1610; }
.section--blush { background: #F4EDE1; color: #1E1610; }
.section--white { background: #ffffff; color: #1E1610; }
.section--warm-white { background: #FAFAF7; color: #1E1610; }

/* Text on dark sections */
.section--dark p, .section--deep p, .section--warm-dark p, .section--wood p {
  color: rgba(250, 244, 235, 0.75);
}
.section--dark h1, .section--dark h2, .section--dark h3,
.section--deep h1, .section--deep h2, .section--deep h3,
.section--warm-dark h1, .section--warm-dark h2, .section--warm-dark h3 {
  color: #FAFAF7;
}
.section--dark .section-label, .section--deep .section-label,
.section--warm-dark .section-label, .section--wood .section-label {
  color: #C8A870;
}
.section--dark .section-title em, .section--deep .section-title em,
.section--warm-dark .section-title em { color: #C8A870; }

/* Light section text */
.section--cream h2, .section--blush h2, .section--white h2,
.section--cream h3, .section--blush h3, .section--white h3 {
  color: #1E1610;
}
.section--cream p, .section--blush p, .section--white p {
  color: #4A3A2A;
}
.section--cream .lead, .section--blush .lead { color: #5A4A38; }

/* ── 9. Section labels & titles ───────────────────────────── */
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #B8925A;
}
.section-label::before, .section-label::after {
  background: #B8925A;
  opacity: 0.50;
}

.section-title { font-family: 'Cormorant Garamond', Georgia, serif; }
.section-title em { color: #B8925A; }
.section-title--white { color: #FAFAF7; }
.section-title--cream { color: #FAFAF7; }

.divider-gold {
  background: linear-gradient(to right, #B8925A, transparent);
  height: 2px;
  width: 56px;
}

/* ── 10. Cards — white, warm shadow ───────────────────────── */
.menu-preview-card {
  background: #ffffff;
  border: 1px solid rgba(30,22,16,0.07);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,22,16,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.menu-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30,22,16,0.14);
  border-color: rgba(184,146,90,0.30);
}
.menu-preview-card::after {
  background: linear-gradient(to right, #8B2635, #B8925A);
}

.menu-preview-card__img {
  background: linear-gradient(135deg, #EDE3D4 0%, #C8AE90 100%);
}
.menu-preview-card__img img {
  opacity: 1;
}

/* Fallback gradient for failed menu card images */
.menu-preview-card__img:not(:has(img[complete])) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-preview-card__img img[src=""],
.menu-preview-card__img img:not([src]) {
  display: none;
}

.menu-preview-card__cat {
  color: #8B2635;
  background: rgba(139, 38, 53, 0.08);
  font-size: 0.65rem;
  font-weight: 700;
}
.menu-preview-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: #1E1610;
  font-weight: 700;
}
.menu-preview-card__desc { color: #7A6A58; font-size: 0.875rem; }
.menu-preview-card__price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #8B2635;
}
.menu-preview-card__footer { border-top-color: rgba(30,22,16,0.07); }

/* ── 11. Cordon Bleu section ──────────────────────────────── */
.cb-section {
  background: linear-gradient(160deg, #1E1610 0%, #2A1E16 45%, #3A2A20 75%, #1E1610 100%);
}
.cb-section::before { opacity: 0.6; }

.cb-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
}
.cb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.30);
}
.cb-card__image {
  background: linear-gradient(135deg, #EDE3D4 0%, #C8AE90 100%);
}
.cb-card__name { color: #1E1610; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.1rem; }
.cb-card__desc { color: #7A6A58; }
.cb-card__price { color: #8B2635; font-size: 1.15rem; font-weight: 700; }
.cb-card__price-small { color: #8A7A6A; }

/* Slider dots & buttons */
.slider-dot { background: rgba(250,244,235,0.25); }
.slider-dot.active { background: #B8925A; }
.slider-btn {
  background: rgba(250,244,235,0.10);
  border-color: rgba(250,244,235,0.28);
  color: #FAFAF7;
}
.slider-btn:hover {
  background: rgba(250,244,235,0.20);
  border-color: rgba(250,244,235,0.60);
}

.slider-btn--dark {
  background: rgba(30,22,16,0.06);
  border: 2px solid rgba(30,22,16,0.16);
  color: #1E1610;
}
.slider-btn--dark:hover {
  background: rgba(30,22,16,0.12);
  border-color: rgba(30,22,16,0.38);
}
.slider-dot--dark { background: rgba(30,22,16,0.15); }
.slider-dot--dark.active { background: #8B2635; }

/* ── 12. Kegelbahn section ────────────────────────────────── */
.kegel-section { background: #1E1610; }
.kegel-section__bg img { opacity: 0.30; }
.kegel-feature { color: rgba(250,244,235,0.82); }
.kegel-feature::before { background: #B8925A; }

/* ── 13. FAQ ──────────────────────────────────────────────── */
.faq-list { gap: 0.5rem; }
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(30,22,16,0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(30,22,16,0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open {
  border-color: rgba(184,146,90,0.40);
  box-shadow: 0 4px 20px rgba(30,22,16,0.08);
}
.faq-question {
  color: #1E1610;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
}
.faq-question:hover { background: #F4EDE1; }
.faq-item.open .faq-question { background: #F4EDE1; color: #1E1610; }
.faq-question__icon {
  background: #8B2635;
  color: #ffffff;
  width: 24px; height: 24px;
  font-size: 1.1rem;
  border-radius: 50%;
}
.faq-item.open .faq-question__icon { background: #2A1E16; }
.faq-answer p { color: #4A3A2A; font-size: 0.9375rem; line-height: 1.80; }

/* ── 14. Opening hours (on dark bg) ──────────────────────── */
.hours-row__day { color: rgba(250,244,235,0.88); font-weight: 600; }
.hours-row__times { color: rgba(250,244,235,0.65); }
.hours-row--closed .hours-row__day { color: rgba(250,244,235,0.38); }
.hours-row--closed .hours-row__times { color: rgba(250,244,235,0.25); }
.hours-row__kitchen { color: #C8A870; }
.hours-row { border-bottom-color: rgba(250,244,235,0.07); }
.holidays-list h4 { color: #C8A870; }
.holiday-item { color: rgba(250,244,235,0.60); }

/* ── 15. Content split images ─────────────────────────────── */
.content-split__image {
  background: linear-gradient(135deg, #EDE3D4 0%, #C8AE90 60%, #B8925A 100%);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(30,22,16,0.12);
}
.content-split__image img { opacity: 1; }
.content-split__image::before, .content-split__image::after {
  border-color: #B8925A;
  opacity: 0.45;
}

/* Placeholder gradient when image missing */
.content-split__image::after {
  /* Decorative corner only — override to not conflict */
}

/* ── 16. Map section ──────────────────────────────────────── */
.map-section { background: #F4EDE1; }
.map-section__embed { border-radius: 12px; box-shadow: 0 4px 24px rgba(30,22,16,0.10); }

/* ── 17. Instagram / CTA dark section ────────────────────── */
.instagram-section {
  background: linear-gradient(160deg, #1E1610 0%, #2A1E16 50%, #1E1610 100%);
}

/* ── 18. Footer ───────────────────────────────────────────── */
.site-footer {
  background: #1A1008;
  border-top: 2px solid rgba(184,146,90,0.20);
  color: rgba(250,244,235,0.65);
}
.site-footer__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #FAFAF7;
  font-size: 1.6rem;
}
.site-footer__claim { color: #C8A870; }
.site-footer__address { color: rgba(250,244,235,0.58); }
.site-footer__contact-links a { color: rgba(250,244,235,0.58); }
.site-footer__contact-links a:hover { color: #C8A870; }
.site-footer__heading {
  color: #C8A870;
  border-bottom-color: rgba(184,146,90,0.18);
  font-size: 0.67rem;
  letter-spacing: 0.20em;
}
.site-footer__nav a { color: rgba(250,244,235,0.55); }
.site-footer__nav a:hover { color: #FAFAF7; }
.site-footer__hours li { border-bottom-color: rgba(255,255,255,0.04); color: rgba(250,244,235,0.58); }
.site-footer__hours li span:first-child { color: rgba(250,244,235,0.42); }
.site-footer__hours-note { color: rgba(250,244,235,0.28); }
.site-footer__instagram { color: rgba(250,244,235,0.45); }
.site-footer__instagram:hover { color: #C8A870; }
.site-footer__bottom {
  border-top-color: rgba(255,255,255,0.06);
  color: rgba(250,244,235,0.22);
}

/* Footer nav cookie button */
.site-footer__nav button {
  color: rgba(250,244,235,0.55);
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.15s ease;
}
.site-footer__nav button:hover { color: #FAFAF7; }

/* ── 19. Forms ────────────────────────────────────────────── */
.form-input,
.form-select,
.form-textarea {
  background: #ffffff;
  border: 1.5px solid rgba(30,22,16,0.15);
  color: #1E1610;
  border-radius: 8px;
  font-size: 0.9375rem;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #8B2635;
  box-shadow: 0 0 0 3px rgba(139,38,53,0.10);
  outline: none;
}
.form-label { color: #4A3A2A; font-size: 0.875rem; font-weight: 600; }
.form-hint { color: #8A7A6A; }
.form-error { color: #8B2635; }
.form-required { color: #8B2635; }
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(30,22,16,0.32);
}

/* Forms on dark bg sections */
.section--dark .form-input,
.section--dark .form-select,
.section--dark .form-textarea,
.section--deep .form-input,
.section--deep .form-select,
.section--deep .form-textarea,
.section--warm-dark .form-input,
.section--warm-dark .form-select,
.section--warm-dark .form-textarea {
  background: rgba(250,244,235,0.06);
  border-color: rgba(250,244,235,0.18);
  color: #FAFAF7;
}
.section--dark .form-input:focus,
.section--deep .form-input:focus,
.section--warm-dark .form-input:focus {
  border-color: #C8A870;
  box-shadow: 0 0 0 3px rgba(200,168,112,0.15);
}
.section--dark .form-label,
.section--deep .form-label,
.section--warm-dark .form-label {
  color: rgba(250,244,235,0.80);
}
.section--dark .form-input::placeholder,
.section--deep .form-input::placeholder {
  color: rgba(250,244,235,0.30);
}

/* ── 20. Page hero (inner pages) ──────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #1E1610 0%, #2A1E16 60%, #1E1610 100%);
  color: #FAFAF7;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
}
.page-hero h1, .page-hero h2 { color: #FAFAF7; }
.page-hero p { color: rgba(250,244,235,0.72); }
.page-hero .section-label { color: #C8A870; }

/* ── 21. Menu filter buttons ──────────────────────────────── */
.menu-filters .btn,
.menu-filter-btn {
  background: transparent;
  border: 1.5px solid rgba(30,22,16,0.18);
  color: #4A3A2A;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}
.menu-filters .btn:hover,
.menu-filter-btn:hover,
.menu-filter-btn.active {
  background: #8B2635;
  border-color: #8B2635;
  color: #ffffff;
  transform: none;
  box-shadow: 0 4px 16px rgba(139,38,53,0.28);
}

/* ── 22. WhatsApp ─────────────────────────────────────────── */
.whatsapp-btn { box-shadow: 0 4px 20px rgba(37,211,102,0.40); }
.whatsapp-btn:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ── 23. Cookie banner ────────────────────────────────────── */
.cookie-banner,
#cookieBanner {
  background: rgba(30, 22, 16, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 2px solid rgba(184,146,90,0.25);
  color: rgba(250,244,235,0.85);
}

/* ── 24. Focus ring ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #B8925A;
  outline-offset: 3px;
}

/* ── 25. Selection ────────────────────────────────────────── */
::selection {
  background: rgba(139,38,53,0.18);
  color: #1E1610;
}

/* ── 26. Image placeholder fallback ──────────────────────── */
img {
  background: linear-gradient(135deg, #EDE3D4 0%, #D8C8B0 100%);
}

/* On dark sections, placeholder is darker */
.section--dark img,
.section--deep img,
.section--warm-dark img,
.cb-section img,
.kegel-section img {
  background: linear-gradient(135deg, #3A2A20 0%, #2A1E16 100%);
}

/* ── 27. Reservation tabs ─────────────────────────────────── */
.res-tab {
  color: rgba(250,244,235,0.70);
  border-color: rgba(184,146,90,0.30);
  background: transparent;
}
.res-tab:hover, .res-tab.active {
  background: #B8925A;
  color: #1E1610;
  border-color: #B8925A;
  font-weight: 600;
}

/* ── 28. Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F4EDE1; }
::-webkit-scrollbar-thumb { background: #C8AE90; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #B8925A; }

/* ── 29. Responsive nav show/hide ─────────────────────────── */
@media (min-width: 960px) {
  .site-header__nav { display: block; }
  .site-header__actions { display: flex; }
  .site-header__hamburger { display: none; }
}
@media (max-width: 959px) {
  .site-header__nav { display: none; }
  .site-header__actions { display: none; }
  .site-header__hamburger { display: flex; }
}

/* ── 30. Horizontal overflow guard ───────────────────────── */
html, body { overflow-x: hidden; }
.container { overflow-x: hidden; }
.mp-slider__track, .cb-slider__track { min-width: 0; }

/* ── 31. Misc quality-of-life ─────────────────────────────── */
.lead { color: #5A4A38; }
.lead--light { color: rgba(250,244,235,0.78); }

.text-center p { margin-inline: auto; }

/* Alert colours */
.alert--error { border-left-color: #8B2635; color: #5A0F1A; background: #fde8ec; }
.alert--success { border-left-color: #1a7a4a; color: #0a4028; background: #d1fae5; }

/* Admin stays light — don't affect it */
.admin-body { background: #f8f9fa !important; color: #1E1610 !important; }
.admin-body h1, .admin-body h2, .admin-body h3 { color: #1E1610 !important; }
