/* =====================================================
   HOME-SPECIFIC STYLES
===================================================== */

/* Subtle centered page background image */
body.home-watermark {
  background: var(--cream);
}

/* HERO */
#hero {
  background: transparent;
  overflow: hidden;
  position: relative;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 82% 38%, rgba(115,106,99,0.10), transparent 65%),
    radial-gradient(700px 420px at 8% 82%, rgba(164,151,142,0.12), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 28px 96px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  position: relative;
  z-index: 1;
}
.hero-content { padding-bottom: 0; }

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--stone); }

.hero-sub {
  font-size: 1.07rem;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 40px;
  max-width: 430px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.hstat {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid var(--border);
  margin-right: 28px;
}
.hstat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hstat-num {
  font-family: var(--ff-serif);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.hstat-num sup { font-family: var(--ff-sans); font-size: 0.95rem; color: var(--stone); }
.hstat-label {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

/* Hero image column */
.hero-image-col {
  position: relative;
  padding: 28px 0 28px 28px;
}
.hero-image-col::before {
  content: "";
  position: absolute;
  top: 0;
  right: -14px;
  width: 72%;
  height: 78%;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  z-index: 0;
  pointer-events: none;
}
.hero-image-col::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 44%;
  background:
    radial-gradient(circle at 30% 30%, rgba(115,106,99,0.14), transparent 62%);
  border-radius: var(--radius-xl);
  z-index: 0;
  pointer-events: none;
}
.hero-img-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 60px -24px rgba(42,38,34,0.28),
    0 10px 22px -12px rgba(42,38,34,0.18);
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 58% 28%;
}
/* Floating badge */
.hero-float-card {
  position: absolute;
  bottom: 44px;
  left: -6px;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 34px rgba(42,38,34,0.16);
  z-index: 2;
}
.hfc-icon {
  width: 42px; height: 42px;
  background: var(--stone);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hfc-icon svg { width: 19px; height: 19px; }
.hfc-text strong { display: block; font-size: 0.87rem; font-weight: 600; }
.hfc-text span { font-size: 0.73rem; color: var(--muted); }

/* HOURS BANNER */
.hours-banner {
  background: var(--stone);
  padding: 14px 28px;
}
.hours-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.hours-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  flex-shrink: 0;
}
.hours-cols {
  display: flex;
  gap: 0;
}
.h-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.h-day:last-child { border-right: none; }
.h-day .d { font-size: 0.60rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.48); }
.h-day .t { font-size: 0.76rem; color: rgba(255,255,255,0.88); font-weight: 400; white-space: nowrap; }
.hours-banner-cta a {
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: 8px 15px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition); white-space: nowrap;
}
.hours-banner-cta a:hover { background: rgba(255,255,255,0.12); }

/* LEISTUNGEN PREVIEW (home grid) */
#leistungen-preview {
  position: relative;
  background:
    radial-gradient(1200px 480px at 92% -8%, rgba(164,151,142,0.20), transparent 60%),
    radial-gradient(900px 420px at -12% 22%, rgba(115,106,99,0.11), transparent 62%),
    var(--white);
  overflow: hidden;
}
#leistungen-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 88px,
      rgba(115,106,99,0.028) 88px,
      rgba(115,106,99,0.028) 89px
    );
  pointer-events: none;
  opacity: 0.6;
}
#leistungen-preview .section-inner {
  position: relative;
  z-index: 1;
}
#leistungen-preview .section-header {
  margin-bottom: 62px;
  max-width: 680px;
}
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lk {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(165deg, rgba(255,255,255,0.72) 0%, rgba(239,235,220,0.84) 92%),
    var(--cream);
  border: 1px solid rgba(115,106,99,0.24);
  border-radius: 18px;
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.34s cubic-bezier(.22,.61,.36,1), box-shadow 0.34s cubic-bezier(.22,.61,.36,1), border-color var(--transition);
}
.lk::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(115,106,99,0.18), rgba(115,106,99,0.85), rgba(115,106,99,0.18));
  z-index: 0;
}
.lk::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(160px 120px at 100% 0, rgba(255,255,255,0.42), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.lk:hover {
  border-color: rgba(115,106,99,0.48);
  box-shadow: 0 18px 34px rgba(42,38,34,0.12);
  transform: translateY(-8px);
}
.lk > * { position: relative; z-index: 1; }
.lk:nth-child(2),
.lk:nth-child(4) { transform: translateY(18px); }
.lk:nth-child(2):hover,
.lk:nth-child(4):hover { transform: translateY(10px); }
.lk-icon {
  width: 48px; height: 48px;
  background: linear-gradient(140deg, #6f6660 0%, #4d4742 100%);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}
.lk-icon svg { width: 21px; height: 21px; }
.lk-num {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--stone-light);
  text-transform: uppercase;
}
.lk h3 {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.12;
  max-width: 17ch;
  text-wrap: balance;
}
.lk p {
  font-size: 0.91rem;
  color: #6b625c;
  line-height: 1.72;
  flex: 1;
  max-width: 32ch;
}
.lk-link {
  display: inline-flex; align-items: center; gap: 6px;
  width: fit-content;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark-mid);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(115,106,99,0.28);
  transition: gap var(--transition), border-color var(--transition), color var(--transition);
}
.lk:hover .lk-link { gap: 10px; }
.lk:hover .lk-link {
  color: var(--stone);
  border-color: rgba(115,106,99,0.62);
}
.lk-link svg { width: 12px; height: 12px; }

/* ÜBER UNS PREVIEW */
#ueber-preview { background: var(--cream-dark); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ueber-img-wrap {
  position: relative;
  height: 540px;
}
.ueber-img-main {
  height: 100%;
  width: 88%;
  margin-left: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.ueber-img-main img { width: 100%; height: 100%; object-fit: cover; }
.ueber-float {
  position: absolute;
  bottom: 36px;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.ueber-float .big { font-family: var(--ff-serif); font-size: 2.7rem; font-weight: 500; color: var(--dark); line-height: 1; }
.ueber-float .big span { color: var(--stone); }
.ueber-float p { font-size: 0.78rem; color: var(--muted); margin-top: 5px; max-width: 130px; line-height: 1.42; }
.ueber-content .eyebrow { margin-bottom: 18px; }
.standort-cards { display: flex; flex-direction: column; gap: 0; margin: 22px 0 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.sc {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 3px;
  padding: 13px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.sc:last-child { border-bottom: none; }
.sc:hover { background: var(--cream); }
.sc-left {
  display: flex;
  align-items: center;
  gap: 9px;
  grid-column: 1;
  grid-row: 1;
}
@keyframes sc-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(39,174,96,0.30); }
  50%       { box-shadow: 0 0 0 7px rgba(39,174,96,0); }
}
.sc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--border-str);
}
.sc-dot--open    { background: #27ae60; animation: sc-pulse 2s ease-in-out infinite; }
.sc-dot--closed  { background: var(--border-str); }
.sc-dot--special { background: rgba(212,145,10,0.45); }
.sc-name { font-size: 0.87rem; font-weight: 700; color: var(--dark); }
.sc-meta { font-size: 0.74rem; color: var(--muted); grid-column: 1; grid-row: 2; padding-left: 17px; }
.sc-live { grid-column: 2; grid-row: 1; align-self: center; }
.sc-ph { grid-column: 2; grid-row: 2; align-self: center; display: flex; align-items: center; gap: 4px; }
.sc-ph-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sc-ph-dot--open   { background: #27ae60; box-shadow: 0 0 0 2px rgba(39,174,96,0.22); }
.sc-ph-dot--closed { background: var(--border-str); }
.sc-ph-txt { font-size: 0.70rem; color: var(--muted); white-space: nowrap; }
.sc-vacat {
  grid-column: 1 / -1;
  grid-row: 3;
  display: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: #9a7535;
  padding: 5px 0 1px 17px;
  letter-spacing: 0.01em;
}
.sc--urlaub { background: #fffcf4 !important; }
.sc--urlaub .sc-vacat { display: block; }
.sc--urlaub:hover { background: #fff8e8 !important; }
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.fi {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: var(--dark-mid);
}
.fi svg { width: 15px; height: 15px; color: var(--stone); flex-shrink: 0; }

/* SOCIAL PROOF */
#bewertungen { background: var(--dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rv {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--transition);
}
.rv:hover { background: rgba(255,255,255,0.07); border-color: rgba(164,151,142,0.35); }
.rv-stars { display: flex; gap: 4px; }
.rv-stars svg { width: 13px; height: 13px; fill: var(--taupe); }
.rv-text {
  font-family: var(--ff-serif);
  font-size: 1.03rem;
  font-style: italic;
  color: rgba(250,248,244,0.82);
  line-height: 1.72;
  flex: 1;
}
.rv-author {
  display: flex; align-items: center; gap: 11px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.avatar {
  width: 36px; height: 36px;
  background: var(--stone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 600; color: var(--white);
  flex-shrink: 0;
}
.rv-author strong { display: block; font-size: 0.84rem; font-weight: 600; color: rgba(250,248,244,0.88); }
.rv-author small { font-size: 0.70rem; color: var(--taupe); }
.rating-bar {
  margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  padding: 26px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.rating-bar .big-r {
  font-family: var(--ff-serif);
  font-size: 2.8rem; font-weight: 500;
  color: var(--white); line-height: 1;
}
.rating-bar .sub-r { font-size: 0.78rem; color: rgba(250,248,244,0.40); margin-top: 3px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { padding-top: 56px; padding-bottom: 72px; gap: 48px; }
  .hero-img-frame { max-height: 520px; }
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .lk:nth-child(2),
  .lk:nth-child(4) { transform: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 44px 28px 64px; gap: 40px; }
  .hero-image-col { padding: 16px; }
  .hero-image-col::before { right: 0; width: 82%; height: 78%; }
  .hero-image-col::after { display: none; }
  .hero-img-frame { aspect-ratio: 4 / 3; max-height: 380px; border-radius: var(--radius-lg); }
  .hero-content { padding-bottom: 0; }
  .hero-float-card { left: 16px; bottom: 28px; }
  .hours-banner { padding: 12px 20px; }
  .hours-banner-inner { justify-content: center; }
  .hours-label { width: 100%; text-align: center; }
  .hours-cols { width: 100%; justify-content: center; }
  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-img-wrap { height: 300px; }
  .ueber-img-main { width: 100%; }
}
@media (max-width: 640px) {
  .hero-inner { padding-top: 34px; }
  .hero-title { margin-bottom: 16px; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 28px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .leistungen-grid { grid-template-columns: 1fr; }
  #leistungen-preview .section-header {
    margin-bottom: 42px;
  }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .hstat {
    flex: 1 1 100%;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
  .hstat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .hours-cols { display: grid; grid-template-columns: repeat(5,1fr); }
  .h-day { padding: 4px 6px; }
  .rating-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .hero-float-card {
    position: static;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    transform: none;
  }
  .hours-cols { grid-template-columns: 1fr; gap: 6px; }
  .h-day {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 8px 4px;
  }
  .h-day:last-child { border-bottom: none; }
  .h-day .t { font-size: 0.74rem; }
}
