:root{
  /* Feminine, elegante Salon-Farben (Rose/Champagner) */
  --bg: #fff7f9;
  --bg2:#fff1f6;
  --card:#ffffff;
  --text:#1c1c22;
  --muted:#606070;
  --brand:#d96c8a;      /* Rose */
  --brand2:#f2c1b6;     /* Nude/Blush */
  --line: rgba(20,20,30,.10);
  --shadow: 0 14px 40px rgba(30, 20, 40, .10);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans";
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(217,108,138,.18), transparent 60%),
    radial-gradient(900px 520px at 90% 18%, rgba(242,193,182,.25), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg));
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Top navigation */
.nav{
  position:sticky; top:0; z-index:100;
  background: rgba(255,247,249,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{
  width:46px; height:46px; object-fit:contain;
  border-radius:14px;
  background: #fff;
  border:1px solid var(--line);
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
  padding:6px;
}
.brand .title{line-height:1.1}
.brand .title strong{display:block; font-size:15px; letter-spacing:.2px}
.brand .title span{display:block; color:var(--muted); font-size:12px}

.nav-links{
  display:flex; align-items:center; gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-links a{
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
}
.nav-links a:hover{
  background: rgba(217,108,138,.08);
  border-color: rgba(217,108,138,.18);
  color:var(--text);
}

/* Layout cards */
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero{padding:52px 0 16px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
}
@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr}
}

.hero-card{padding:26px; position:relative; overflow:hidden}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(217,108,138,.20);
  background: rgba(217,108,138,.08);
  color:#5a2a3a;
  font-size:13px;
  font-weight:700;
}
.badge .dot{
  width:10px; height:10px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--brand));
  box-shadow:0 0 18px rgba(217,108,138,.35);
}

.h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.6px;
}
@media (max-width:560px){ .h1{font-size:34px} }

.sub{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0,0,0,.07);
}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(217,108,138,.25);
  color:#fff;
}
.btn.primary:hover{filter: brightness(1.03);}

.side-card{padding:18px}
.side-title{margin:0 0 10px; color:var(--muted); font-size:13px}
.kv{display:grid; gap:10px}
.kv .row{
  display:flex; justify-content:space-between; gap:10px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(217,108,138,.05);
}
.kv .row strong{font-weight:800}
.kv .row span{color:var(--muted); text-align:right}

/* Sections */
.section{padding:24px 0}
.section h2{
  margin:0 0 12px;
  font-size:22px;
  letter-spacing:-.2px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width:960px){ .grid-3{grid-template-columns:1fr} }

.feature{padding:16px}
.feature h3{margin:0 0 8px; font-size:16px}
.feature p{margin:0; color:var(--muted); line-height:1.7}

.notice{
  padding:16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.notice strong{display:block; margin-bottom:4px}
.notice p{margin:0; color:var(--muted); line-height:1.7}

/* Map */
.map-wrap{padding:16px}
.map-placeholder{
  border:1px dashed rgba(217,108,138,.35);
  border-radius:16px;
  background: rgba(217,108,138,.05);
  padding:16px;
  color:var(--muted);
}
.map-iframe{
  width:100%;
  height:340px;
  border:0;
  border-radius:16px;
}

/* Footer */
.footer{
  margin-top:26px;
  padding:18px 0 36px;
  color:var(--muted);
  border-top:1px solid var(--line);
}
.footer a{color:var(--text)}
.footer .links{display:flex; flex-wrap:wrap; gap:12px; margin-top:8px}
.small{font-size:12px; color:var(--muted)}

/* Page content */
.page{padding:28px 0}
.page h1{margin:0 0 10px; font-size:28px}
.page h2{margin:18px 0 10px; font-size:18px}
.page p, .page li{color:var(--muted); line-height:1.8}
.page ul{margin:8px 0 12px}

/* Cookie banner */
.cookie-banner{
  position:fixed; left:14px; right:14px; bottom:14px;
  z-index:1000;
  display:none;
}
.cookie-card{
  max-width:var(--max);
  margin:0 auto;
  padding:14px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.cookie-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:13px;
  flex: 1 1 420px;
}
.cookie-actions{display:flex; gap:10px; flex-wrap:wrap}
.cookie-actions .btn{padding:10px 12px; border-radius:14px; font-weight:800}

/* Floating WhatsApp (optional placeholder) */
.float-wa{
  position:fixed;
  right:16px;
  bottom:88px;
  z-index:900;
}
.float-wa a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background: #25D366;
  color:#fff;
  font-weight:900;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.float-wa a:hover{filter:brightness(1.03)}

/* ===== Galerie ===== */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 960px){
  .gallery-grid{ grid-template-columns: 1fr; }
}
.gallery-item{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
}
.gallery-ph{
  height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color: rgba(90,40,60,.55);
  background:
    radial-gradient(500px 240px at 20% 20%, rgba(217,108,138,.22), transparent 60%),
    radial-gradient(500px 240px at 80% 30%, rgba(242,193,182,.32), transparent 60%),
    #fff;
}
.gallery-cap{
  padding:12px 14px;
  color: var(--muted);
  font-weight:700;
}

/* ===== Preise ===== */
.price-list{
  margin-top:10px;
  display:grid;
  gap:10px;
}
.price-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(217,108,138,.05);
}
.price-item span{ color: var(--muted); }
.price-item strong{ color: var(--text); white-space:nowrap; }
