/* === DESIGN TOKENS === */
:root {
  --cream: #f7f1e6;
  --cream-dark: #ede3d1;
  --ink: #1a1012;
  --ink-soft: #2a1a1e;
  --wine: #6b1f2d;
  --wine-dark: #4a1520;
  --gold: #b8924a;
  --gold-soft: #d4b478;
  --gray: #6b6159;
  --gray-soft: #a59a90;
  --line: rgba(26,16,18,0.08);
  --shadow-sm: 0 2px 10px rgba(26,16,18,0.05);
  --shadow-md: 0 10px 30px rgba(26,16,18,0.08);
  --shadow-lg: 0 24px 60px rgba(26,16,18,0.14);
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container { width: 92%; max-width: 1240px; margin: 0 auto; }

.section { padding: 6rem 0; }

@media (max-width: 720px) { .section { padding: 4rem 0; } }

/* === ANNOUNCE BAR === */
.announce-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 0.55rem 0;
  overflow: hidden;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.announce-ticker {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}

.announce-ticker span { color: var(--gold-soft); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,241,230,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(247,241,230,0.98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.logo { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; }

.logo-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--wine);
  color: var(--cream);
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.logo-text { font-family: var(--serif); font-size: 1.2rem; line-height: 1.1; display: flex; flex-direction: column; }
.logo-text em { font-style: italic; font-weight: 500; color: var(--gold); font-size: 0.85rem; }

.nav { display: flex; align-items: center; gap: 1.8rem; }

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}

.nav a:not(.btn):not(.nav-phone)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--wine);
  transition: width 0.3s;
}

.nav a:not(.btn):not(.nav-phone):hover::after { width: 100%; }

.nav-phone { color: var(--wine); font-weight: 600; font-size: 0.92rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}

.btn-primary { background: var(--wine); color: var(--cream); }
.btn-primary:hover { background: var(--wine-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(107,31,45,0.3); }

.btn-outline { background: transparent; color: var(--wine); border: 1.5px solid var(--wine); }
.btn-outline:hover { background: var(--wine); color: var(--cream); }

.btn-lg { padding: 1.05rem 1.8rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 4px; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); }
}

/* === HERO === */
.hero {
  padding: 5rem 0 6rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(184,146,74,0.08), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(107,31,45,0.06), transparent 50%),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.5rem;
}

.eyebrow-light { color: var(--gold-soft); }

.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--wine);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(107,31,45,0.5); }
  50% { opacity: 0.8; transform: scale(1.4); box-shadow: 0 0 0 8px rgba(107,31,45,0); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title em { font-style: italic; color: var(--wine); font-weight: 500; }

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) { animation-delay: 0.25s; }
.hero-title .line:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.hero-ctas { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-weight: 600;
  position: relative;
}

.btn-text-icon { font-size: 1.2rem; }
.btn-text strong { display: block; font-size: 1.05rem; }
.btn-text small { display: block; font-size: 0.82rem; color: var(--gray); font-weight: 400; }
.btn-text::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.btn-text:hover::after { transform: scaleX(1); }

.hero-meta {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--wine);
  font-weight: 700;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 560px;
}

@media (max-width: 520px) { .hero-visual { height: 420px; } }

.hero-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}

.hero-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); }

.hero-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.hero-card:hover img { transform: scale(1.05); }

.hero-card-main { grid-column: 1 / 2; grid-row: 1 / 3; }
.hero-card-sm { }
.hero-card-tl { grid-column: 2 / 3; grid-row: 1 / 2; }
.hero-card-br { grid-column: 2 / 3; grid-row: 2 / 3; }

.hero-card-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(to top, rgba(26,16,18,0.85), transparent);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
}

.hero-card-meta .tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--gold-soft);
}

.hero-card-meta .price { font-size: 0.85rem; font-weight: 600; }

.hero-badge-float {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--wine);
  color: var(--cream);
  padding: 1rem 1.3rem;
  border-radius: 50%;
  width: 100px; height: 100px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  box-shadow: var(--shadow-lg);
  animation: floatY 4s ease-in-out infinite;
  z-index: 5;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

.hero-badge-float strong { font-size: 1.2rem; line-height: 1; display: block; }
.hero-badge-float span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }

/* === FEATURES === */
.features { background: #fff; padding: 5rem 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.feature {
  text-align: left;
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-radius: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--line);
}

.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(184,146,74,0.3); }

.feature-icon {
  display: inline-block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.feature h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 0.6rem; color: var(--ink); }
.feature p { color: var(--gray); }

/* === SECTION DARK (Ankauf) === */
.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-dark .section-title, .section-dark .eyebrow { color: var(--cream); }
.section-dark .section-lead { color: rgba(247,241,230,0.75); }

.section-head-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

@media (max-width: 760px) { .section-head-row { grid-template-columns: 1fr; gap: 1.5rem; } }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}

.section-title em { font-style: italic; color: var(--wine); font-weight: 500; }
.section-dark .section-title em { color: var(--gold-soft); }

.section-lead { color: var(--gray); font-size: 1.05rem; line-height: 1.6; max-width: 460px; }
.section-lead--center { margin: 1rem auto 2rem; }

.text-center { text-align: center; }

.kat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

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

.kat {
  display: block;
  background: #221519;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(247,241,230,0.08);
}

.kat:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,0,0,0.4); }

.kat-img { aspect-ratio: 4/3; overflow: hidden; background: #2a1a1e; }
.kat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.kat:hover .kat-img img { transform: scale(1.08); }

.kat-body { padding: 1.5rem 1.5rem 1.8rem; }
.kat-body h3 { font-family: var(--serif); font-size: 1.45rem; margin-bottom: 0.4rem; color: var(--cream); }
.kat-body p { color: rgba(247,241,230,0.65); font-size: 0.95rem; margin-bottom: 1rem; }
.kat-link { color: var(--gold-soft); font-weight: 600; font-size: 0.9rem; }

/* === SHOWCASE (horizontal scroll) === */
.section-gallery-showcase { padding: 6rem 0 5rem; background: var(--cream); }

.showcase-rail {
  margin: 3rem 0 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.showcase-rail::-webkit-scrollbar { display: none; }

.showcase-track {
  display: flex;
  gap: 1.2rem;
  padding: 0 4vw 1rem;
  width: max-content;
}

.showcase-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.showcase-item img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }

.showcase-item figcaption {
  padding: 1rem 1.2rem;
  background: #fff;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  font-style: italic;
}

.showcase-ctas { display: flex; justify-content: flex-end; gap: 0.6rem; }

.rail-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.rail-btn:hover { background: var(--wine); color: var(--cream); border-color: var(--wine); transform: scale(1.05); }

/* === NACHLASS SPLIT === */
.section-split { background: #fff; }

.split-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) { .split-wrap { grid-template-columns: 1fr; gap: 2.5rem; } }

.split-media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { aspect-ratio: 5/6; object-fit: cover; width: 100%; }

.split-stat {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(247,241,230,0.95);
  backdrop-filter: blur(8px);
  padding: 1.2rem 1.4rem;
  border-radius: 12px;
}

.split-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--wine);
  margin-bottom: 0.3rem;
}

.split-stat span { font-size: 0.92rem; color: var(--gray); }

.check-list { list-style: none; margin: 1.5rem 0 2rem; }
.check-list li {
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
  position: relative;
  color: var(--gray);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* === REGIONEN === */
.section-regions-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 2.5rem auto 2rem;
  max-width: 860px;
}

.city-cloud a {
  padding: 0.6rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s;
}

.city-cloud a:hover {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
  transform: translateY(-2px);
}

/* === QUOTES === */
.section-quotes { background: #fff; }

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.quote {
  padding: 2rem;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid var(--line);
  position: relative;
}

.quote::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 1.5rem;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}

.stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.8rem; display: block; }

.quote blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 1rem;
}

.quote cite { font-style: normal; font-size: 0.88rem; color: var(--gray); font-weight: 600; }

/* === CTA === */
.section-cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--wine-dark) 100%);
  color: var(--cream);
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) { .cta-wrap { grid-template-columns: 1fr; } }

.cta-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.cta-text h2 em { color: var(--gold-soft); font-style: italic; font-weight: 500; }

.cta-text p { color: rgba(247,241,230,0.8); margin-bottom: 1.5rem; font-size: 1.05rem; }

.cta-bullets { list-style: none; display: grid; gap: 0.5rem; }
.cta-bullets li { color: var(--cream); font-weight: 500; }

.cta-box {
  background: rgba(247,241,230,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(247,241,230,0.1);
  padding: 2.5rem;
  border-radius: 20px;
}

.cta-box h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); margin-bottom: 1.5rem; }

.cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(247,241,230,0.08);
  color: var(--cream);
  transition: background 0.2s;
}

.cta-row:first-of-type { border-top: none; }
.cta-row:hover { padding-left: 0.5rem; }

.cta-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(184,146,74,0.15);
  border-radius: 10px;
  font-size: 1.15rem;
}

.cta-row strong { display: block; font-size: 1rem; }
.cta-row small { display: block; font-size: 0.82rem; color: rgba(247,241,230,0.6); }

.cta-box .btn { margin-top: 1.2rem; }

/* === FOOTER === */
.footer { background: var(--ink); color: rgba(247,241,230,0.7); padding: 4rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.footer-col h4 { font-family: var(--serif); color: var(--cream); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-col a { display: block; padding: 0.3rem 0; font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-tagline { font-size: 0.92rem; margin-top: 1rem; max-width: 320px; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(247,241,230,0.08);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(247,241,230,0.5);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 99;
  transition: transform 0.25s;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; }

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* === HERO V2 – LIGHT & MODERN === */

.hero-v2 {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background: #faf5ec;
  color: #1a1012;
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(201,165,74,0.22), transparent 45%),
    radial-gradient(circle at 88% 78%, rgba(232,200,140,0.28), transparent 50%),
    radial-gradient(circle at 55% 50%, rgba(255,255,255,0.6), transparent 60%),
    linear-gradient(180deg, #fdf8ee 0%, #f5ecd9 100%);
  animation: bgShift 18s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%, 0 0; }
  100% { background-position: 15% 8%, 85% 92%, 55% 55%, 0 0; }
}

.hero-v2-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
  min-height: 560px;
}

@media (max-width: 960px) {
  .hero-v2-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* --- Eyebrow Chip --- */
.eyebrow-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(107,31,45,0.12);
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b1f2d;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(107,31,45,0.06);
}

.eyebrow-v2 .dot {
  width: 8px; height: 8px;
  background: #6b1f2d;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(107,31,45,0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,31,45,0.5); transform: scale(1); }
  50% { box-shadow: 0 0 0 10px rgba(107,31,45,0); transform: scale(1.3); }
}

/* --- Headline --- */
.hero-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #1a1012;
  margin: 0 0 1.2rem;
}

.hero-v2-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #b8924a 0%, #d4a93a 45%, #8a6a28 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-v2-sub {
  font-size: 1.08rem;
  color: #5a4a44;
  margin: 0 0 2.5rem;
  max-width: 420px;
}

.hero-v2-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ================================ */
/* === MODERN BUTTONS – LIGHT === */
/* ================================ */

.btn-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.9rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s ease;
  border: none;
  isolation: isolate;
}

/* Primary: Warmer Burgunder-Gradient mit Shine */
.btn-modern-primary {
  background: linear-gradient(135deg, #8a2538 0%, #6b1f2d 55%, #4a1520 100%);
  color: #faf5ec;
  box-shadow:
    0 10px 28px rgba(107,31,45,0.32),
    0 0 0 1px rgba(201,165,74,0.15),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-modern-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d4a93a 0%, #e5c878 50%, #b8924a 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.btn-modern-primary:hover {
  box-shadow:
    0 18px 44px rgba(201,165,74,0.45),
    0 0 0 1px rgba(201,165,74,0.3),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.btn-modern-primary:hover::before { opacity: 1; }

.btn-modern-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.4) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: left 0.9s cubic-bezier(0.23,1,0.32,1);
  pointer-events: none;
}

.btn-modern-primary:hover .btn-modern-shine { left: 130%; }

.btn-modern-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  transition: transform 0.35s cubic-bezier(0.68,-0.55,0.27,1.55);
}

.btn-modern-primary:hover .btn-modern-icon {
  transform: translateX(6px) rotate(-45deg) scale(1.1);
}

/* Ghost: Hell mit animiertem Goldrand */
.btn-modern-ghost {
  background: rgba(255,255,255,0.7);
  color: #1a1012;
  border: 1.5px solid rgba(107,31,45,0.2);
  padding: 1.05rem 1.8rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(107,31,45,0.06);
}

.btn-modern-ghost::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50px;
  padding: 1.5px;
  background: linear-gradient(135deg, #c9a54a, #e5c878, #b8924a, #c9a54a);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: gradientShift 3s linear infinite;
  transition: opacity 0.3s;
}

@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

.btn-modern-ghost:hover {
  background: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(201,165,74,0.2);
}

.btn-modern-ghost:hover::before { opacity: 1; }

.btn-modern-pulse {
  position: relative;
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: greenPulse 1.8s ease-in-out infinite;
  margin-left: 0.3rem;
}

@keyframes greenPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

/* ==================================== */
/* === HERO FOKUSBILD – EINZELBILD === */
/* ==================================== */

.hero-focus {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: #f5ecd9;
  box-shadow:
    0 24px 56px rgba(107,31,45,0.14),
    0 6px 16px rgba(107,31,45,0.08),
    0 0 0 1px rgba(255,255,255,0.65);
}

@media (max-width: 960px) {
  .hero-focus {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 520px) {
  .hero-focus { aspect-ratio: 4 / 3; }
}

.hero-focus-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 6s linear;
  will-change: opacity, transform;
}

.hero-focus-img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-focus::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(26,16,18,0.03) 0%, rgba(26,16,18,0.16) 100%);
}

.hero-focus-img[src=""], .hero-focus-img:not([src]) {
  background: linear-gradient(135deg, #f5ecd9 0%, #e5c878 60%, #b8924a 100%);
}

/* === GOOGLE REVIEWS SLIDER === */

.section-reviews {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ec 100%);
  position: relative;
  overflow: hidden;
}

.reviews-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.reviews-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.3rem 0.8rem 1rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(26,16,18,0.06);
  margin-bottom: 1.8rem;
}

.google-logo {
  width: 78px;
  flex-shrink: 0;
}
.google-logo svg { width: 100%; height: auto; display: block; }

.reviews-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  border-left: 1px solid rgba(0,0,0,0.08);
  padding-left: 1rem;
}

.reviews-stars-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reviews-score {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1012;
  line-height: 1;
}

.reviews-stars {
  color: #fbbc05;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.reviews-count {
  font-size: 0.82rem;
  color: #5a4a44;
  font-weight: 500;
}

/* --- Slider Wrap --- */
.reviews-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  color: #1a1012;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(26,16,18,0.06);
  transition: all 0.25s ease;
  z-index: 3;
}

.reviews-nav:hover {
  background: #6b1f2d;
  color: #fff;
  border-color: #6b1f2d;
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(107,31,45,0.3);
}

@media (max-width: 720px) { .reviews-nav { width: 40px; height: 40px; } }

.reviews-viewport {
  flex: 1;
  overflow: hidden;
  padding: 8px 0 20px;
}

.reviews-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
  will-change: transform;
}

/* --- Review Card --- */
.g-review {
  flex: 0 0 calc((100% - 2.4rem) / 3);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 4px 14px rgba(26,16,18,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

@media (max-width: 1024px) { .g-review { flex: 0 0 calc((100% - 1.2rem) / 2); } }
@media (max-width: 720px)  { .g-review { flex: 0 0 100%; } }

.g-review:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26,16,18,0.1);
  border-color: rgba(201,165,74,0.3);
}

.g-review-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.g-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.g-author {
  flex: 1;
  min-width: 0;
}

.g-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1012;
  line-height: 1.2;
}

.g-author span {
  display: block;
  font-size: 0.78rem;
  color: #6b6159;
  margin-top: 0.15rem;
}

.g-mark {
  flex-shrink: 0;
  opacity: 0.8;
}

.g-stars {
  color: #fbbc05;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.g-text {
  font-size: 0.96rem;
  color: #2a1a1e;
  line-height: 1.55;
  margin: 0 0 1.2rem;
  flex: 1;
}

.g-foot {
  font-size: 0.78rem;
  color: #a59a90;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  letter-spacing: 0.02em;
}

/* --- Dots --- */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26,16,18,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.reviews-dot.is-active {
  width: 28px;
  border-radius: 10px;
  background: #6b1f2d;
}

.reviews-dot:hover { background: rgba(107,31,45,0.4); }
.reviews-dot.is-active:hover { background: #6b1f2d; }

/* --- Footer CTA --- */
.reviews-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4285F4;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.25s ease;
}

.reviews-cta:hover { gap: 0.8rem; }

/* === FEATURES V2 – MODERN STEPPER === */

.features-v2 {
  background: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.features-v2-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b1f2d;
  margin-bottom: 1.2rem;
}

.eyebrow-line span {
  width: 36px;
  height: 1.5px;
  background: #6b1f2d;
  display: inline-block;
}

.features-v2 .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: #1a1012;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Stepper Layout */
.stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

@media (max-width: 900px) {
  .stepper { grid-template-columns: 1fr; gap: 1.5rem; }
}

.step {
  background: linear-gradient(180deg, #fdfaf4 0%, #faf5ec 100%);
  border: 1px solid rgba(107,31,45,0.08);
  border-radius: 20px;
  padding: 2.2rem 2rem 2.4rem;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(107,31,45,0.12),
    0 4px 14px rgba(107,31,45,0.06);
  border-color: rgba(201,165,74,0.4);
}

/* Glowing Edge beim Hover */
.step::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, transparent 30%, rgba(201,165,74,0.6) 50%, transparent 70%);
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: shimmer 2.5s linear infinite;
  transition: opacity 0.35s;
  pointer-events: none;
}

@keyframes shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.step:hover::before { opacity: 1; }

/* Top Row: Nummer + Pfeil */
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #b8924a 0%, #d4a93a 50%, #8a6a28 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  letter-spacing: -0.02em;
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #c9a54a, transparent);
  border-radius: 2px;
}

/* Verbindungs-Pfeil zwischen Karten */
.step-line {
  flex: 1;
  margin-left: 1.2rem;
  color: rgba(107,31,45,0.35);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.step-line svg {
  width: 100%;
  height: 24px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.23,1,0.32,1) 0.2s;
}

.step.is-visible .step-line svg {
  opacity: 1;
  transform: translateX(0);
}

/* Animierter Gradient-Lauf auf der Linie */
.step-line path[stroke-dasharray] {
  stroke-dasharray: 4 4;
  animation: dashFlow 2s linear infinite;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -16; }
}

/* Letzte Karte: Haken statt Pfeil */
.step-line-end {
  flex: none;
  width: 28px;
  margin-left: 1rem;
  color: #6b1f2d;
}

.step-line-end svg {
  width: 26px;
  height: 26px;
  opacity: 1;
  transform: none;
  animation: checkPop 0.5s ease 0.8s both;
}

@keyframes checkPop {
  0% { transform: scale(0) rotate(-30deg); opacity: 0; }
  60% { transform: scale(1.15) rotate(0); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Mobile: Pfeil nach unten drehen */
@media (max-width: 900px) {
  .step-line {
    transform: rotate(90deg);
    margin: 0;
    max-width: 40px;
  }
  .step-line-end { transform: none; }
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: #1a1012;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.step p {
  color: #5a4a44;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

/* === STÄDTE V2 – MODERN === */

.staedte-v2 { background: #faf5ec; }

.is-current { color: #6b1f2d !important; font-weight: 700 !important; }

/* HERO */
.st-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, #fdfaf4 0%, #faf5ec 70%, #f5ecd9 100%);
  overflow: hidden;
  text-align: center;
}

.st-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,165,74,0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(107,31,45,0.1), transparent 50%);
  pointer-events: none;
}

.st-hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }

.st-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: #1a1012;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.st-hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #b8924a, #d4a93a, #8a6a28);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st-hero-sub {
  color: #5a4a44;
  font-size: 1.05rem;
  margin: 0 auto 2rem;
  max-width: 580px;
}

/* SMART SEARCH */
.smart-search { position: relative; max-width: 560px; margin: 0 auto 2rem; z-index: 20; }

.smart-search-box {
  position: relative;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 14px 44px rgba(26,16,18,0.08), 0 2px 6px rgba(26,16,18,0.04);
  border: 1.5px solid rgba(107,31,45,0.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.smart-search-box:focus-within {
  border-color: rgba(184,146,74,0.5);
  box-shadow: 0 20px 50px rgba(184,146,74,0.18), 0 0 0 4px rgba(184,146,74,0.12);
}

.smart-icon {
  position: absolute;
  left: 1.3rem; top: 50%;
  transform: translateY(-50%);
  color: #6b1f2d;
  pointer-events: none;
}

#smart-input {
  width: 100%;
  padding: 1.15rem 3rem 1.15rem 3.3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.02rem;
  font-family: inherit;
  background: transparent;
  color: #1a1012;
  outline: none;
}

#smart-input::placeholder { color: #a59a90; }

.smart-clear {
  position: absolute;
  right: 0.7rem; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(107,31,45,0.08);
  border: none;
  color: #6b1f2d;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
}

.smart-clear:hover { background: #6b1f2d; color: #fff; }

.smart-suggest {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0; right: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(26,16,18,0.14);
  overflow: hidden;
  z-index: 30;
}

.sg-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: #1a1012;
  transition: background 0.15s;
  text-align: left;
}

.sg-item:last-child { border-bottom: none; }
.sg-item:hover { background: #faf5ec; }

.sg-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(184,146,74,0.15);
  border-radius: 10px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sg-item strong { display: block; font-size: 0.98rem; font-weight: 600; }
.sg-item small { color: #6b6159; font-size: 0.82rem; }
.sg-arrow { margin-left: auto; color: #6b1f2d; font-weight: 700; }

/* Hero Stats */
.st-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(107,31,45,0.08);
}

@media (max-width: 500px) {
  .st-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

.st-hero-stats div { text-align: center; }
.st-hero-stats strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #6b1f2d;
  font-weight: 700;
  line-height: 1;
}
.st-hero-stats span {
  font-size: 0.78rem;
  color: #6b6159;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* POPULAR SEARCHES */
.st-popular {
  padding: 2rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.st-mini-head {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b1f2d;
  margin: 0 0 0.9rem;
}

.pop-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pop-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: #faf5ec;
  border: 1px solid rgba(107,31,45,0.08);
  border-radius: 50px;
  font-size: 0.9rem;
  color: #1a1012;
  font-weight: 500;
  transition: all 0.2s;
}

.pop-pill:hover {
  background: #6b1f2d;
  color: #fff;
  border-color: #6b1f2d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107,31,45,0.2);
}

.pop-icon { font-size: 1rem; }

/* SECTION HEAD */
.st-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.st-sec-head--center { text-align: center; display: block; }

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b1f2d;
  margin-bottom: 0.7rem;
}

.eyebrow-line span {
  width: 32px; height: 1.5px;
  background: #6b1f2d;
}

/* FEATURED GRID V2 */
.featured-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.ft-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  display: block;
  box-shadow: 0 14px 34px rgba(26,16,18,0.1);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
  isolation: isolate;
}

.ft-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(26,16,18,0.16); }

.ft-card-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg), linear-gradient(135deg, #2a1a1e, #6b1f2d);
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: 0;
}

.ft-card:hover .ft-card-bg { transform: scale(1.08); }

.ft-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,16,18,0.2) 0%, rgba(26,16,18,0.85) 100%);
  z-index: 1;
}

.ft-card-body {
  position: relative;
  z-index: 2;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.ft-region {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4b478;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.ft-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
}

.ft-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.ft-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.ft-card:hover .ft-arrow { transform: translateX(4px); }

/* TOOLBAR */
.st-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26,16,18,0.05);
  margin-bottom: 1.5rem;
}

.tb-group { display: flex; flex-direction: column; gap: 0.5rem; }
.tb-group-end { margin-left: auto; flex-direction: row; align-items: center; gap: 1rem; flex-wrap: wrap; }

.tb-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b6159;
}

.tb-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tb-chip {
  padding: 0.45rem 0.9rem;
  background: #faf5ec;
  border: 1.5px solid transparent;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #5a4a44;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.tb-chip:hover { border-color: rgba(107,31,45,0.3); color: #1a1012; }

.tb-chip.is-active {
  background: #6b1f2d;
  color: #fff;
  border-color: #6b1f2d;
  box-shadow: 0 6px 16px rgba(107,31,45,0.25);
}

.tb-view {
  display: inline-flex;
  background: #faf5ec;
  padding: 4px;
  border-radius: 10px;
  gap: 2px;
}

.tb-view-btn {
  width: 36px; height: 36px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #6b6159;
  transition: all 0.2s;
}

.tb-view-btn.is-active {
  background: #fff;
  color: #6b1f2d;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.tb-sort {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #6b6159;
}

.tb-sort select {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  background: #fff;
  cursor: pointer;
  color: #1a1012;
}

/* SUMMARY + RESET */
.st-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  color: #6b6159;
}

.st-summary strong { color: #1a1012; }

.st-reset {
  padding: 0.4rem 0.9rem;
  background: rgba(107,31,45,0.08);
  border: none;
  border-radius: 50px;
  color: #6b1f2d;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.st-reset:hover { background: #6b1f2d; color: #fff; }

/* A-Z BAR */
.az-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 2rem;
  padding: 0.8rem;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.04);
}

.az-btn {
  width: 30px; height: 30px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #6b6159;
  cursor: pointer;
  transition: all 0.15s;
}

.az-btn:hover {
  background: #6b1f2d;
  color: #fff;
  transform: translateY(-2px);
}

/* CITY CARDS */
.region-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1012;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(184,146,74,0.3);
}

.city-cards { display: grid; gap: 0.8rem; }

.grid-view { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.list-view { grid-template-columns: 1fr; }

.city-card-v2 {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  transition: all 0.25s ease;
  position: relative;
}

.city-card-v2:hover {
  border-color: rgba(184,146,74,0.4);
  box-shadow: 0 14px 30px rgba(26,16,18,0.08);
  transform: translateY(-2px);
}

.cv-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cv-head h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 0;
  color: #1a1012;
  line-height: 1.2;
}

.cv-region {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6159;
}

.cv-badge {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  background: linear-gradient(135deg, #b8924a, #d4a93a);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.cv-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; }

.cv-chip {
  padding: 0.32rem 0.75rem;
  background: #faf5ec;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 50px;
  font-size: 0.8rem;
  color: #5a4a44;
  transition: all 0.15s;
}

.cv-chip:hover { background: #b8924a; color: #fff; border-color: #b8924a; }

.cv-chip-primary {
  background: #6b1f2d;
  color: #fff;
  border-color: #6b1f2d;
  font-weight: 600;
}

.cv-chip-primary:hover { background: #4a1520; border-color: #4a1520; }

/* List View Modifier */
.list-view .city-card-v2 {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  gap: 1.5rem;
}

.list-view .cv-head {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .list-view .city-card-v2 { grid-template-columns: 1fr; }
}

/* NO RESULTS */
.no-results-v2 {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
  border-radius: 20px;
  border: 1px dashed rgba(107,31,45,0.2);
}

.no-results-icon { font-size: 3rem; margin-bottom: 1rem; }
.no-results-v2 h3 { font-family: 'Playfair Display', serif; color: #1a1012; margin-bottom: 0.5rem; font-size: 1.4rem; }
.no-results-v2 p { color: #6b6159; margin-bottom: 1.5rem; max-width: 400px; margin-left: auto; margin-right: auto; }

/* MAP */
.st-map-sec { background: #fff; }

.st-map-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) { .st-map-wrap { grid-template-columns: 1fr; } }

.st-map-text h2 { margin: 0.5rem 0 1rem; }
.st-map-text p { color: #5a4a44; margin-bottom: 1.5rem; }

.map-legend { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.map-legend li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #1a1012;
  font-weight: 500;
}
.map-legend li em { margin-left: auto; color: #6b6159; font-style: normal; font-size: 0.85rem; }
.map-legend span[class^="dot-"] {
  width: 12px; height: 12px; border-radius: 50%;
  display: inline-block;
}
.dot-ruhr { background: #6b1f2d; }
.dot-rhein { background: #b8924a; }
.dot-sauer { background: #228b5e; }
.dot-berg { background: #462f6a; }
.dot-muens { background: #4285f4; }

.st-map-visual {
  background: linear-gradient(135deg, #fdfaf4, #faf5ec);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(107,31,45,0.08);
}

.st-map-visual svg { width: 100%; height: auto; }

.map-cluster circle:first-child { animation: mapPulse 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes mapPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* FAQ */
.st-faq-sec { background: linear-gradient(180deg, #faf5ec 0%, #fff 100%); }

.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0.6rem; }

.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(184,146,74,0.4);
  box-shadow: 0 8px 24px rgba(26,16,18,0.06);
}

.faq-item summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: #1a1012;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: #6b1f2d;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 1.4rem 1.2rem;
  margin: 0;
  color: #5a4a44;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA BOTTOM */
.st-cta-sec {
  background: linear-gradient(135deg, #6b1f2d 0%, #4a1520 100%);
  color: #fff;
}

.st-cta-wrap { text-align: center; max-width: 620px; margin: 0 auto; }

.st-cta-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1rem;
}

.st-cta-wrap p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }

.st-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 720px) {
  .st-toolbar { flex-direction: column; align-items: stretch; }
  .tb-group-end { margin-left: 0; }
}

/* ===== Subpages V2 ===== */
.breadcrumbs{padding:18px 0 8px;font-size:14px;color:#6b5b4e;}
.breadcrumbs a{color:#6b1f2d;text-decoration:none;border-bottom:1px solid transparent;transition:border .2s;}
.breadcrumbs a:hover{border-bottom-color:#6b1f2d;}
.breadcrumbs span{color:#1a1012;font-weight:600;}

.section-content{padding:72px 0;}
.content-narrow{max-width:780px;margin:0 auto;}
.content-prose p{font-size:17px;line-height:1.75;color:#3a2a22;margin:0 0 18px;}
.content-prose strong{color:#1a1012;}

.section-trust-compact{padding:28px 0;background:#fbf7ef;border-top:1px solid #eadfc9;border-bottom:1px solid #eadfc9;}
.trust-row{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;}
.trust-chip{display:inline-flex;align-items:center;gap:10px;padding:10px 18px;background:#fff;border:1px solid #e7d9bf;border-radius:999px;font-size:14px;font-weight:600;color:#3a2a22;box-shadow:0 2px 6px rgba(107,31,45,.04);}
.trust-chip span{display:inline-flex;width:22px;height:22px;align-items:center;justify-content:center;background:#6b1f2d;color:#fff;border-radius:50%;font-size:12px;}

.section-katalog{padding:72px 0;background:#fbf7ef;}
.kat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px;margin-top:36px;}
.kat-card{display:flex;flex-direction:column;background:#fff;border-radius:18px;overflow:hidden;text-decoration:none;color:inherit;border:1px solid #eadfc9;transition:transform .35s ease,box-shadow .35s ease;}
.kat-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px -20px rgba(107,31,45,.25);}
.kat-card-img{aspect-ratio:16/10;background:linear-gradient(135deg,#efe4cf,#d9c59c);display:flex;align-items:center;justify-content:center;color:#8a6a3e;font-size:13px;font-style:italic;}
.kat-card-img::before{content:"";}
.kat-card-img{
  background:linear-gradient(135deg,#efe4cf 0%,#d9c59c 50%,#b8924a 100%)!important;
  position:relative;
}
.kat-card-img::before{
  content:"";
}
.kat-card-body{padding:20px 22px;display:flex;flex-direction:column;gap:6px;position:relative;}
.kat-card-body h3{font-family:"Playfair Display",serif;font-size:20px;margin:0;color:#1a1012;}
.kat-card-body p{font-size:14px;color:#6b5b4e;margin:0;}
.kat-card-arrow{position:absolute;right:22px;top:50%;transform:translateY(-50%);color:#b8924a;font-size:22px;transition:transform .3s;}
.kat-card:hover .kat-card-arrow{transform:translate(6px,-50%);}

.section-local{padding:60px 0;}
.local-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;}
.local-card{background:#fff;padding:26px;border-radius:16px;border:1px solid #eadfc9;box-shadow:0 4px 14px rgba(107,31,45,.04);}
.local-ic{display:inline-flex;width:44px;height:44px;align-items:center;justify-content:center;background:#faf5ec;border-radius:12px;font-size:22px;margin-bottom:10px;}
.local-card h3{font-family:"Playfair Display",serif;font-size:20px;margin:0 0 6px;color:#1a1012;}
.local-card p{font-size:15px;line-height:1.6;color:#6b5b4e;margin:0;}

.section-stepper-v2{padding:70px 0;background:#fbf7ef;}
.stepper-v2{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:22px;margin-top:36px;}
.step-v2{background:#fff;padding:30px;border-radius:18px;border:1px solid #eadfc9;position:relative;}
.step-num{font-family:"Playfair Display",serif;font-style:italic;font-size:48px;background:linear-gradient(135deg,#b8924a,#c9a54a);-webkit-background-clip:text;background-clip:text;color:transparent;display:block;line-height:1;margin-bottom:8px;}
.step-v2 h3{font-family:"Playfair Display",serif;font-size:22px;margin:0 0 8px;color:#1a1012;}
.step-v2 p{font-size:15px;line-height:1.6;color:#6b5b4e;margin:0;}

.section-faq-v2{padding:60px 0;}
.faq-item{background:#fff;border:1px solid #eadfc9;border-radius:12px;padding:18px 22px;margin-bottom:10px;}
.faq-item summary{cursor:pointer;font-weight:600;color:#1a1012;font-size:16px;list-style:none;display:flex;justify-content:space-between;align-items:center;}
.faq-item summary::after{content:"+";color:#b8924a;font-size:22px;transition:transform .3s;}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{margin:10px 0 0;color:#6b5b4e;line-height:1.6;}

.section-cta-v2{padding:70px 0;}
.cta-box{background:linear-gradient(135deg,#6b1f2d 0%,#4a1520 100%);color:#fff;padding:50px 40px;border-radius:22px;text-align:center;box-shadow:0 24px 60px -24px rgba(107,31,45,.4);}
.cta-box h2{font-family:"Playfair Display",serif;font-size:34px;margin:0 0 10px;color:#fff;}
.cta-box p{font-size:17px;line-height:1.6;margin:0 auto 24px;max-width:560px;color:#f3e4c9;}
.cta-ctas{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
.cta-box .btn-modern-ghost{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.3);}
.cta-box .btn-modern-ghost:hover{background:rgba(255,255,255,.15);}

.section-title{font-family:"Playfair Display",serif;font-size:clamp(28px,4vw,42px);color:#1a1012;margin:0 0 14px;}
.section-title--center{text-align:center;}
.section-sub--center{text-align:center;max-width:620px;margin:0 auto 24px;color:#6b5b4e;}

@media(max-width:720px){
  .cta-box{padding:36px 22px;}
  .cta-box h2{font-size:26px;}
}

/* =======================================================
   SUBPAGE COMPATIBILITY LAYER — alle Basis-Klassen für
   die generierten Stadt- und Kategorie-Seiten.
   ======================================================= */

/* Basis-Layout */
.main-feed{display:block;}
.container{max-width:1240px;margin:0 auto;padding:0 24px;}

/* Announce-Bar (Ticker oben) */
.announce-bar{overflow:hidden;background:#1a1012;color:#f3e4c9;font-size:13px;padding:9px 0;}
.announce-track{display:flex;gap:40px;white-space:nowrap;animation:announceScroll 38s linear infinite;}
.announce-track span{letter-spacing:.5px;}
@keyframes announceScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* Hero — generische Klassen */
.section-hero{padding:60px 0 72px;background:linear-gradient(180deg,#faf5ec 0%,#fbf7ef 100%);position:relative;}
.hero-inner{display:flex;flex-direction:column;align-items:flex-start;gap:20px;}
.hero-center{align-items:center;text-align:center;}
.hero-eyebrow{display:inline-flex;align-items:center;gap:10px;padding:7px 16px;border:1px solid #d9c59c;border-radius:999px;font-size:12px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:#6b1f2d;background:rgba(255,255,255,.6);}
.hero-title{font-family:"Playfair Display",serif;font-size:clamp(34px,5.5vw,58px);line-height:1.1;margin:0;color:#1a1012;font-weight:700;}
.hero-title em{font-style:italic;background:linear-gradient(135deg,#b8924a,#c9a54a);-webkit-background-clip:text;background-clip:text;color:transparent;}
.hero-sub{font-size:clamp(17px,1.6vw,19px);line-height:1.6;color:#3a2a22;margin:0;max-width:680px;}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-top:8px;}
.hero-media{margin-top:30px;width:100%;}

/* Hero V2 Varianten — falls Generator hero-v2 nutzt */
.hero-v2{padding:72px 0 84px;}
.hero-v2-inner{max-width:860px;margin:0 auto;text-align:center;display:flex;flex-direction:column;gap:22px;align-items:center;}
.hero-v2-title{font-family:"Playfair Display",serif;font-size:clamp(36px,5.8vw,60px);line-height:1.08;margin:0;color:#1a1012;}
.hero-v2-title em{font-style:italic;background:linear-gradient(135deg,#b8924a,#c9a54a);-webkit-background-clip:text;background-clip:text;color:transparent;}
.hero-v2-sub{font-size:clamp(16px,1.5vw,18px);line-height:1.65;color:#3a2a22;margin:0;max-width:640px;}
.hero-v2-ctas{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;margin-top:6px;}
.eyebrow-line,.eyebrow-v2{display:inline-flex;align-items:center;gap:10px;padding:7px 16px;border:1px solid #d9c59c;border-radius:999px;font-size:12px;font-weight:600;letter-spacing:1.8px;text-transform:uppercase;color:#6b1f2d;background:rgba(255,255,255,.6);}

/* Section-Helfer */
.section{padding:72px 0;position:relative;}
.section-head{font-family:"Playfair Display",serif;font-size:clamp(28px,4vw,42px);color:#1a1012;margin:0 0 14px;}
.section-head--center{text-align:center;}
.section-head--light{color:#fff;text-align:center;}
.section-sub{font-size:17px;line-height:1.65;color:#6b5b4e;margin:0 0 24px;}
.section-sub--center{text-align:center;max-width:640px;margin:0 auto 24px;}
.section-sub--light{color:#f3e4c9;}
.section-center{text-align:center;}

/* Buttons — generisch */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 24px;border-radius:10px;font-weight:600;font-size:15px;text-decoration:none;transition:transform .25s,box-shadow .25s,background .25s;cursor:pointer;border:none;}
.btn-primary{background:linear-gradient(135deg,#6b1f2d,#4a1520);color:#fff;box-shadow:0 8px 22px -10px rgba(107,31,45,.5);}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 28px -10px rgba(107,31,45,.6);}
.btn-secondary{background:#fff;color:#6b1f2d;border:1px solid #d9c59c;}
.btn-secondary:hover{background:#faf5ec;}
.btn-lg{padding:16px 30px;font-size:16px;}
.btn-dot{display:inline-block;width:8px;height:8px;border-radius:50%;background:#2ea043;box-shadow:0 0 0 0 rgba(46,160,67,.6);animation:btnPulse 2s infinite;}
@keyframes btnPulse{0%{box-shadow:0 0 0 0 rgba(46,160,67,.6)}70%{box-shadow:0 0 0 10px rgba(46,160,67,0)}100%{box-shadow:0 0 0 0 rgba(46,160,67,0)}}

/* Modern Buttons (falls noch nicht vorhanden) */
.btn-modern-primary{display:inline-flex;align-items:center;gap:10px;padding:14px 26px;background:linear-gradient(135deg,#6b1f2d,#4a1520);color:#fff;border-radius:999px;font-weight:600;font-size:15px;text-decoration:none;position:relative;overflow:hidden;box-shadow:0 10px 26px -10px rgba(107,31,45,.55);transition:transform .25s;}
.btn-modern-primary:hover{transform:translateY(-2px);}
.btn-modern-primary svg{transition:transform .3s;}
.btn-modern-primary:hover svg{transform:translateX(4px);}
.btn-modern-ghost{display:inline-flex;align-items:center;gap:10px;padding:14px 24px;background:#fff;color:#1a1012;border:1px solid #d9c59c;border-radius:999px;font-weight:600;font-size:15px;text-decoration:none;transition:background .25s,transform .25s;}
.btn-modern-ghost:hover{background:#faf5ec;transform:translateY(-2px);}

/* Header */
.header{position:sticky;top:0;background:rgba(250,245,236,.92);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid #eadfc9;z-index:50;}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px;}
.logo{display:inline-flex;align-items:center;gap:8px;font-family:"Playfair Display",serif;font-size:20px;font-weight:700;color:#1a1012;text-decoration:none;}
.logo-mark{display:inline-flex;width:34px;height:34px;align-items:center;justify-content:center;background:linear-gradient(135deg,#6b1f2d,#4a1520);color:#fff;border-radius:8px;font-style:italic;}
.nav{display:flex;align-items:center;gap:26px;}
.nav a{text-decoration:none;color:#1a1012;font-weight:500;font-size:15px;transition:color .2s;}
.nav a:hover{color:#6b1f2d;}
.nav a.btn-primary{color:#fff;}
.nav-toggle{display:none;flex-direction:column;gap:4px;background:none;border:none;cursor:pointer;padding:8px;}
.nav-toggle span{display:block;width:22px;height:2px;background:#1a1012;border-radius:1px;}

/* Footer */
.footer{background:#1a1012;color:#f3e4c9;padding:50px 0 30px;margin-top:60px;}
.footer-inner{display:flex;flex-direction:column;align-items:center;gap:18px;text-align:center;}
.footer .logo{color:#f3e4c9;}
.footer-tagline{font-size:15px;color:#c9b89a;margin:0;max-width:540px;line-height:1.6;}
.footer-nav{display:flex;gap:22px;flex-wrap:wrap;justify-content:center;}
.footer-nav a{color:#f3e4c9;text-decoration:none;font-size:14px;transition:color .2s;}
.footer-nav a:hover{color:#b8924a;}
.footer-legal{font-size:13px;color:#8a7560;margin:10px 0 0;}

/* WhatsApp-Button */
.whatsapp-float{position:fixed;bottom:22px;right:22px;width:56px;height:56px;background:#25d366;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 28px rgba(37,211,102,.4);z-index:60;transition:transform .25s;}
.whatsapp-float:hover{transform:scale(1.08);}
.whatsapp-float svg{width:30px;height:30px;}

/* Reveal-Animation */
/* Reveal — sichtbar by default, animiert nur wenn JS es anstößt */
.reveal{opacity:1;transform:none;transition:opacity .7s ease,transform .7s ease;}
.js-reveal-ready .reveal:not(.is-visible){opacity:0;transform:translateY(18px);}
.js-reveal-ready .reveal.is-visible{opacity:1;transform:none;}

/* Mobile */
@media(max-width:820px){
  .nav{display:none;}
  .nav-toggle{display:flex;}
  .header-inner{height:64px;}
  .section{padding:54px 0;}
}

/* Sticky Mobile Call-Button */
.mobile-call{
  display:none;
  position:fixed;bottom:18px;left:18px;right:86px;z-index:55;
  padding:14px 18px;border-radius:999px;
  background:linear-gradient(135deg,#6b1f2d,#4a1520);
  color:#fff;text-decoration:none;font-weight:700;font-size:15px;
  box-shadow:0 14px 34px -10px rgba(107,31,45,.55);
  display:none;align-items:center;justify-content:center;gap:10px;
}
.mobile-call svg{width:18px;height:18px;}
.mobile-call::before{
  content:"";width:8px;height:8px;border-radius:50%;
  background:#6bd96b;box-shadow:0 0 0 0 rgba(107,217,107,.6);
  animation:mobilePulse 2s infinite;
}
@keyframes mobilePulse{
  0%{box-shadow:0 0 0 0 rgba(107,217,107,.6)}
  70%{box-shadow:0 0 0 8px rgba(107,217,107,0)}
  100%{box-shadow:0 0 0 0 rgba(107,217,107,0)}
}
@media(max-width:720px){
  .mobile-call{display:inline-flex;}
  .whatsapp-float{bottom:82px;}
  body{padding-bottom:70px;}
}

/* Mobile Nav — sauber */
@media(max-width:820px){
  body.nav-open{overflow:hidden;}
  body.nav-open::after{
    content:"";position:fixed;inset:0;background:rgba(26,16,18,.5);
    backdrop-filter:blur(4px);z-index:40;
  }
  .nav{
    display:flex!important;flex-direction:column;gap:0;
    position:fixed;top:64px;left:16px;right:16px;
    background:#fff;border-radius:18px;padding:8px;
    box-shadow:0 20px 50px -10px rgba(0,0,0,.25);
    z-index:45;transform:translateY(-20px);opacity:0;pointer-events:none;
    transition:transform .3s,opacity .3s;
  }
  body.nav-open .nav{transform:translateY(0);opacity:1;pointer-events:auto;}
  .nav a{padding:14px 18px;border-radius:12px;}
  .nav a:hover{background:#faf5ec;}
  .nav-toggle{z-index:46;}
  body.nav-open .nav-toggle span:nth-child(1){transform:translateY(6px) rotate(45deg);}
  body.nav-open .nav-toggle span:nth-child(2){opacity:0;}
  body.nav-open .nav-toggle span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}
  .nav-toggle span{transition:transform .25s,opacity .25s;}
}

/* Header-CTA: Gold-Shine wie Haupt-CTA */
.nav .btn.btn-primary{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#6b1f2d 0%,#4a1520 55%,#7f2a3b 100%);
  box-shadow: 0 10px 24px -10px rgba(107,31,45,.55);
  transition: transform .25s ease, box-shadow .25s ease;
}
.nav .btn.btn-primary::after{
  content: "";
  position: absolute;
  top: -120%;
  left: -35%;
  width: 34%;
  height: 340%;
  background: linear-gradient(90deg, transparent 0%, rgba(201,165,74,.7) 45%, rgba(255,236,170,.9) 50%, rgba(201,165,74,.7) 55%, transparent 100%);
  transform: rotate(18deg);
  transition: left .55s ease;
  pointer-events: none;
}
.nav .btn.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(107,31,45,.62);
}
.nav .btn.btn-primary:hover::after{ left: 112%; }
.nav .btn.btn-primary:active{
  transform: translateY(0) scale(.98);
}

/* Reale Kategorie-Bilder statt Platzhalter (projektweit) */
.kat-card-img{
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.kat-card-img::before{content:"" !important;}
.kat-card-img[data-slot="category-gemaelde"]{background-image:url("images/gemaelde-1.jpg") !important;}
.kat-card-img[data-slot="category-antiquitaeten"]{background-image:url("images/moebel-1.jpg") !important;}
.kat-card-img[data-slot="category-porzellan"]{background-image:url("images/porzellan-1.jpg") !important;}
.kat-card-img[data-slot="category-silber"]{background-image:url("images/silber-1.jpg") !important;}
.kat-card-img[data-slot="category-schmuck"]{background-image:url("images/schmuck-1.jpg") !important;}
.kat-card-img[data-slot="category-asiatika"]{background-image:url("images/asiatika-1.jpg") !important;}
.kat-card-img[data-slot="category-nachlass"]{background-image:url("images/nachlass-1.jpg") !important;}

/* ===== About Section ===== */
.section-about{padding:84px 0;background:linear-gradient(180deg,#faf5ec 0%,#fbf7ef 100%);}
.about-grid{display:grid;grid-template-columns:1.35fr 1fr;gap:56px;align-items:start;}
.about-intro .section-title{margin:12px 0 20px;}
.about-intro .section-title em{font-style:italic;background:linear-gradient(135deg,#b8924a,#c9a54a);-webkit-background-clip:text;background-clip:text;color:transparent;}
.about-lead{font-size:19px;line-height:1.7;color:#3a2a22;margin:0 0 16px;font-weight:500;}
.about-body{font-size:16px;line-height:1.75;color:#6b5b4e;margin:0 0 28px;}
.about-signature{display:flex;align-items:center;gap:14px;padding-top:22px;border-top:1px solid #eadfc9;}
.sig-portrait{width:52px;height:52px;border-radius:50%;background:linear-gradient(135deg,#6b1f2d,#4a1520);color:#fff;display:flex;align-items:center;justify-content:center;font-family:"Playfair Display",serif;font-style:italic;font-size:20px;font-weight:700;}
.sig-name{font-family:"Playfair Display",serif;font-size:19px;font-weight:700;color:#1a1012;margin:0;}
.sig-role{font-size:13px;color:#8a7560;margin:2px 0 0;letter-spacing:.5px;text-transform:uppercase;}

.about-stats{display:grid;grid-template-columns:1fr 1fr;gap:14px;position:sticky;top:96px;}
.stat-card{background:#fff;border:1px solid #eadfc9;border-radius:16px;padding:24px 22px;box-shadow:0 6px 22px -12px rgba(107,31,45,.15);text-align:center;}
.stat-num{display:block;font-family:"Playfair Display",serif;font-size:40px;font-weight:700;background:linear-gradient(135deg,#b8924a,#c9a54a);-webkit-background-clip:text;background-clip:text;color:transparent;line-height:1;}
.stat-label{display:block;margin-top:8px;font-size:13px;font-weight:600;color:#6b5b4e;letter-spacing:.5px;text-transform:uppercase;}

.about-specs{margin-top:64px;}
.about-specs-head{text-align:center;font-family:"Playfair Display",serif;font-size:26px;color:#1a1012;margin:0 0 28px;}
.specs-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;}
.spec-card{background:#fff;border:1px solid #eadfc9;border-radius:14px;padding:22px;transition:transform .3s,box-shadow .3s;}
.spec-card:hover{transform:translateY(-4px);box-shadow:0 14px 30px -14px rgba(107,31,45,.2);}
.spec-ic{display:inline-flex;width:44px;height:44px;align-items:center;justify-content:center;background:#faf5ec;border-radius:12px;font-size:22px;margin-bottom:10px;}
.spec-card h4{font-family:"Playfair Display",serif;font-size:19px;color:#1a1012;margin:0 0 6px;}
.spec-card p{font-size:14px;line-height:1.55;color:#6b5b4e;margin:0;}

.about-values{margin-top:56px;display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;}
.value-box{background:linear-gradient(135deg,#fff 0%,#fbf7ef 100%);border:1px solid #eadfc9;border-radius:16px;padding:26px;position:relative;overflow:hidden;}
.value-box span{display:inline-flex;width:36px;height:36px;align-items:center;justify-content:center;background:#6b1f2d;color:#fff;border-radius:50%;font-weight:700;margin-bottom:10px;}
.value-box h4{font-family:"Playfair Display",serif;font-size:20px;color:#1a1012;margin:0 0 6px;}
.value-box p{font-size:15px;line-height:1.55;color:#6b5b4e;margin:0;}

@media(max-width:820px){
  .about-grid{grid-template-columns:1fr;gap:34px;}
  .about-stats{position:static;}
  .section-about{padding:56px 0;}
}

/* ===== Legal Pages ===== */
.section-legal{padding:60px 0 80px;min-height:70vh;}
.legal-title{font-family:"Playfair Display",serif;font-size:clamp(36px,5vw,52px);color:#1a1012;margin:14px 0 36px;line-height:1.1;}
.legal-prose h2{font-family:"Playfair Display",serif;font-size:22px;color:#6b1f2d;margin:36px 0 10px;border-bottom:1px solid #eadfc9;padding-bottom:8px;}
.legal-prose h2:first-child{margin-top:0;}
.legal-prose p,.legal-prose li{font-size:16px;line-height:1.75;color:#3a2a22;}
.legal-prose p{margin:0 0 14px;}
.legal-prose ul{margin:0 0 18px 20px;padding:0;}
.legal-prose li{margin-bottom:6px;}
.legal-prose a{color:#6b1f2d;border-bottom:1px solid rgba(107,31,45,.25);transition:border-color .2s;}
.legal-prose a:hover{border-bottom-color:#6b1f2d;}
.legal-prose strong{color:#1a1012;}
.legal-prose em{color:#8a7560;}
