@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

:root {
  --cream:      #f8f4ef;
  --cream-mid:  #f1ebe2;
  --white:      #ffffff;
  --burg:       #7B1E2E;
  --burg-dark:  #621724;
  --dark:       #1a1818;
  --dark-card:  #222020;
  --dark-brd:   #2e2c2c;
  --gold:       #c9a96e;
  --txt:        #111111;
  --txt-sec:    #444444;
  --txt-muted:  #888888;
  --border:     #e5ddd5;
  --shadow-sm:  0 2px 16px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--txt); background: var(--white); -webkit-font-smoothing: antialiased; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.logo-img { height: 64px; width: auto; display: block; }
.logo-img2 { height: 56px; width: auto; display: block; }

nav ul { list-style: none; display: flex; align-items: center; gap: 2.2rem; }

nav ul li a {
  color: var(--txt-sec);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s, border-color .2s;
}
nav ul li a:hover { color: var(--burg); border-bottom-color: rgba(123,30,46,0.25); }
nav ul li a.active { color: var(--dark); border-bottom-color: var(--burg); }

.btn-nav {
  background: var(--burg) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px;
  font-size: 0.66rem !important;
  letter-spacing: 2px !important;
  border-bottom: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  transition: background .2s, transform .2s !important;
}
.btn-nav:hover { background: var(--burg-dark) !important; transform: translateY(-1px); }

.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--txt-sec); transition: background .2s; }

/* ══════════════════════════════════
   HERO  – Split Layout
══════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: calc(100vh - 82px);
}

.hero-left {
  background: var(--cream);
  padding: 4rem 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--txt);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero-left h1 .burg { color: var(--burg); font-style: italic; }

.heart-divider {
  display: flex; align-items: center; gap: 0.8rem; margin: 1.6rem 0;
}
.heart-divider .hline { flex: 1; max-width: 55px; height: 1px; background: var(--gold); }
.heart-divider .hrt { color: var(--gold); font-size: 1rem; }

.hero-sub {
  font-size: 0.91rem; color: var(--txt-sec); line-height: 1.85; margin-bottom: 2.2rem; font-weight: 300;
}

.hero-right {
  background: url('hero.jpg') center/cover no-repeat;
  background-color: #dccac5;
  position: relative;
  overflow: hidden;
}

.hero-fade {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 260px;
  background: linear-gradient(
    to right,
    #f8f4ef 0%,
    rgba(248, 244, 239, 0.75) 40%,
    rgba(248, 244, 239, 0.2) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--burg); color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 2px; text-decoration: none;
  font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--burg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,30,46,0.25);
}

.btn-outline {
  display: inline-block; border: 1.5px solid var(--burg); color: var(--burg);
  padding: 0.82rem 2rem; font-size: 0.7rem; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: background .2s, color .2s, transform .2s;
}
.btn-outline:hover { background: var(--burg); color: #fff; transform: translateY(-2px); }

.btn-outline-light {
  display: inline-block; border: 1px solid #555; color: #bbb;
  padding: 0.38rem 1.1rem; font-size: 0.64rem; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: all .25s;
}
.btn-outline-light:hover { border-color: var(--burg); color: #fff; }

/* ══════════════════════════════════
   SECTION HELPERS
══════════════════════════════════ */
.section-label {
  font-size: 0.6rem; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); text-align: center; margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: 2.1rem; text-align: center;
  margin-bottom: 0.4rem; letter-spacing: -0.3px;
}
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.8rem; margin-bottom: 2.8rem;
}
.section-divider .hline { width: 35px; height: 1px; background: var(--gold); }
.section-divider .hrt { color: var(--burg); font-size: 1rem; }

/* ══════════════════════════════════
   PAGE BANNER  (Unterseiten)
══════════════════════════════════ */
.page-banner {
  background: var(--cream); padding: 5.5rem 8%; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-banner .section-label { margin-bottom: 1.1rem; }
.page-banner h1 {
  font-family: 'Playfair Display', serif; font-size: 3.4rem;
  color: var(--txt); line-height: 1.15; margin-bottom: 0; letter-spacing: -0.5px;
}
.page-banner h1 span { color: var(--burg); font-style: italic; }
.page-banner .banner-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.1rem 0 1rem;
}
.page-banner .banner-ornament span { width: 40px; height: 1px; background: var(--gold); display: block; }
.page-banner .banner-ornament em { color: var(--burg); font-style: normal; }
.page-banner p { color: var(--txt-muted); font-size: 0.9rem; line-height: 1.9; max-width: 520px; margin: 0 auto; }
@media (max-width: 960px) { .page-banner { padding: 3.5rem 6%; } .page-banner h1 { font-size: 2.5rem; } }
@media (max-width: 600px) { .page-banner h1 { font-size: 2rem; } .page-banner { padding: 3rem 6%; } }

/* ══════════════════════════════════
   SECTIONS  backgrounds
══════════════════════════════════ */
.sec-cream { background: var(--cream); padding: 5rem 8%; }
.sec-cream .section-title { color: var(--txt); }
.sec-white { background: var(--white); padding: 5rem 8%; }
.sec-white .section-title { color: var(--txt); }
.sec-dark  { background: var(--dark);  padding: 5rem 8%; }
.sec-dark  .section-title { color: var(--cream); }
.sec-dark  .section-label { color: var(--gold); }

/* ══════════════════════════════════
   VALUES / STÄRKEN
══════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  text-align: center; padding: 2.2rem 1.8rem;
  border: 1px solid var(--border); background: var(--white);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(123,30,46,0.2);
}
.value-card .v-icon { font-size: 1.6rem; color: var(--burg); margin-bottom: 0.8rem; display: block; }
.value-card h4 {
  font-family: 'Playfair Display', serif; color: var(--dark);
  font-size: 1rem; margin-bottom: 0.6rem; letter-spacing: 0.2px;
}
.value-card p { font-size: 0.8rem; color: var(--txt-muted); line-height: 1.8; margin: 0; }

/* ══════════════════════════════════
   TEAM / ÜBER UNS
══════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 960px; margin: 3rem auto 0; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; display: block; transition: transform .5s; }
.team-card:hover .team-photo { transform: scale(1.03); }
.team-photo-placeholder { width: 100%; aspect-ratio: 3/4; background: var(--cream-mid); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--border); }
.team-info {
  padding: 2rem 2rem 2.2rem;
  border-top: 3px solid var(--burg);
}
.team-info h3 {
  font-family: 'Playfair Display', serif; font-size: 1.45rem;
  color: var(--dark); margin-bottom: 0.35rem; letter-spacing: -0.2px;
}
.team-role {
  font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.team-info p { font-size: 0.86rem; color: var(--txt-sec); line-height: 1.85; margin: 0; font-weight: 300; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.c-item { display: flex; gap: 1.2rem; margin-bottom: 2.2rem; }
.c-icon { font-size: 1.1rem; color: var(--burg); flex-shrink: 0; margin-top: 3px; }
.c-icon svg { stroke: var(--burg); display: block; }
.c-item h4 { font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: var(--burg); margin-bottom: 0.5rem; }
.c-item p { color: var(--txt-sec); font-size: 0.87rem; line-height: 1.85; }
.c-item a { color: var(--txt-sec); text-decoration: none; transition: color .2s; }
.c-item a:hover { color: var(--burg); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.38rem 0; font-size: 0.84rem; color: var(--txt-sec); border-bottom: 1px solid rgba(229,221,213,0.5); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: var(--txt); width: 115px; font-weight: 400; }
.map-box { width: 100%; height: 360px; overflow: hidden; border: 1px solid var(--border); }
.map-box iframe { width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════
   FORM
══════════════════════════════════ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.3rem; }
.form-field label {
  display: block; font-size: 0.6rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--txt-muted); margin-bottom: 0.6rem;
}
.form-field input, .form-field textarea {
  width: 100%; padding: 0.9rem 1.1rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: 0;
  font-family: 'Lato', sans-serif; font-size: 0.88rem;
  color: var(--txt); outline: none; transition: border-color .2s, background .2s;
  appearance: none;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--burg); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 130px; }

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2.5rem; }
.pricing-cat h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--txt);
  padding-bottom: 0.6rem; border-bottom: 2px solid var(--burg);
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem;
}
.p-item { display: flex; justify-content: space-between; align-items: baseline; padding: 0.65rem 0; border-bottom: 1px solid var(--border); }
.p-item:last-child { border-bottom: none; }
.p-name { font-size: 0.88rem; color: var(--txt); }
.p-detail { font-size: 0.73rem; color: var(--txt-muted); margin-top: 0.12rem; }
.p-price { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--burg); white-space: nowrap; margin-left: 1.5rem; flex-shrink: 0; }

/* ══════════════════════════════════
   SPLIT ROW
══════════════════════════════════ */
.split-row { display: grid; grid-template-columns: 1fr 1fr; }
.split-dark { background: var(--dark); color: var(--cream); padding: 4.5rem 5%; }
.split-dark .section-title { color: var(--cream); }
.split-light { background: var(--white); padding: 4.5rem 5%; }
.split-light .section-title { color: var(--txt); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--dark); color: #666;
  padding: 1.8rem 5%; font-size: 0.72rem; letter-spacing: 1.5px;
}
footer a { color: #666; text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--gold); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-left {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer-left span { color: #aaa; letter-spacing: 1px; }
.footer-right {
  display: flex; align-items: center; gap: 0.7rem;
}
.footer-right span { color: #555; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; }
.footer-logo { height: 32px; width: auto; display: block; border-radius: 2px; opacity: 0.85; }
@media (max-width: 600px) {
  footer { padding: 0.9rem 5%; }
  .footer-inner { flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.6rem 1.2rem; }
  .footer-left { flex-direction: row; align-items: center; gap: 0.9rem; flex-wrap: wrap; justify-content: center; }
  .footer-left span { display: none; }
  .footer-right { justify-content: center; }
}

/* ══════════════════════════════════
   ABOUT (legacy)
══════════════════════════════════ */
.about-split { display: grid; grid-template-columns: 1fr 1.3fr; }
.about-photo { background: linear-gradient(135deg, #2a1a1e, #3d2530); display: flex; align-items: center; justify-content: center; color: #555; font-size: 0.78rem; text-align: center; min-height: 460px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text { background: var(--dark); padding: 4rem 7%; display: flex; flex-direction: column; justify-content: center; }
.about-text .section-label { text-align: left; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--cream); margin-bottom: 0.8rem; line-height: 1.35; }
.about-text p { color: #aaa; line-height: 1.85; font-size: 0.9rem; margin-bottom: 0.9rem; }

/* ══════════════════════════════════
   SERVICE CARDS
══════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.service-card { background: var(--dark-card); border: 1px solid var(--dark-brd); border-radius: 4px; padding: 1.3rem 0.9rem; text-align: center; transition: border-color .3s, transform .25s; }
.service-card:hover { border-color: var(--burg); transform: translateY(-2px); }
.s-icon { font-size: 1.7rem; margin-bottom: 0.6rem; display: block; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 0.82rem; color: var(--cream); margin-bottom: 0.4rem; }
.service-card p { font-size: 0.7rem; color: #888; line-height: 1.55; margin-bottom: 0.8rem; }

/* ══════════════════════════════════
   REVIEWS (grid, legacy)
══════════════════════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 1.8rem 1.5rem; }
.review-card .stars { color: #f0b429; margin-bottom: 0.8rem; }
.review-card p { font-size: 0.84rem; color: var(--txt-sec); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-card span { font-size: 0.75rem; color: var(--txt-muted); }

/* ══════════════════════════════════
   REVIEWS MARQUEE (Startseite)
══════════════════════════════════ */
.reviews-marquee-wrap { margin-top: 2rem; width: 100%; }
.reviews-gbar {
  display: flex; align-items: center; gap: .45rem;
  margin-bottom: .65rem; font-size: .68rem;
  color: var(--txt-muted); letter-spacing: .3px;
}
.rm-stars-bar { color: #f0b429; font-size: .82rem; letter-spacing: 1px; }
.rm-score     { font-weight: 700; color: var(--txt); font-size: .78rem; }
.reviews-marquee {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.reviews-track {
  display: flex; gap: .7rem; width: max-content;
  animation: rmScroll 32s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes rmScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.rm-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: .85rem 1rem;
  width: 205px; flex-shrink: 0;
}
.rm-stars { color: #f0b429; font-size: .78rem; letter-spacing: 1px; margin-bottom: .4rem; }
.rm-text  { font-size: .74rem; color: var(--txt-sec); line-height: 1.65; font-style: italic; margin: 0 0 .45rem; }
.rm-name  { font-size: .66rem; color: var(--txt-muted); }
@media (prefers-reduced-motion: reduce) { .reviews-track { animation: none; } }

/* ══════════════════════════════════
   HOURS TABLE
══════════════════════════════════ */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.38rem 0; font-size: 0.84rem; color: var(--txt-sec); }
.hours-table td:first-child { color: var(--txt); width: 115px; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  nav ul {
    display: none; position: absolute; top: 82px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 1rem 0; gap: 0;
    border-top: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  nav ul.open { display: flex; }
  nav ul li { width: 100%; text-align: center; padding: 0.8rem 1rem; }
  .burger { display: flex; }
  /* Hero – mobile Reihenfolge: Überschrift → Bild → Button → Bewertungen */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background: var(--cream);
  }
  .hero-left {
    display: contents;
  }
  /* 1. Überschrift */
  .hero h1 {
    order: 1;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
    padding: 2.8rem 6% 2rem;
    background: var(--cream);
  }
  /* Untertitel auf Mobil ausblenden */
  .hero .hero-sub { display: none; }
  /* 2. Bild */
  .hero-right {
    order: 2;
    min-height: 78vw;
  }
  /* 3. Button + Bewertungen */
  .hero-cta {
    order: 3;
    background: var(--cream);
    padding: 2rem 6% 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hero-cta .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 0.72rem;
    padding: 1rem 2rem;
  }
  .reviews-marquee-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .hero-fade {
    top: 0; left: 0; right: 0; bottom: auto;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #f8f4ef 0%, rgba(248,244,239,0.6) 50%, transparent 100%);
  }
  .split-row { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; padding: 2rem 6% 1rem; }
  .section-title { font-size: 1.7rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
