:root{
  --green: #0f3d3a; --gold: #c8942d; --text: #1f2b2a; --muted: #6b7b7a; --container: 1180px;
  --spa-filter: brightness(.95) contrast(1.06) saturate(.90) sepia(.12); --spa-overlay: rgba(15,61,58,.10);
  --fs-h1: clamp(32px, 3vw, 44px); --fs-h2: clamp(20px, 2vw, 28px); --fs-h3: clamp(18px, 1.6vw, 22px);
  --fs-lead: clamp(16px, 1.25vw, 18px); --fs-body: 18px; --fs-small: 15px; --lh-body: 1.75;
  /* kompaktierte :root-Definition (Kommentare bleiben weiter unten) */
}

/* Globaler Standard */
body{
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:#FCFCFC;
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

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

/* NAVBAR */
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
 }

.navbar-inner{
  display:flex;
  align-items:center;
  gap: 40px; /* Abstand zwischen Logo und Menü */
  padding: 8px 0;
}

/* Termin Button im Header */
.nav-cta{
  background: #c6a45c;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-cta:hover{
  background: #b89347;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  white-space: nowrap;
}

.brand-logo{
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
}

.brand-text{
  font-size: 15px;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 700;
}

/* Desktop links */
.nav-links{
  list-style:none;
  display:flex;
  gap: 24px;
  margin:0;
  padding:0;
  align-items:center;
}

.nav-links a{
  font-size: 16px;
  padding: 8px 2px;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/*ohne Unterstrich Nur Farbe
.nav-links a.active{
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
*/

/*mit Unterstrich dünnere Linie
.nav-links a.active{
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
*/

/*Premium-Look mit Gold-Linie unten*/
.nav-links a.active{
  color: var(--gold);
  position: relative;
}

.nav-links a.active::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  bottom: -4px;
}

/* Burger button */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  background: #fff;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
}

/* Mobile menu */
.nav-mobile{
  border-top: 1px solid rgba(0,0,0,.06);
  background:#fff;
}

.nav-mobile ul{
  list-style:none;
  margin:0;
  padding: 10px 0 16px;
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.nav-mobile a{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-mobile a.active{
  background: rgba(200,148,45,.14);
  color: var(--gold);
  font-weight: 700;
}

/* Buttons (falls noch nicht vorhanden) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  border: 0;
}
.btn-gold{
  background: var(--gold);
  color: #fff;
}

/* HERO */
.hero{
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  filter: brightness(1.02) contrast(1.03);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to right,
    rgba(15, 61, 58, 0.45) 0%,
    rgba(15, 61, 58, 0.35) 35%,
    rgba(15, 61, 58, 0.20) 65%,
    rgba(15, 61, 58, 0.05) 100%
  );
  z-index:1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.92); 
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.35) 40%,
      rgba(0,0,0,.12) 100%
    ),
    url("../img/about.jpg") center / cover no-repeat;
}

/* Hero: dezenter Farbfilm + ruhiger Look */
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: var(--spa-overlay);
  pointer-events:none;
}

.hero-inner{
  position: relative;
  padding: 72px 0 78px;
  max-width: 760px;
}

/* FIX: Hero-Overlay darf keine Klicks blockieren */
.hero::before,
.hero-bg {
  pointer-events: none;
}

/* FIX: Inhalt im Hero muss über dem Overlay liegen */
.hero-inner {
  position: relative; /* hast du schon, schadet nicht */
  z-index: 2;
}

.hero h1{
  margin: 0 0 28px;
  color: rgba(255, 250, 242, 0.92);  /* warmes Off-White */
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;                   /* kleiner = edler */
  line-height: 1.18;
  font-weight: 400;                  /* ganz bewusst leicht */
  letter-spacing: 0.015em;
  text-shadow: 0 4px 14px rgba(0,0,0,.22);
}


.hero-light{
  font-weight: 400;
  opacity: .9;
}

/* ===== FOOTER im Stil des Beispiel-Fotos ===== */
.footer-photo{
  margin-top: 50px;
  background: var(--green);
  color: rgba(255,255,255,.90);
  padding: 48px 0 32px;   /* mehr Luft oben + unten */
}

.footer-photo::before{
  content:"";
  display:block;
  height:1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  margin-bottom: 32px;
}

.footer-photo-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 26px;
  align-items: center;
  padding-bottom: 30px;
}

.fp-col{ min-width: 0; }

.fp-head{
  font-size: 12px;                 /* minimal kleiner */
  font-weight: 600;
  letter-spacing: 0.14em;          /* mehr Luft = edler */
  text-transform: uppercase;
  color: rgba(255,255,255,.70);    /* etwas softer */
  margin-bottom: 14px;
}

.fp-text{
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  margin: 6px 0;
}

.footer-photo a{
  color: var(--gold);
  text-decoration: none;
  text-underline-offset: 4px;
}
.footer-photo a:hover{
  text-decoration: underline;
}

/* Center brand */
.fp-center{
  text-align: center;
}

.fp-logo{
  width: 120px;
  height: 120px;
  object-fit: contain;
  display:block;
  margin: 0 auto 10px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.18));
}

.fp-brand{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;   /* etwas eleganter */
  line-height: 1.1;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 6px 0 8px;
}

.fp-sub{
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.70);
  margin-bottom: 14px;
}

.fp-left, .fp-right{
  align-self: center;
}

.fp-right{
  text-align: right;
  justify-self: end;
  padding-top: 12px;   /* <- das ist der entscheidende Punkt */
 }


/* Social icons */
.fp-social{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-top: 6px;
}

.fp-social-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  transition: transform .15s ease, background .15s ease;
}

.fp-social-icon svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.fp-social-icon:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
}

/* Bottom bar like in photo (lighter strip) */
.footer-photo-bottom{
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  background: #f8f5ef;
  color: #2b2b2b;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,.05);
}

.fp-bottom-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  font-size: 15px;
}

.fp-bottom-links{
  display:flex;
  gap: 22px;
}

.footer-photo-bottom a{
  color: rgba(0,0,0,.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page{
  padding: 28px 0 42px;
}

/* Headline + Link rechts */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin: 18px 0 14px;
}

.section-head h2{
  margin:0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.link-more{
  font-size: 12px;
  color: var(--muted);
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* =========================================================
   CARD SYSTEM (Basis + Varianten)
   ========================================================= */

/* Basis: gilt für alle Cards */
.card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.04);
  background: #fff;
}

/* ---------- Variante: Leistungen (Bild 1) ---------- */
.card--service{
  padding: 0; /* wichtig: Bild oben bündig */
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card--service:hover{
  transform: translateY(-4px);
  box-shadow:
    0 10px 24px rgba(0,0,0,.08),
    0 26px 60px rgba(0,0,0,.08);
}

/* Bildbereich oben */
.card--service .card-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #ddd center/cover no-repeat;
}

/* Falls du <img> nutzt */
.card--service .card-img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Textbereich */
.card--service .card-body{
  padding: 18px 18px 20px;
}

.card--service h3{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 600;
}

.card--service p{
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(0,0,0,.70);
}

.card--service .card-link{
  font-size: 16px;
  font-weight: 700;
}

/* ---------- Variante: Bewertungen ---------- */
.card--review{
  padding: 20px;
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 10px 24px rgba(0,0,0,.08),
    0 26px 60px rgba(0,0,0,.08);
}

.card-img{
  width: 100%;
  aspect-ratio: 16 / 9;     /* Das ist der Gamechanger */
  background: #ddd center/cover no-repeat;
}

.card-body{
  padding: 12px 14px 14px;
}

.card h3{
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
}

.card p{
  margin: 0 0 12px;
  font-size: 16.5px;
  color: rgba(0,0,0,.72);
  line-height: 1.8;
}

.card-link{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Kartenbilder (Leistungen etc.) */
.card img{
  filter: var(--spa-filter);
}

/* ===== Gutschein Karte ===== */

.voucher{
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;              /* wichtig */
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
  background: #fff;
}

.voucher:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,.08);
}

/* Bild links */
.voucher-img{
  background: url("../img/Banner\ 898x342.jpg") center/cover no-repeat;
  min-height: 260px;               /* ← Höhe hier steuern */
}

/* Inhalt rechts */
.voucher-content{
  padding: 32px 40px;              /* weniger Padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.voucher-content h3{
  margin:0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Durchschnittsbox */
.rating-summary{
  min-width: 240px;
  border: 2px solid rgba(201,162,39,.25);
  background: linear-gradient(145deg, #fffdf6, #ffffff);
}
.rating-summary__top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}
.rating-summary__value{
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #C9A227;
}
.rating-summary__meta{
  display:flex;
  flex-direction:column;
  gap: 4px;
}

/* Formular embed */
.review-form .btn-full{ width:100%; margin-top: 12px; }

.form-embed{
  width:100%;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.72);
}

/* iframe Höhe: ggf. anpassen */
.form-embed iframe{
  width:100%;
  height: 720px;
  border: 0;
  display:block;
}
.service-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
  color: #111;
}

.service-cta{
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 16px;
  box-shadow: 0 14px 26px rgba(0,0,0,.16);
}

.service-text{
  margin: 0 0 18px;
  max-width: 95ch;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(0,0,0,.70);
}

/* Preise wie im Screenshot */
.price-list{
  margin-top: 22px;
  border-top: 1px solid rgba(0,0,0,.10);
}

.price-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,.10);
  font-size: 18px;
}

.price-left{
  color: rgba(0,0,0,.85);
}

.price-right{
  font-weight: 800;
  color: #111;
}

/* ===== Leistungen & Preise (mit Bild + Icon je Massageart) ===== */
.page-head{
  padding: 22px 0 10px;
}
.page-head h1{
  margin:0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.4vw + 18px, 52px);
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.1;
}
.page-head p{
  margin: 0;
  font-size: clamp(15px, 0.6vw + 12px, 18px);
  color: rgba(0,0,0,.55);
  line-height: 1.6;
  max-width: 80ch;
}

.service-block{
  margin: 18px 0 22px;
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 18px;
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.service-media{
  position: relative;
  background: center/cover no-repeat;
  min-height: 260px;
}

.service-content{
  padding: 18px 18px 14px;
}

.service-topline{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
}

.service-topline h2{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.service-desc{
  margin: 10px 0 14px;
  color: rgba(0,0,0,.70);
  font-size: 16px;
  line-height: 1.85;
}

.price-list.compact{
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,.10);
}

.price-list.compact .price-row{
  padding: 14px 0;
  font-size: 16px;
}

.price-list.compact .price-right{
  font-weight: 800;
}

/* ===== Über uns ===== */
.about{
  display:grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-media{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.05);
  overflow: hidden;
  max-height: 420px;      /* <-- kontrolliert die Bildgröße */
  align-self: center;     /* mittig zur Textspalte */
}

.about-text{
  max-width: 72ch;               /* macht den Text leichter */
}

.about-text p{
  margin: 0 0 18px;
  color: rgba(0,0,0,.66);
  line-height: 1.8;
  font-size: clamp(16px, 1.05vw + 12px, 19px);
  max-width: 90ch;
  margin: 0 0 14px;
}

.about-italic{
  margin-top: 22px;
  font-style: italic;
  font-size: clamp(16px, 1.05vw + 12px, 19px);
  line-height: 1.85;
  color: #0f3d3a;
}

.about-link{
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
.about-link:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Bildblock begrenzen (damit es NICHT riesig wird) */
.about-media{
  justify-self: end;
  width: 100%;
 }

.about-media img{
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ===== Rechtliches (Impressum / Datenschutz) ===== */

.legal{
  padding-top: 10px;
}

.legal-content{
  max-width: 75ch;
  padding: 18px 0 40px;
}

.legal-content h2{
  font-size: 18px;
  margin: 28px 0 8px;
  font-weight: 600;
}

.legal-content p{
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(0,0,0,.70);
  margin: 0 0 12px;
}

/* ===== Termin buchen ===== */
.appt-card{
  max-width: 720px;
  margin: 4px auto 50px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  padding: 28px 28px 26px;
}

.appt-card h2{
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.15;
}

.appt-lead{
  margin: 0 0 18px;
  color: rgba(0,0,0,.65);
  line-height: 1.8;
  font-size: 15px;
}

.appt-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

.btn-outline{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  color: var(--text);
}

.btn-outline:hover{
  border-color: rgba(0,0,0,.18);
}

.appt-block{
  margin-top: 18px;
}

.appt-block h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.appt-lines{
  line-height: 1.8;
  color: rgba(0,0,0,.70);
  font-size: 14.5px;
}

.appt-phone{
  margin-top: 6px;
  font-weight: 800;
  color: #111;
}

.appt-note{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: rgba(0,0,0,.55);
}

.appt-muted{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0,0,0,.65);
}

.appt-disabled{
  opacity: .7;
  cursor: not-allowed;
  box-shadow: none;
}

.appt-link{
  display: inline-block;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.appt-link:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Termin Seitenkopf innerhalb Card */
.appt-head{
  margin: 10px 0 18px;
  margin-bottom: 22px;
}

.appt-head h1{
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.05;
}

.appt-head p{
  margin: 0;
  font-size: 14px;
  color: rgba(0,0,0,.55);
  letter-spacing: .02em;
}

/* ===== Gutscheine Seite ===== */
.voucher-page{
  margin-top: 14px;
}

/* (Duplikate der Rating-/Embed-Regeln entfernt; konsolidiert oben) */
.step-num{
  display:grid;
  place-items:center;
  background: rgba(200,148,45,.16);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 10px;
}

.card h3{
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.step-card p{
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(0,0,0,.65);
}

/* FAQ */
.voucher-faq{
  margin: 28px 0 40px;
  max-width: 900px;
}

.faq-item{
  background:#fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
  padding: 12px 14px;
  margin-bottom: 12px;
}

.faq-item summary{
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-body{
  margin-top: 10px;
  color: rgba(0,0,0,.66);
  line-height: 1.8;
  font-size: 14px;
}

/* ===== Shop Preview (für spätere Shop-Anbindung) ===== */
.shop-preview{
  margin: 34px 0 40px;
}

.shop-head h2{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 6px;
}

.shop-head p{
  margin: 0 0 14px;
  color: rgba(0,0,0,.60);
  line-height: 1.8;
  font-size: 18.5px;
}

.shop-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shop-card{
  position: relative;
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
}

.shop-card-body{
  padding: 18px 16px 16px;
}

.shop-card h3{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
}

.shop-card p{
  margin: 0 0 12px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(0,0,0,.65);
}

.shop-price{
  font-weight: 800;
  color: rgba(0,0,0,.78);
  margin-bottom: 12px;
}

.shop-badge{
  position:absolute;
  top: 12px;
  left: 12px;
  background: rgba(200,148,45,.18);
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.shop-note{
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(0,0,0,.55);
}

/* ===== Kontakt (vereinfachte Version) ===== */

/* Kontakt – Layout + Typografie (Desktop) */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center; /* rechte Karte mittig zur linken Spalte */
}

.contact-simple h1{
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
}

.contact-intro{
  font-size: clamp(16px, 0.7vw + 12px, 18px);
  line-height: 1.55;
  margin-bottom: 36px;
  color: var(--muted);
}

.contact-left h2,
.contact-card h2{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.contact-left p,
.contact-note,
.contact-muted{
  font-size: 18px;
  line-height: 1.75;
}

.contact-simple{
  padding: 40px 0 60px;
}

/* Karte im Grid nicht zentrieren und nicht begrenzen */
.contact-grid .contact-card{
  margin: 0;
}

.contact-left h2{
  font-size: var(--fs-h2);
  margin-bottom: 20px;
}

.contact-left p{
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-block{
  margin-bottom: 18px;
}

.contact-label{
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-link{
  color: var(--gold);
  text-decoration: none;
}

.contact-link:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-note{
  font-style: italic;
  color: rgba(0,0,0,.65);
}

.contact-muted{
  margin-top: 18px;
  color: rgba(0,0,0,.65);
}

.contact-cta{
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.contact-cta:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Formular-Karte */

.contact-card{
  position: relative;
  margin: 0;
  background: linear-gradient(to bottom, #ffffff, #fcfcfc);
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.05);
  padding: 24px;
  max-width: none;
  align-self: center;
}

/* Goldlinie oben */
.contact-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  border-radius: 2px;
}


.contact-card h2{
  font-size: var(--fs-h2);
  margin-bottom: 24px;
}

.contact-form{
  display: grid;
  gap: 14px;
}

.contact-form label span{
  font-size: 16px;
  font-weight: 500;
  color: rgba(0,0,0,.6);
  margin-bottom: 6px;
  display:block;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  font: inherit;
  font-size: 16px;
}

.contact-form textarea{
  min-height: 110px;
  resize: vertical;
}

.contact-form .btn{
  width: fit-content;
  padding: 10px 18px;
  font-size: 15px;
}

/* =========================
   Bewertungen Seite
   ========================= */
.reviews-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}

.reviews-list{
  display: grid;
  gap: 12px;
}

.review-card{
  border-radius: 20px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
  transition: all .25s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.review-top{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 6px;
}

.stars{
  letter-spacing: 2px;
  font-size: 14px;
  white-space: nowrap;
}

.review-meta{
  margin-top: 10px;
  font-size: 13px;
  opacity: .75;
}

.review-form.card{
  padding: 16px;
}

.review-form .form-label{
  display:block;
  margin: 12px 0 6px;
  font-size: 14px;
  opacity: .9;
}

.review-form input,
.review-form select,
.review-form textarea{
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.9);
  font: inherit;
}

.review-form textarea{
  resize: vertical;
}

.review-form .tiny{
  margin-top: 10px;
  font-size: 12px;
  opacity: .7;
}

/* =========================
   Bewertungen – Styling
   ========================= */

.section-head--reviews{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.card--hover{
  transition: transform .18s ease, box-shadow .18s ease;
}
.card--hover:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

.review-card .review-top{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 6px;
}

.review-name{ font-weight: 650; }

.review-text{
  margin: 10px 0 0;
  opacity: .92;
  line-height: 1.5;
}

.stars--gold{
  color: #C9A227; /* warmes Gold */
  text-shadow: 0 1px 0 rgba(0,0,0,.10);
}

/* Duplikate der Rating-/Embed-Regeln entfernt (konsolidiert oben) */

/* =========================
   Luxus Bewertungs-Button
   ========================= */

.luxury-btn{
  display:block;
  text-align:center;
  margin-top:20px;
  padding:14px 22px;
  font-size:15px;
  font-weight:600;
  border-radius:40px;
  background: linear-gradient(135deg, #C9A227, #E6C65C);
  color:#ffffff;
  border:none;
  box-shadow: 0 8px 24px rgba(201,162,39,.35);
  transition: all .25s ease;
}

.luxury-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(201,162,39,.45);
}

/* Rating/summary-Regeln konsolidiert oberhalb (Duplikat entfernt) */

.stars--gold{
  font-size:16px;
  letter-spacing:3px;
  color:#C9A227;
}

/* FORCE-FIX: Leistungen-Karten dürfen nie "glasig" sein */
.cards .card{
  backdrop-filter: none !important;
  background: #fff !important;
  padding: 0 !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.06) !important;
  border: 1px solid rgba(0,0,0,.04) !important;
}

/* ================================
   Gutschein-Seite: eigener Style
   (betrifft nur .voucher.voucher-page)
================================ */

.voucher.voucher-page{
  /* Layout wie “Bild 1” */
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;            /* Bild & Inhalt gleich hoch */

  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
  background: #fff;

  min-height: 360px;              /* Höhe der Karte -> z.B. 340–420 testen */
}

/* Bild links: füllt die komplette Kartenhöhe */
.voucher.voucher-page .voucher-img{
  background: url("../img/Banner\ 900x359.jpg") center/cover no-repeat; /* <- DEIN Bildname */
  min-height: 360px;              /* muss zur Kartenhöhe passen */
  border-radius: 18px 0 0 18px;
}

/* Textbereich rechts: mittig und sauber */
.voucher.voucher-page .voucher-content{
  padding: 34px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Buttons: wenn sie umbrechen sollen, aber schön bleiben */
.voucher.voucher-page .voucher-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   HERO (Startseite) – Upgrade
   ========================= */

.hero--home{
  min-height: 520px;           /* Höhe Desktop */
  border-bottom: 1px solid rgba(0,0,0,.06);
}

 

.hero-kicker{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.hero-em{
  color: rgba(255, 250, 242, 0.96);
  font-weight: 500;
}

.hero-lead{
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,.86);
  max-width: 62ch;
  text-shadow: 0 4px 14px rgba(0,0,0,.18);
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-outline.hero-btn{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.92);
}

.btn-outline.hero-btn:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.36);
}

.btn-primary {
    background: linear-gradient(135deg, #d4a537, #b8860b);
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-badges{
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.hero-badges li{
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.16);
}

/* Bildausschnitt feinsteuern (wichtig, solange dein Banner Platzhalter ist) */
.hero-bg{
  background-position: center 55%;  /* zeigt meist mehr “Mitte/unten” */
}

.page-head h1{
  margin: 0 0 6px;
}
.page-head p{
  margin: 0;
  opacity: .8;
}

.page-top-space{
  height: 12px;
}

/* =========================
   Startseite: Galerie
   ========================= */
.home-gallery{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 10px 0 28px;
}

.gallery-item{
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}

.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(15, 61, 58, .08);
  pointer-events:none;
}

.gallery-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.gallery-item img{
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* =========================
   Startseite: Bewertungen
   ========================= */
.section-head--reviews-home{
  margin-top: 6px;
}

.home-reviews{
  margin: 10px 0 8px;
}

.home-reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-reviews-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 30px;
}

/* =========================
   Galerie-Seite
========================= */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}

.gallery-img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .3s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);

  /* Spa-Look anwenden */
  filter: var(--spa-filter);
}

.gallery-img:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

/* Lightbox */

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity .25s ease;
}

.lightbox-img{
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

.lightbox-close{
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox:not([hidden]){
  opacity: 1;
}

/* hidden muss Lightbox wirklich ausblenden */
.lightbox[hidden]{
  display: none !important;
}

/* =========================
   Einheitlicher Spa-Look (Bilder)
   ========================= */
/* (Variablen oben im Datei-Kopf zusammengefasst) */

/* Galerie-Kacheln (Startseite + galerie.html) */
.gallery-item img,
.gallery-img{
  filter: var(--spa-filter);
  transition: filter .25s ease, transform .25s ease, box-shadow .25s ease;
}

/* optional: beim Hover etwas „klarer“ */
.gallery-item:hover img,
.gallery-img:hover{
  filter: brightness(.98) contrast(1.08) saturate(.95) sepia(.10);
}

.loyalty {
  padding: 60px 0;
}

.loyalty-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.loyalty-text {
  flex: 1;
}

.loyalty-image {
  flex: 1;
}

.loyalty-image img {
  width: 100%;
  border-radius: 12px;
}

/* entfernt: doppelte/fehlplatzierte Variable (konsolidiert in :root) */

/* =========================
   MOBILE (FINAL) <= 900px
   -> diesen Block ans ENDE der style.css setzen
   -> danach alle anderen @media (max-width: 900px) Blöcke löschen
   ========================= */
@media (max-width: 900px){

  /* Layout */
  .container{
    width: min(var(--container), calc(100% - 24px));
  }
  .page{
    padding: 18px 0 28px;
  }

  /* Navbar */
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }

  .navbar-inner{
    gap: 18px;
    padding: 10px 0;
  }

  .brand-logo{
    width: 64px;
    height: 64px;
  }
  .brand-text{
    font-size: 12px;
    letter-spacing: .14em;
  }

  /* Hero */
  .hero{ min-height: 300px; }
  .hero-inner{ padding: 48px 0 54px; }
  .hero h1{
    font-size: 32px;
    line-height: 1.14;
    margin: 0 0 18px;
  }

  /* Buttons */
  .btn{
    font-size: 15px;
    padding: 10px 14px;
  }

  /* Startseite: Section Head */
  .section-head{
    align-items: center;
    margin: 20px 0 12px;
  }
  .section-head h2{
    font-size: 16px;
  }
  .link-more{
    font-size: 12px;
  }

  /* Startseite: Cards */
  .cards{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card-body{
    padding: 14px 14px 16px;
  }
  .card h3{
    font-size: 15px;
    margin: 0 0 6px;
  }
  .card p{
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 10px;
  }
  .card-link{
    font-size: 13px;
  }

  /* Gutschein */
  .voucher{
    grid-template-columns: 1fr;
    max-height: none;
  }
  .voucher-img{
  aspect-ratio: 16 / 9;
  border-radius: 18px 18px 0 0; /* oben abgerundet */
}
  .voucher-content{
    padding: 16px;
  }
  .voucher-content h3{
    font-size: 15px;
  }
  .voucher-content p{
    font-size: 16.5px;
    line-height: 1.6;
  }
  .voucher-content .btn{
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 18px;
  }

  /* Leistungsseite (Tabs + große Card) */
  .tabs{
    overflow:auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 12px 0 10px;
  }
  .tab{
    font-size: 13px;
    padding: 9px 14px;
    white-space: nowrap;
  }

  .service-card{
    padding: 18px 16px;
    border-radius: 16px;
  }
  .service-top{
    flex-direction: column;
    align-items:flex-start;
  }
  .service-title{
    font-size: 30px;
  }
  .service-text{
    font-size: 14px;
    line-height: 1.85;
  }
  .service-cta{
    width: 100%;
    justify-content:center;
    font-size: 15px;
    padding: 11px 16px;
  }
  .price-row{
    font-size: 15px;
    padding: 14px 0;
  }

  /* Leistungen & Preise (Bildblöcke) */
  .page-head h1{
    font-size: 34px;
  }
  .page-head p{
    font-size: 13px;
  }
  .service-block{
    grid-template-columns: 1fr;
  }
  .service-media{
    min-height: 190px;
  }
  .service-topline{
    flex-direction: column;
    align-items:flex-start;
  }
  .service-topline h2{
    font-size: 28px;
  }
  .service-desc{
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
  }
  .service-topline .btn{
    width: 100%;
    justify-content:center;
  }

  /* Footer (Foto-Footer) */
  .footer-photo{
    padding-top: 26px;
    margin-top: 40px;
  }
  .footer-photo-grid{
    grid-template-columns: 1fr;
    text-align: left;
    align-items: start;
    gap: 18px;
  }
  .fp-center{
    text-align: left;
  }
  .fp-social{
    justify-content:flex-start;
  }
  .fp-brand{
    font-size: 32px;
  }
  .fp-head{
    font-size: 13px;
  }
  .fp-text{
    font-size: 13px;
  }
  .fp-bottom-inner{
    flex-direction: column;
    align-items:flex-start;
    gap: 8px;
    font-size: 12px;
  }

  /* Über uns */
  .about{
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .about-text p{
    font-size: 14px;
    line-height: 1.85;
  }

  .about-media{
    max-height: 320px; /* optional, damit das Bild nicht zu hoch wird */
    justify-self: start;
    max-width: 100%;
  }

  .about-media img{
    height: 240px;
  }

  .legal-content{
    max-width: 100%;
  }

  .legal-content h2{
    font-size: 16px;
  }

  .legal-content p{
    font-size: 14px;
    line-height: 1.8;
  }
    /* Termin buchen */
  .appt-embed{
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  background: #fff;
}

.appt-embed iframe{
  display:block;
  width:100%;
  height: 1000px;
}

  .appt-card{
    padding: 18px 16px;
    margin: 14px auto 30px;
  }
  .appt-card h2{
    font-size: 24px;
  }
  .appt-actions .btn{
    width: 100%;
    justify-content: center;
  }

    .appt-head h1{
    font-size: 34px;
  }
  .appt-head p{
    font-size: 13px;
  }

   /* Gutscheine */
  .voucher-actions .btn{
    width: 100%;
    justify-content:center;
  }

  .steps-grid{
    grid-template-columns: 1fr;
  }

  .voucher-steps h2,
  .voucher-faq h2{
    font-size: 24px;
  }
    /* Shop Preview */
  .shop-grid{
    grid-template-columns: 1fr;
  }
  .shop-head h2{
    font-size: 24px;
  }
  .shop-card .btn{
    width: 100%;
    justify-content:center;
  }
      /* Kontakt */
  .contact-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card{
    padding: 16px;
  }

  .contact-form .btn{
    width: 100%;
    justify-content: center;
  }
    .contact-simple h1{
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .contact-intro{
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .contact-left h2,
  .contact-card h2{
    font-size: 20px;
    margin-bottom: 16px;
  }

  .contact-left p,
  .contact-note,
  .contact-muted{
    font-size: 14px;
    line-height: 1.85;
  }

  .contact-form label span{
    font-size: 13px;
  }
  
  .appt-embed iframe{ height: 1100px; } 

  .reviews-grid{ grid-template-columns: 1fr; }

  /* Responsive */
  .cards{ grid-template-columns:repeat(2, minmax(0, 1fr)) !important; }

  .cards{ grid-template-columns:1fr !important; }

  .home-gallery{
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img{
    height: 110px;
  }
  .home-reviews-grid{
    grid-template-columns: 1fr;
  }

  .reviews-grid{ grid-template-columns: 1fr; }
  .rating-summary{ width:100%; }

  .hero--home{ min-height: 420px; }
  .hero-inner{ padding: 52px 0 56px; }
  .hero-lead{ font-size: 15.5px; }
  .hero-badges{ gap: 10px; }

  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-img{
    height: 220px;
  }
} 
