:root{
  --bg: #d6cec7;
  --paper: #ffffff;
  --text: rgb(66, 60, 56);
  --muted: rgb(120, 112, 106);
  --accent: rgb(187, 149, 120);
  --border: #eadfd5;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --radius: 18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
h1,h2,h3{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  margin: 0 0 10px;
}
h2{text-align:center; font-size: clamp(1.6rem, 2.8vw, 2.1rem);}
a{color:inherit}
.container{ width:min(1100px, calc(100% - 40px)); margin: 0 auto; }

.hero{
  min-height: 520px;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay{
  background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.70), rgba(255,255,255,.35));
  min-height: 520px;
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding: 26px 0; }
.logo{ text-decoration:none; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.nav-links a{ text-decoration:none; color: var(--muted); margin-left: 18px; font-weight: 500; }
.nav-links a:hover{ color: var(--text); }

.hero-content{ display:grid; align-items:center; padding: 30px 0 40px; }
.hero-left h1{ font-size: clamp(2.2rem, 4.2vw, 3.4rem); letter-spacing: .02em; color: var(--accent); }
.subtitle{ margin: 8px 0 18px; color: var(--muted); font-size: 1.05rem; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 20px; border-radius: 10px;
  border: 1px solid var(--border); background: #f2e4d7; color: #5b4436;
  font-weight: 600; cursor:pointer; text-decoration:none; box-shadow: var(--shadow);
}
.btn:hover{ filter: brightness(0.98); }

.hero-wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height: 70px;
  background: var(--bg);
  border-top-left-radius: 100% 60px;
  border-top-right-radius: 100% 60px;
}
.section{ padding: 70px 0; }
.section-soft{ background: #fffaf6; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.lead{ text-align:center; color: var(--muted); margin: 0 0 26px; }

.about{ display:grid; grid-template-columns: 1.2fr 1fr; gap: 26px; align-items:center; }
.img{ width:100%; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.about-text p{ color: var(--muted); line-height:1.7; }
.ticks{ margin: 14px 0 0; padding-left: 18px; color: var(--muted); line-height:1.8; }

.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.card{ background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.card-img{ width:100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body{ padding: 14px 16px 16px; }
.card-body p{ margin: 0 0 12px; color: var(--muted); }
.card-meta{ display:flex; justify-content:space-between; color: var(--accent); font-weight: 600; }

.contact{ display:grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items:start; margin-top: 26px; }
.form{ background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
label{ display:block; font-weight: 600; margin-bottom: 12px; }
input, textarea{ width:100%; margin-top: 8px; padding: 12px 12px; border-radius: 10px; border: 1px solid var(--border); background: #fff; font: inherit; }
textarea{ resize: vertical; }
.contact-info{ background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.info-row{ margin-bottom: 12px; color: var(--muted); }
.info-row a{ color: var(--text); text-decoration:none; border-bottom: 1px dotted var(--border); }
.info-row a:hover{ border-bottom-color: var(--accent); }

.small{ text-align:center; margin-top: 26px; }
.muted{ color: var(--muted); }

@media (max-width: 900px){
  .about{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .nav{ flex-direction: column; gap: 10px; }
}
.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b68b6c; /* passt zu deinem warmen Spa-Ton */
}

@media (max-width: 768px){
  .hero-wave{
    display: none;
  }
}
.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-left img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.footer{
  text-align: center;
  padding: 30px 0;
}

.footer-nav{
  margin-top: 8px;
}

.footer-nav a{
  text-decoration: none;
  color: var(--muted);
  margin: 0 6px;
  transition: 0.2s ease;
}

.footer-nav a:hover{
  color: var(--accent);
}

.footer .divider{
  color: var(--border);
}
.footer { text-align:center; }
#g8 .g8-box{
  background: var(--paper);
  padding: 50px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}

#g8 .g8-image{
  margin: 30px 0;
  text-align: center;
}

#g8 .g8-image img{
  width: 100%;
  max-width: 750px;
  border-radius: var(--radius);
}

#g8 .g8-text{
  margin-top: 20px;
  line-height: 1.8;
  color: var(--muted);
}

#g8 ul{
  padding-left: 20px;
  margin-top: 10px;
}
#headspa .headspa-box{
  background: var(--paper);
  padding: 60px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 1000px;
  margin: 0 auto;
}

#headspa .headspa-text{
  margin-top: 25px;
  line-height: 1.8;
  color: var(--muted);
}

#headspa ul{
  margin-top: 10px;
  padding-left: 20px;
}

#g8 .g8-price{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0 25px;
  font-weight: 600;
  color: var(--accent);
  font-size: 1.1rem;
}