@import url("fonts.css");

/* =========================================================
   Beauty for You – Design System
   Statische Website · Farben & Typografie (Design-Tokens)
   Schriftart „Jost" wird lokal ausgeliefert (assets/fonts/),
   keine Verbindung zu Google – daher keine Einwilligung nötig.
   ========================================================= */

:root {
  /* --- Farben: Nude-Spektrum „Sand & Karamell“ (Entwurf 1c) --- */
  --c-cream:      #ffffff;   /* Seitenhintergrund – reines Weiß */
  --c-sand:       #fafafa;   /* helle Sektionen */
  --c-linen:      #ececec;   /* Karten / Trennflächen */
  --c-espresso:   #111111;   /* Schwarz – Text */
  --c-mocha:      #555555;   /* Sekundärtext */
  --c-rose:       #111111;   /* Akzent = Schwarz */
  --c-rose-deep:  #111111;   /* Links / Preise */
  --c-gold:       #ececec;   /* feine Linien */
  --c-taupe:      #fafafa;
  --c-taupe-ink:  #111111;
  --c-taupe-sub:  #555555;
  --c-white:      #ffffff;

  /* --- Typografie: Serif-Display + Sans-Fließtext --- */
  --font-display: "Georgia", "Times New Roman", "Times", serif;
  --font-body:    "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* --- Maße --- */
  --maxw: 1160px;
  --gap: clamp(1rem, 2vw, 2rem);
  --radius: 2px;
  --shadow-soft: 0 18px 45px -25px rgba(46, 38, 34, 0.45);
  --shadow-card: 0 12px 30px -20px rgba(46, 38, 34, 0.4);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------- Reset --------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--c-espresso);
  background: var(--c-cream);
  line-height: 1.7;
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.075rem);
  letter-spacing: 0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* --------------------------- Typo --------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
p  { margin: 0 0 1.1em; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 400;
  color: #888888;
  margin: 0 0 1rem;
  display: inline-block;
}
.lead { font-size: 1.15rem; color: var(--c-mocha); }

/* --------------------------- Layout --------------------------- */
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(2.4rem, 5.5vw, 4.4rem) 0; }
.section--sand { background: var(--c-sand); }
.section--dark { background: var(--c-taupe); color: var(--c-taupe-ink); }
.section--dark .eyebrow { color: var(--c-rose-deep); }
.section--dark .lead { color: var(--c-taupe-sub); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 46ch; }
.measure-wide { max-width: 60ch; }

/* --------------------------- Buttons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
}
.btn--primary { background: var(--c-espresso); color: var(--c-cream); }
.btn--primary:hover { background: var(--c-rose-deep); transform: translateY(-2px); }
.btn--rose { background: var(--c-espresso); color: var(--c-cream); }
.btn--rose:hover { background: var(--c-rose); color: var(--c-white); transform: translateY(-2px); }
/* auf Taupe-Bändern: dunkler Button */
.book-band .btn--rose, .section--dark .btn--rose { background: var(--c-taupe-ink); color: var(--c-cream); }
.book-band .btn--rose:hover, .section--dark .btn--rose:hover { background: var(--c-rose); color: var(--c-white); }
.book-bar .btn--rose { background: var(--c-taupe-ink); color: var(--c-cream); }
.book-bar .btn--rose:hover { background: var(--c-rose); }
/* Navigation: Termin-Button als Outline (Entwurf 1c) */
.nav__cta .btn--rose { background: transparent; border-color: var(--c-espresso); color: var(--c-espresso); }
.nav__cta .btn--rose:hover { background: var(--c-espresso); color: var(--c-cream); transform: none; }
.btn--ghost { border-color: currentColor; color: var(--c-espresso); }
.btn--ghost:hover { background: var(--c-espresso); color: var(--c-cream); }
.section--dark .btn--ghost { color: var(--c-cream); }
.section--dark .btn--ghost:hover { background: var(--c-cream); color: var(--c-espresso); }

/* --------------------------- Header --------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(82, 68, 58, 0.10);
}
.brand__logo { height: 62px; width: auto; display: block; margin-bottom: 0; }
@media (max-width: 680px) { .brand__logo { height: 48px; } }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0; min-height: 68px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; letter-spacing: 0.02em; }
.brand__tag { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: #888888; margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 1.35rem; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; position: relative; padding: 4px 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--c-rose-deep); transition: width 0.35s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta { margin-left: 0.4rem; }
.nav__cta .btn { padding: 0.8rem 1.8rem; white-space: nowrap; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--c-espresso); margin: 5px 0; transition: 0.3s var(--ease); }

/* --------------------------- Hero --------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex; align-items: center;
  color: var(--c-cream);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  /* Platzhalter bis Foto von Tanja da ist */
  background:
    linear-gradient(120deg, rgba(70,58,51,0.6) 0%, rgba(70,58,51,0.3) 55%, rgba(169,126,120,0.35) 100%),
    radial-gradient(120% 120% at 80% 20%, #c9a8a0 0%, #8d6f68 45%, #574a42 100%);
  background-size: cover; background-position: center;
}
.hero__inner { position: relative; z-index: 1; max-width: 640px; padding: 4rem 0; }
.hero h1 { color: #fff; margin-bottom: 0.3em; }
.hero__sub { font-size: 1.2rem; color: #f3e9e0; max-width: 40ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__meta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: 0.82rem; letter-spacing: 0.08em; color: #ecdfd4; }
.hero__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }

/* --------------------------- USP row --------------------------- */
.usps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.usp { text-align: center; padding: 0.5rem; }
.usp__icon { width: 34px; height: 34px; margin: 0 auto 0.8rem; color: var(--c-rose-deep); }
.usp h3 { font-size: 1.15rem; margin-bottom: 0.2em; }
.usp p { font-size: 0.92rem; color: var(--c-mocha); margin: 0; }

/* --------------------------- Services --------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--c-white);
  border: 1px solid var(--c-linen);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--c-linen), var(--c-sand));
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__media[data-photo]::after {
  content: "Foto folgt"; position: absolute; top: 12px; right: 12px;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-mocha); background: rgba(255,255,255,0.75); padding: 4px 8px; border-radius: 2px;
}
.card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 0.3em; }
.card__body p { font-size: 0.94rem; color: var(--c-mocha); flex: 1; }
.card__price { font-family: var(--font-display); font-size: 1.15rem; color: var(--c-rose-deep); margin-top: 0.6rem; }
.card__link { margin-top: 1rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-espresso); }
.card__link::after { content: " →"; }

/* --------------------------- Split / About --------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--c-linen), var(--c-rose) 140%);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.split__media[data-photo]::after {
  content: "Foto folgt"; position: absolute; bottom: 12px; left: 12px;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-white); background: rgba(46,38,34,0.5); padding: 5px 10px; border-radius: 2px;
}
.split__media { overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------- CTA band --------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d8cabd; max-width: 48ch; margin-inline: auto; }

/* --------------------------- Info / hours --------------------------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px solid rgba(46,38,34,0.1); font-size: 0.98rem; }
.hours li span:last-child { color: var(--c-mocha); }

/* --------------------------- Footer --------------------------- */
.site-footer { background: #ffffff; color: var(--c-mocha); border-top: 1px solid var(--c-linen); padding: 3rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--gap); margin-bottom: 2.5rem; }
.site-footer h4 { color: var(--c-taupe-ink); font-size: 1.05rem; letter-spacing: 0.04em; }
.site-footer a:hover { color: var(--c-rose-deep); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; font-size: 0.92rem; }
.footer-bottom { border-top: 1px solid rgba(74,61,51,0.18); padding-top: 1.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.8rem; color: var(--c-taupe-sub); }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------- Utility --------------------------- */
.stack > * + * { margin-top: 1.4rem; }
.divider { width: 54px; height: 1px; background: var(--c-gold); margin: 1.2rem 0; }
.center .divider { margin-inline: auto; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------- Responsive --------------------------- */
@media (max-width: 900px) {
  .usps { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .split, .info-grid, .footer-grid { grid-template-columns: 1fr; }
  .split__media { aspect-ratio: 16 / 11; max-width: 520px; }
}
@media (max-width: 1080px) {
  .nav__links {
    position: fixed; inset: var(--header-h, 104px) 0 auto 0;
    flex-wrap: nowrap;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--c-cream); padding: 1rem 1.4rem 1.6rem;
    border-bottom: 1px solid var(--c-linen);
    transform: translateY(-120%); transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-soft);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 0.9rem 0; border-bottom: 1px solid var(--c-linen); }
  .nav__links .nav__cta { margin: 0.8rem 0 0; }
  .nav__toggle { display: block; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .hero__meta { gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Unterseiten
   ========================================================= */

/* Seiten-Header (kleiner Hero) */
.page-header {
  position: relative;
  padding: clamp(2rem, 4.5vw, 3.2rem) 0 clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  background: #ffffff;
  border-bottom: 1px solid var(--c-linen);
  color: var(--c-espresso);
  overflow: hidden;
}
.page-header--image { min-height: 42vh; display: flex; align-items: flex-end; }
.page-header__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--c-taupe-ink); margin-bottom: 0.25em; max-width: 20ch; margin-left: auto; margin-right: auto; font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.page-header p { color: var(--c-taupe-sub); max-width: 52ch; margin: 0 auto; }
.page-header .eyebrow { color: var(--c-rose-deep); }

.breadcrumb { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--c-taupe-sub); margin-bottom: 0.9rem; justify-content: center; }
.breadcrumb a:hover { color: var(--c-rose-deep); }
.breadcrumb span { opacity: 0.6; margin: 0 0.4rem; }

/* Fließtext */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.1rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: 0.5rem; }
.prose li::marker { color: var(--c-rose-deep); }

/* Zweispaltiges Layout Inhalt + Bild */
.content-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.content-split__media { position: sticky; top: 96px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.content-split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Preisliste */
.price-list { list-style: none; margin: 1.4rem 0; padding: 0; }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--c-linen);
}
.price-list .name { font-weight: 400; }
.price-list .note { display: block; font-size: 0.85rem; color: var(--c-mocha); }
.price-list .price { font-family: var(--font-display); font-size: 1.15rem; color: var(--c-rose-deep); white-space: nowrap; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--c-linen); padding: 1rem 0;
}
.faq summary {
  cursor: pointer; font-family: var(--font-display); font-size: 1.2rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--c-rose-deep); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0.9rem 0 0; color: var(--c-mocha); }

/* Formular */
.form { display: grid; gap: 1.1rem; max-width: 560px; }
.form label { display: block; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mocha); margin-bottom: 0.4rem; }
.form input, .form textarea {
  width: 100%; padding: 0.85rem 1rem; font-family: inherit; font-size: 1rem;
  color: var(--c-espresso); background: var(--c-white);
  border: 1px solid var(--c-linen); border-radius: var(--radius);
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--c-rose); }
.form textarea { min-height: 140px; resize: vertical; }
.form .hint { font-size: 0.8rem; color: var(--c-mocha); }

/* Buchungs-Box (Treatwell) */
.booking-box {
  background: var(--c-white); border: 1px solid var(--c-linen); border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem); text-align: center; box-shadow: var(--shadow-card);
}
.booking-embed {
  min-height: 320px; display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--c-rose); border-radius: var(--radius);
  color: var(--c-mocha); background: var(--c-sand); padding: 2rem; margin-top: 1.5rem;
}

/* Karte */
.map-embed { width: 100%; border: 0; border-radius: var(--radius); min-height: 340px; box-shadow: var(--shadow-card); }

/* kleine Helfer */
.grid--map { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-rose-deep); background: var(--c-sand); padding: 4px 10px; border-radius: 100px; margin-bottom: 0.8rem; }

@media (max-width: 900px) {
  .content-split, .grid--map { grid-template-columns: 1fr; }
  .content-split__media { position: static; max-width: 560px; }
}

/* =========================================================
   Einseiter – minimalistisch (Schwarz & Petrol, ohne Bilder)
   ========================================================= */

/* dünne Petrol-Linie ganz oben */
.topline { height: 0; }

/* Hero ohne Bild, zentriert */
.hero-simple {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.2rem) 0 clamp(1.6rem, 4vw, 2.4rem);
  background: var(--c-cream);
  border-bottom: 0;
}
.hero-simple .accent {
  width: 46px; height: 2px; background: var(--c-rose);
  margin: 0 auto 1.6rem;
}
.hero-simple h1 {
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.01em;
  max-width: 16ch; margin-inline: auto;
}
.hero-simple p {
  color: var(--c-mocha); font-size: 1.15rem;
  max-width: 46ch; margin: 1rem auto 1.6rem;
}

/* Hero MIT Foto (Frontpage) */
.hero-photo {
  position: relative;
  border-bottom: 0;
  color: #fff;
  min-height: min(64vh, 560px);
  display: flex; align-items: center;
  background: none;
}
.hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(70,58,51,0.5) 0%, rgba(70,58,51,0.6) 100%),
    linear-gradient(115deg, rgba(141,99,93,0.4) 0%, rgba(70,58,51,0.18) 60%),
    url('../../fotos/hero.jpg');
  background-size: cover; background-position: center;
}
.hero-photo .container { position: relative; z-index: 1; }
.hero-photo .accent { background: #ecd9d0; }
.hero-photo h1 { color: #fff; }
.hero-photo p { color: #f3e9e3; }
@media (min-width: 681px) { .hero-simple > .container > p:first-of-type { margin-bottom: 3.4rem; } }
.hero-photo .hero-tags span {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); color: #fff;
}
.hero-photo .hero-meta-line { color: #e6d7ce; }
.hero-photo .hero-meta-line strong { color: #fff; }

/* zentrierte Sektionsköpfe */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(1.6rem, 4vw, 2.4rem); }
.sec-head h2 { font-weight: 500; }
.sec-head p { color: var(--c-mocha); margin: 0.6rem 0 0; }

/* schmaler Inhaltsrahmen für Preisliste */
.narrow { width: min(100% - 2.4rem, 760px); margin-inline: auto; }

/* Preis-Kategorie als Karte */
.price-cat {
  scroll-margin-top: 90px;
  background: var(--c-white);
  border: 1px solid var(--c-linen);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem clamp(1.2rem, 3vw, 2rem) 0.8rem;
  margin-bottom: 1.3rem;
}
.price-cat__title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-rose-deep); font-weight: 500;
  padding-bottom: 0.9rem; margin-bottom: 0.2rem;
  border-bottom: 1px solid var(--c-linen);
}
.price-cat__title svg { width: 20px; height: 20px; stroke: var(--c-rose); flex: none; }
.price-cat .price-row:last-child { border-bottom: 0; }

/* klickbare Preiszeile -> Treatwell */
.price-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem;
  padding: 1.1rem 0.4rem 1.1rem 0.2rem;
  border-bottom: 1px solid var(--c-linen);
  color: var(--c-espresso);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease), border-color 0.25s var(--ease);
}
.price-row:hover, .price-row:focus-visible {
  color: var(--c-rose); border-color: var(--c-rose);
  padding-left: 0.9rem; outline: none;
}
.price-row__main { display: flex; flex-direction: column; gap: 3px; }
.price-row__name { font-size: 1.08rem; font-weight: 400; display: flex; align-items: baseline; gap: 0.55rem; }
.price-row__name .arrow { color: var(--c-rose); opacity: 0; transform: translateX(-4px); transition: 0.25s var(--ease); font-size: 0.9rem; }
.price-row:hover .price-row__name .arrow, .price-row:focus-visible .price-row__name .arrow { opacity: 1; transform: none; }
.price-row__sub { font-size: 0.9rem; color: var(--c-mocha); }
.price-row:hover .price-row__sub { color: inherit; }
.price-row__price { font-size: 1.05rem; font-weight: 500; white-space: nowrap; padding-top: 1px; }

/* Kartenbereich mit Einwilligung */
.map-box {
  position: relative; margin-top: 2rem; border: 1px solid var(--c-linen);
  border-radius: var(--radius); overflow: hidden; background: var(--c-sand);
  min-height: 320px; display: flex; align-items: center; justify-content: center;
}
.map-box__placeholder { text-align: center; padding: 2rem 1.4rem; max-width: 46ch; }
.map-box__placeholder p { font-size: 0.95rem; color: var(--c-mocha); margin: 0 0 1.2rem; }
.map-box__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.map-frame { width: 100%; height: 380px; border: 0; display: block; }
.map-box__open {
  position: absolute; right: 0.9rem; bottom: 0.9rem; background: var(--c-white);
  color: var(--c-espresso); font-size: 0.78rem; letter-spacing: 0.06em;
  padding: 0.55rem 0.95rem; border-radius: 100px; box-shadow: var(--shadow-card);
}
.map-box__open:hover { color: var(--c-rose-deep); }

/* Sprungnavigation über der Preisliste */
.price-jump {
  display: flex; flex-wrap: nowrap; gap: 0.4rem; margin-bottom: 1.6rem;
  overflow-x: auto; scrollbar-width: none; padding-bottom: 0.2rem;
}
.price-jump::-webkit-scrollbar { display: none; }
.price-jump a { white-space: nowrap; flex: 0 0 auto; }
.price-jump a {
  font-size: 0.72rem; letter-spacing: 0.02em; color: var(--c-espresso);
  border: 1px solid var(--c-linen); border-radius: 100px; padding: 0.4rem 0.7rem;
  background: var(--c-white); transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.price-jump a:hover { background: var(--c-sand); border-color: var(--c-rose); color: var(--c-rose-deep); }

/* Zwischenüberschrift innerhalb einer Kategorie */
.price-group {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-mocha);
  padding: 1.1rem 0.2rem 0.4rem; border-top: 1px solid var(--c-linen); margin-top: 0.2rem;
}
.price-cat > .price-group:first-of-type { border-top: 0; padding-top: 0.4rem; }

/* Kompakte Auffüll-Preise */
.price-refill {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 1.1rem;
  padding: 0.7rem 0.2rem 1rem; border-bottom: 1px solid var(--c-linen);
}
.price-refill__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-mocha); }
.price-refill__items { display: flex; flex-wrap: wrap; gap: 0.35rem 1.1rem; font-size: 0.92rem; color: var(--c-mocha); }
.price-refill__items b { font-weight: 500; color: var(--c-espresso); }
.price-cat > .price-refill:last-child { border-bottom: 0; }

/* Hinweiszeile pro Kategorie */
.price-note { font-size: 0.85rem; color: var(--c-mocha); margin: 0.9rem 0.2rem 0; }

/* Interne Links zu den Detail-Seiten (SEO + Navigation) */
.detail-links { margin-top: 2rem; text-align: center; font-size: 0.95rem; }
.detail-links > span { color: var(--c-mocha); margin-right: 0.4rem; }
.detail-links a {
  display: inline-block; margin: 0.3rem 0.3rem;
  color: var(--c-rose-deep); border-bottom: 1px solid var(--c-rose);
}
.detail-links a:hover { color: var(--c-rose); }

/* Info-/Kontaktzeilen zentriert */
.info-lines { text-align: center; display: grid; gap: 0.5rem; font-size: 1.05rem; }
.info-lines a { color: var(--c-espresso); border-bottom: 0; text-decoration: none; transition: color 0.25s var(--ease); }
.info-lines a:hover { color: var(--c-rose); }
.hours-inline { display: flex; flex-direction: column; gap: 0.35rem; max-width: 340px; margin: 1.4rem auto 0; }
.hours-inline div { display: flex; justify-content: space-between; border-bottom: 1px solid var(--c-linen); padding: 0.5rem 0; font-size: 0.98rem; }
.hours-inline div span:last-child { color: var(--c-mocha); }

/* Hero-Foto unterhalb des zentrierten Heros (Entwurf 1c) */
.hero-figure { padding-bottom: clamp(1.6rem, 4vw, 2.8rem); }
.hero-figure figure { margin: 0; }
.hero-figure img {
  width: 100%; max-height: 620px; object-fit: cover; object-position: center 55%;
  border-radius: var(--radius); display: block;
}

/* Serif-Preisliste (Teaser Startseite, Entwurf 1c) */
.serif-list { max-width: 720px; margin: 0 auto; }
.serif-list a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 1.15rem 0.25rem; border-bottom: 1px solid var(--c-gold);
  color: var(--c-espresso); transition: opacity 0.3s var(--ease);
}
.serif-list a:last-of-type { border-bottom: 0; }
.serif-list a:hover { opacity: 0.55; }
.serif-list .name { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.3; }
.serif-list .price { font-size: 0.92rem; letter-spacing: 0.06em; white-space: nowrap; color: var(--c-espresso); }

/* Hero-Tags (kleine Pills) */
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 1.1rem 0 0.4rem; }
.hero-tags span {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-rose-deep); border: 1px solid var(--c-linen);
  padding: 6px 14px; border-radius: 100px; background: var(--c-white);
}
.hero-meta-line { font-size: 0.9rem; color: var(--c-mocha); margin-top: 1rem; }
.hero-meta-line strong { color: var(--c-espresso); font-weight: 500; }

/* Trust-Streifen (3 Punkte mit Icon) */
.usps--3 { grid-template-columns: repeat(3, 1fr); }
.usps--3 .usp__icon svg { width: 30px; height: 30px; }
@media (max-width: 760px) { .usps--3 { grid-template-columns: 1fr; row-gap: 1.8rem; } }

/* Buchungsband dunkel */
.book-band { background: var(--c-sand); color: var(--c-espresso); text-align: center; border-top: 1px solid var(--c-linen); }
.book-band h2 { color: var(--c-taupe-ink); font-weight: 500; }
.book-band p { color: var(--c-taupe-sub); max-width: 44ch; margin: 0.6rem auto 1.8rem; }

@media (max-width: 560px) {
  .price-row { flex-wrap: wrap; gap: 0.2rem; }
  .price-row__price { width: 100%; color: var(--c-rose-deep); }
}

/* Fixe Buchungs-Leiste unten */
.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  padding: 0.7rem clamp(1rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--c-linen);
  backdrop-filter: blur(8px);
  color: var(--c-taupe-ink);
  box-shadow: 0 -10px 30px -14px rgba(74,61,51,0.4);
  transform: translateY(130%);
  transition: transform 0.4s var(--ease);
}
.book-bar.is-visible { transform: none; }
.book-bar__text { font-size: 0.98rem; color: var(--c-taupe-sub); }
.book-bar__text strong { color: var(--c-taupe-ink); font-weight: 500; }
.book-bar .btn--rose { padding: 0.75rem 1.6rem; }
.book-bar__call { color: var(--c-taupe-sub); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.book-bar__call:hover { color: var(--c-rose-deep); }
body.has-bookbar { padding-bottom: 72px; }

@media (max-width: 620px) {
  .book-bar { gap: 0.7rem; justify-content: space-between; }
  .book-bar__text { display: none; }
  .book-bar .btn--rose { flex: 1; justify-content: center; }
}

/* =========================================================
   Cookie-/Einwilligungs-Banner
   ========================================================= */
.cc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; padding: clamp(0.8rem, 2vw, 1.4rem); display: flex; justify-content: center; pointer-events: none; }
.cc__card { pointer-events: auto; }
.cc[hidden] { display: none; }
.cc-open .book-bar { display: none; }
.cc__card {
  width: min(100%, 560px);
  background: var(--c-white);
  border: 1px solid var(--c-linen);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -22px rgba(87,74,66,0.55);
  padding: clamp(1.3rem, 3vw, 1.9rem);
}
.cc__card h3 { font-size: 1.15rem; font-weight: 500; margin: 0 0 0.45rem; letter-spacing: 0.01em; }
.cc__card p { font-size: 0.9rem; line-height: 1.6; color: var(--c-mocha); margin: 0 0 0.4rem; text-wrap: pretty; }
.cc__card a { color: var(--c-rose-deep); border-bottom: 1px solid var(--c-rose); }
.cc__actions { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.3rem; }
.cc__actions .btn {
  padding: 0.62rem 1.15rem; font-size: 0.8rem; letter-spacing: 0.02em;
  text-transform: none; border-radius: 6px; justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cc__actions .btn:hover { transform: none; }
.cc__actions .btn--rose { background: var(--c-espresso); color: var(--c-cream); border-color: var(--c-espresso); }
.cc__actions .btn--rose:hover { background: var(--c-rose-deep); border-color: var(--c-rose-deep); color: #fff; }
.cc__actions .btn--ghost { background: transparent; border-color: var(--c-linen); color: var(--c-espresso); }
.cc__actions .btn--ghost:hover { background: var(--c-sand); border-color: var(--c-rose); color: var(--c-espresso); }
.cc__minor { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 0.85rem; }
.cc-link { background: none; border: 0; padding: 0; font: inherit; font-size: 0.82rem; color: var(--c-mocha); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.cc-link:hover { color: var(--c-rose-deep); }
.cc__spacer { flex: 1; }

/* Detailbereich */
.cc__details { margin-top: 1.1rem; border-top: 1px solid var(--c-linen); padding-top: 0.4rem; }
.cc__details[hidden] { display: none; }
.cc-cat { padding: 1rem 0; border-bottom: 1px solid var(--c-linen); }
.cc-cat:last-child { border-bottom: 0; }
.cc-cat__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cc-cat__head strong { font-weight: 500; font-size: 1rem; }
.cc-cat p { font-size: 0.86rem; margin: 0.5rem 0 0; }
.cc-cat dl { display: grid; grid-template-columns: auto 1fr; gap: 0.2rem 0.8rem; margin: 0.6rem 0 0; font-size: 0.82rem; color: var(--c-mocha); }
.cc-cat dt { color: var(--c-espresso); font-weight: 500; }
.cc-cat dd { margin: 0; }

/* Schalter */
.cc-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; }
.cc-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cc-switch .track { position: absolute; inset: 0; background: var(--c-linen); border-radius: 100px; transition: background 0.25s var(--ease); }
.cc-switch .knob { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.25); transition: transform 0.25s var(--ease); }
.cc-switch input:checked + .track { background: var(--c-rose); }
.cc-switch input:checked ~ .knob { transform: translateX(20px); }
.cc-switch input:disabled ~ .knob { opacity: 0.7; }
.cc-switch input:disabled + .track { background: var(--c-rose-deep); opacity: 0.55; }
.cc-switch input:focus-visible + .track { outline: 2px solid var(--c-rose-deep); outline-offset: 2px; }

/* Footer-Link zum erneuten Öffnen */
.cc-reopen { background: none; border: 0; color: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; font: inherit; padding: 0; }
.cc-reopen:hover { color: var(--c-rose); }

@media (max-width: 560px) {
  .cc__actions .btn { flex: 1; justify-content: center; }
  .cc-cat dl { grid-template-columns: 1fr; }
  .cc-cat dt { margin-top: 0.4rem; }
}


/* =========================================================
   Weiße Ausbaustufe: Über-Text, Team, Galerie, Bewertungen
   ========================================================= */
.about-text { max-width: 68ch; margin: 0 auto; }
.about-text p { color: var(--c-mocha); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.team-card { text-align: center; }
.team-card__photo {
  aspect-ratio: 3 / 4; background: var(--c-sand); border: 1px solid var(--c-linen);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem;
  overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 0.15em; }
.team-card p { font-size: 0.92rem; color: var(--c-mocha); margin: 0; }

/* Team-Raster */
.member-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.member-card {
  scroll-margin-top: 90px; text-align: center;
  background: var(--c-white); border: 1px solid var(--c-linen);
  border-radius: var(--radius); padding: 1.6rem 1.3rem 1.4rem;
  display: flex; flex-direction: column; align-items: center;
}
.member-card__photo {
  width: 132px; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  background: var(--c-sand); border: 1px solid var(--c-linen); margin-bottom: 1rem;
}
.member-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member-card h2 { font-size: 1.35rem; margin: 0.25rem 0 0.5rem; }
.member-card p { font-size: 0.92rem; color: var(--c-mocha); margin: 0 0 0.9rem; text-wrap: pretty; }
.member-card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; justify-content: center; margin-bottom: 1rem; }
.member-card__tags span {
  font-size: 0.72rem; letter-spacing: 0.04em; color: var(--c-espresso);
  background: var(--c-sand); border-radius: 100px; padding: 0.3rem 0.7rem;
}
.member-card__link {
  margin-top: auto; font-size: 0.82rem; letter-spacing: 0.06em;
  color: var(--c-espresso); transition: color 0.25s var(--ease);
}
.member-card__link:hover { color: var(--c-rose-deep); }
@media (max-width: 900px) { .member-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .member-grid { grid-template-columns: 1fr; } }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); display: block; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.review {
  border: 1px solid var(--c-linen); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; background: #fff; display: flex; flex-direction: column; gap: 0.7rem;
}
.review__stars { letter-spacing: 0.2em; font-size: 0.9rem; }
.review__text { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.45; margin: 0; }
.review__author { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-mocha); margin: 0; }
.rating-summary { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.rating-summary .score { font-family: var(--font-display); font-size: 3.4rem; line-height: 1; }
.rating-summary p { color: var(--c-mocha); margin: 0.5rem 0 0; }

@media (max-width: 900px) {
  .team-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .team-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr; }
}

/* H1 für SEO/Screenreader erhalten, visuell ausgeblendet */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Foto direkt unter der Kopfzeile: volle Breite, kein Abstand oben */
.hero-figure { padding-top: 0; }
.hero-figure .container { width: 100%; }
.hero-figure img { max-height: 640px; height: auto; border-radius: 0; }
.hero-simple { padding-top: clamp(1.6rem, 4vw, 2.4rem); }
