/* ═══════════════════════════════════════════════════════════════
   Evelin's – Premium Gastronomie Design System
   60-30-10 · Weiß/Creme · Espresso · Weinrot · Altrosa
   ═══════════════════════════════════════════════════════════════ */

:root {
  --color-white: #ffffff;
  --color-cream: #faf6f0;
  --color-espresso: #261a10;
  --color-text: #261a10;
  --color-text-muted: #4a3828;
  --color-wine: #8c1c32;
  --color-wine-hover: #a3233b;
  --color-wine-deep: #6e1526;
  --color-blush: #f5e6e8;
  --color-blush-hover: #edd5d8;
  --color-border: rgba(38, 26, 16, 0.08);
  --color-border-wine: rgba(140, 28, 50, 0.22);
  --shadow-premium: 0 20px 40px rgba(38, 26, 16, 0.05);
  --shadow-card: 0 16px 36px rgba(38, 26, 16, 0.06);
  --shadow-button: 0 8px 24px rgba(140, 28, 50, 0.22);
  --radius-image: 20px;
  --radius-card: 20px;
  --radius-pill: 50px;
  --container-max: 1200px;
  --section-padding: 100px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --transition-smooth: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Basis & Typografie ─── */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  color: var(--color-text);
  background-color: var(--color-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.font-display {
  color: var(--color-espresso);
  font-family: var(--font-display);
}

p, li, span, label {
  color: var(--color-text-muted);
}

strong { color: var(--color-espresso); }

a { transition: color var(--transition-smooth), background var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth); }

.body-textured {
  background-color: var(--color-white);
  background-image:
    radial-gradient(ellipse 70% 45% at 10% 0%, rgba(140, 28, 50, 0.03) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 100%, rgba(245, 230, 232, 0.45) 0%, transparent 50%);
}

/* ─── Globale Bild-Inszenierung ─── */
img:not(.site-brand-logo):not(.hero-img) {
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-premium);
}

.img-cover {
  object-fit: cover;
  object-position: center 40%;
  width: 100%;
  height: 100%;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ─── Globale Sektions-Struktur ─── */
.site-container,
section > .max-w-7xl,
section > .max-w-6xl,
section > .max-w-4xl,
.page-hero-band > .max-w-6xl,
.page-hero-band > .max-w-4xl,
.legal-prose-wrap {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

section.section-cream,
section.section-warm,
section.section-alt,
section.section-wine-soft {
  padding-top: var(--section-padding) !important;
  padding-bottom: var(--section-padding) !important;
}

@media (max-width: 767px) {
  :root { --section-padding: 72px; }
}

/* ─── Sektions-Hintergründe (60% Weiß / Creme) ─── */
.section-cream,
.section-alt {
  background: var(--color-white);
}

.section-warm,
.section-wine-soft {
  background: var(--color-cream);
}

.section-wine-soft {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-blush) 45%, var(--color-cream) 100%);
}

.section-dark-footer {
  background: linear-gradient(180deg, #3a2218 0%, var(--color-espresso) 100%);
}

.section-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%238c1c32' fill-opacity='0.03' d='M0,64 C240,100 480,20 720,48 C960,76 1200,28 1440,56 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 120px;
  background-position: top center;
}

.section-pattern {
  position: relative;
  isolation: isolate;
}
.section-pattern > * { position: relative; z-index: 1; }

.pattern-dots {
  background-image: radial-gradient(rgba(140, 28, 50, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.accent-line {
  background: linear-gradient(90deg, transparent, var(--color-wine), transparent);
  height: 1px;
}

.section-divider {
  border-top: 1px solid var(--color-border);
}

/* ─── Premium Buttons (Pill) ─── */
.btn-premium,
.btn-anfrage,
.btn-hero-primary,
a.bg-wine-600[class*="px-"],
button.bg-wine-600 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  background: var(--color-wine) !important;
  color: var(--color-white) !important;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-button);
  transition: background var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
  cursor: pointer;
}

.btn-premium:hover,
.btn-anfrage:hover,
.btn-hero-primary:hover,
a.bg-wine-600[class*="px-"]:hover,
button.bg-wine-600:hover {
  background: var(--color-wine-hover) !important;
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(140, 28, 50, 0.28);
}

.btn-hero-secondary,
a[class*="border-wine"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--color-wine);
  border: 1.5px solid var(--color-border-wine);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth);
}

.btn-hero-secondary:hover,
a[class*="border-wine"]:hover {
  background: var(--color-blush);
  border-color: var(--color-wine);
  transform: scale(1.02);
}

.btn-anfrage { margin-top: 1.25rem; align-self: flex-start; }
.site-header-cta { margin-top: 0 !important; padding: 0.7rem 1.4rem !important; }

/* ─── Badges & Facts ─── */
.offer-fact,
.badge,
.hero-highlight {
  background: var(--color-blush);
  border: 1px solid rgba(140, 28, 50, 0.12);
  color: var(--color-wine-deep);
  border-radius: var(--radius-pill);
  transition: background var(--transition-smooth);
}

.offer-fact:hover,
.hero-highlight:hover {
  background: var(--color-blush-hover);
}

.offer-fact {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
}

/* ─── Karten ─── */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 24px 48px rgba(38, 26, 16, 0.08);
}

.card-lift:hover { transform: translateY(-6px); }

.card .aspect-\[4\/3\] img,
.card .aspect-\[3\/2\] img {
  border-radius: 0;
  box-shadow: none;
}

.qr-card {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cream) 50%, var(--color-blush) 100%);
  border: 1px solid var(--color-border-wine);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.content-visual {
  margin-top: 2.5rem;
  border-radius: var(--radius-image);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-premium);
  background: var(--color-cream);
}

.content-visual img {
  border-radius: 0;
  box-shadow: none;
}

.content-visual.offer-after-title {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* ─── Hero Startseite ─── */
.hero-home {
  background: var(--color-white);
}

.hero-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-home-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: clamp(420px, 72vh, 620px);
  }
}

.hero-home-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 24px 2rem;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 1024px) {
  .hero-home-panel {
    padding: 3rem 2.5rem;
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    border-left: 3px solid var(--color-wine);
  }
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-wine);
  margin-bottom: 0.85rem;
}

.hero-title {
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-espresso);
  margin-bottom: 1rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 38rem;
  margin-bottom: 1.35rem;
}

@media (min-width: 768px) {
  .hero-lead { font-size: 1.0625rem; }
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 1rem;
  width: fit-content;
}

.hero-highlight-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--color-wine);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-home-visual {
  position: relative;
  min-height: clamp(240px, 38vw, 380px);
}

@media (min-width: 1024px) {
  .hero-home-visual { min-height: 100%; height: 100%; }
}

.hero-wrap--home {
  position: absolute;
  inset: 0;
  min-height: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-wrap--home {
    border-radius: var(--radius-image) 0 0 0;
  }
}

/* ─── Einleitung Zwei-Spalten ─── */
.intro-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .intro-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.intro-split-visual {
  aspect-ratio: 4 / 5;
  max-height: 520px;
  border-radius: var(--radius-image);
  overflow: hidden;
}

@media (min-width: 768px) {
  .intro-split-visual { aspect-ratio: 3 / 4; }
}

/* ─── Hero Slideshow ─── */
.hero-wrap {
  position: relative;
  min-height: 48vh;
  height: clamp(280px, 52vh, 640px);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-wrap { min-height: 56vh; }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 0;
  box-shadow: none;
}

.hero-img--spree { object-position: center 58%; }
.hero-img--aussen { object-position: center 38%; }
.hero-img--terrasse { object-position: center 45%; }
.hero-img--innen { object-position: center 40%; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(125deg, rgba(140, 28, 50, 0.18) 0%, transparent 42%),
    linear-gradient(180deg, rgba(38, 26, 16, 0.15) 0%, rgba(140, 28, 50, 0.04) 38%, rgba(38, 26, 16, 0.45) 78%, rgba(38, 26, 16, 0.82) 100%);
  pointer-events: none;
}

.hero-overlay--home {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, transparent 28%),
    linear-gradient(180deg, transparent 55%, rgba(38, 26, 16, 0.3) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 2rem 1.25rem 3rem;
  pointer-events: none;
}

.hero-content a, .hero-content button { pointer-events: auto; }

.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--color-white);
  transform: scale(1.25);
}

/* ─── Unterseiten Hero-Band ─── */
.page-hero-band {
  padding-top: 7.5rem;
  padding-bottom: 3.5rem;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
}

@media (min-width: 768px) {
  .page-hero-band { padding-top: 8.25rem; padding-bottom: 4rem; }
}

.site-offset-top {
  padding-top: 7rem;
}

@media (min-width: 768px) {
  .site-offset-top { padding-top: 8rem; }
}

/* ─── Rechtstexte ─── */
.legal-prose {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-espresso);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-prose h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-prose p { margin-bottom: 0.85rem; }
.legal-prose ul, .legal-prose ol { margin: 0.5rem 0 1rem 1.25rem; list-style: disc; }
.legal-prose ol { list-style: decimal; }
.legal-prose li { margin-bottom: 0.35rem; }
.legal-prose a { color: var(--color-wine); text-decoration: underline; }
.legal-prose a:hover { color: var(--color-wine-hover); }
.legal-prose .legal-updated { font-size: 0.8125rem; color: var(--color-text-muted); margin-bottom: 1.5rem; }

/* ─── Header ─── */
#site-header.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(38, 26, 16, 0.04);
}

#site-header.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(38, 26, 16, 0.07);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
  max-width: none;
}

@media (min-width: 640px) {
  .site-brand { gap: 1rem; }
}

.site-brand-logo {
  display: block;
  flex-shrink: 0;
  height: 42px;
  width: auto;
  max-width: 76px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 768px) {
  .site-brand-logo { height: 50px; max-width: 88px; }
}

.site-brand--wordmark { gap: 0.85rem; }

@media (min-width: 640px) {
  .site-brand--wordmark { gap: 1.1rem; }
}

.site-brand--wordmark .site-brand-logo {
  height: 80px;
  max-width: none;
  width: auto;
}

@media (min-width: 640px) {
  .site-brand--wordmark .site-brand-logo { height: 92px; }
}

@media (min-width: 1024px) {
  .site-brand--wordmark .site-brand-logo { height: 108px; }
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  min-width: 0;
}

.site-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-espresso);
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
}

@media (min-width: 768px) {
  .site-brand-name { font-size: 1.375rem; }
}

.site-brand--wordmark .site-brand-name {
  font-size: 1.6rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .site-brand--wordmark .site-brand-name { font-size: 1.9rem; }
}

@media (min-width: 1024px) {
  .site-brand--wordmark .site-brand-name { font-size: 2.15rem; }
}

.site-brand-tagline {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-wine);
  margin-top: 0.25rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .site-brand-tagline { font-size: 0.7rem; }
}

.site-brand--wordmark .site-brand-tagline {
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--color-wine);
  margin-top: 0.35rem;
}

@media (min-width: 640px) {
  .site-brand--wordmark .site-brand-tagline { font-size: 1.05rem; }
}

@media (min-width: 1024px) {
  .site-brand--wordmark .site-brand-tagline { font-size: 1.2rem; }
}

.site-header-brand-row {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

@media (min-width: 768px) {
  .site-header-brand-row {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

/* ─── Navigation ─── */
.site-nav-link {
  color: var(--color-espresso);
  font-weight: 500;
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius-pill);
  border-bottom: 2px solid transparent;
  transition: color var(--transition-smooth), background var(--transition-smooth), border-color var(--transition-smooth);
}

.site-nav-link:hover {
  color: var(--color-wine);
  background: var(--color-blush);
}

.nav-link-active.site-nav-link {
  color: var(--color-wine);
  font-weight: 600;
  background: var(--color-blush);
  border-bottom-color: var(--color-wine);
  box-shadow: none;
}

.site-nav-link--party { letter-spacing: 0.04em; }

.site-header-cta {
  font-size: 0.6875rem;
  letter-spacing: 1.5px;
}

@media (min-width: 1280px) {
  .site-nav-link { font-size: 0.8125rem; }
  .site-header-cta { font-size: 0.75rem; }
}

#mobile-nav {
  background: var(--color-white) !important;
  border-top: 1px solid var(--color-border) !important;
}

#mobile-nav a {
  display: block;
  padding: 0.45rem 0.75rem;
  border-left: 3px solid transparent;
  border-radius: 0 8px 8px 0;
  color: var(--color-espresso);
  transition: color var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
}

#mobile-nav a:hover {
  color: var(--color-wine);
  background: var(--color-blush);
}

#mobile-nav a.nav-link-active {
  color: var(--color-wine);
  font-weight: 600;
  border-left-color: var(--color-wine);
  background: var(--color-blush);
}

.nav-link-active { color: var(--color-wine); font-weight: 600; }
.nav-scroll::-webkit-scrollbar { height: 4px; }
.nav-scroll::-webkit-scrollbar-thumb { background: rgba(140, 28, 50, 0.25); }

/* ─── See-Piraten Galerie ─── */
.seepiraten-gallery {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .seepiraten-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.seepiraten-gallery .content-visual { aspect-ratio: 4 / 3; }

/* ─── Angebots-Karten ─── */
.offer-card { display: flex; flex-direction: column; gap: 0; }

.offer-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-wine);
  font-weight: 600;
  line-height: 1.2;
  margin: 0.5rem 0;
}

.offer-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.offer-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.offer-body { margin-top: 0; }

.usp-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 640px) {
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
}

.usp-item {
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow: var(--shadow-premium);
  transition: background var(--transition-smooth), transform var(--transition-smooth);
}

.usp-item:hover {
  background: var(--color-blush);
  transform: translateY(-2px);
}

.usp-item strong {
  display: block;
  color: var(--color-wine);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.usp-item span { font-size: 0.875rem; color: var(--color-text-muted); }

/* ─── Speisekarte Tabs ─── */
.tab-btn.active, .menu-tab.active {
  color: var(--color-wine);
  border-color: var(--color-wine);
  font-weight: 600;
  background: var(--color-blush);
}

.tab-panel, .menu-panel { display: none; }
.tab-panel.active, .menu-panel.active { display: block; }

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 640px) {
  .menu-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ─── Formulare ─── */
input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(140, 28, 50, 0.2);
  border-color: var(--color-wine);
}

/* ─── Tailwind-Farb-Overrides (Espresso statt Schwarz) ─── */
.text-ink-800, .text-ink-700 { color: var(--color-espresso) !important; }
.text-ink-600 { color: var(--color-text-muted) !important; }
.text-wine-600, .text-wine-700, .text-wine-500 { color: var(--color-wine) !important; }
.bg-wine-600, .bg-wine-700 { background-color: var(--color-wine) !important; }
.bg-wine-600:hover, .hover\:bg-wine-700:hover { background-color: var(--color-wine-hover) !important; }
.bg-cream-100, .hover\:bg-cream-100:hover { background-color: var(--color-blush) !important; }
.bg-cream-50, .bg-\[\#fdfbf8\] { background-color: var(--color-white) !important; }
.text-cream-100 { color: var(--color-cream) !important; }
.text-cream-200 { color: rgba(250, 246, 240, 0.85) !important; }
.border-cream-300 { border-color: var(--color-border) !important; }
.border-wine-500\/30, .border-wine-500\/40 { border-color: var(--color-border-wine) !important; }

/* ─── Footer ─── */
.section-dark-footer p,
.section-dark-footer a,
.section-dark-footer span {
  color: rgba(250, 246, 240, 0.85);
}

.section-dark-footer .font-display,
.section-dark-footer .text-cream-100 {
  color: var(--color-cream) !important;
}

.section-dark-footer a:hover {
  color: var(--color-white) !important;
}

/* ─── Scroll-Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: none; }
  .card, .card-lift:hover { transition: none; transform: none; }
  .btn-premium:hover, .btn-anfrage:hover, .btn-hero-primary:hover { transform: none; }
}
