*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f9f9f9;
  --warm-white: #f4f4f4;
  --text: #1e1e1e;
  --text-light: #888888;
  --accent: #a0a8b0;
  --border: #e0e0e0;
  --btn-bg: #2c2c2c;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
}

/* NAV */
nav {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  position: relative;
}
.nav-logo { display: flex; align-items: center; justify-content: center; }
.logo-img { display: block; height: 70px; width: auto; object-fit: contain; }
.nav-cta {
  position: absolute;
  right: 40px;
}
.nav-cta a {
  display: inline-block;
  padding: 9px 22px;
  background: var(--btn-bg);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta a:hover { background: #555; }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 10px 40px;
  border-top: 1px solid var(--border);
}
.nav-links a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; color: var(--text-light); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

/* PROMO BANNER */
.promo-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 12px 40px;
  font-size: 12px;
  letter-spacing: 1px;
}
.promo-banner strong { font-weight: 500; }
.promo-banner a { color: #fff; text-decoration: underline; }

/* HERO */
.hero {
  text-align: center;
  padding: 90px 40px 60px;
  background: #fff;
}
.hero-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text);
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p {
  font-size: 14px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 38px;
  background: var(--btn-bg);
  color: #fff;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.btn:hover { background: #555; }
.btn-outline {
  display: inline-block;
  padding: 13px 38px;
  background: transparent;
  color: var(--btn-bg);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--btn-bg);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.btn-outline:hover { background: var(--btn-bg); color: #fff; }

/* HERO GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  max-width: 860px;
  margin: 56px auto 0;
}
.hero-grid .img-wrap { overflow: hidden; aspect-ratio: 3/4; }
.hero-grid .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* SECTIONS */
section { padding: 80px 40px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.divider { width: 40px; height: 1px; background: var(--accent); margin: 0 auto 44px; }

/* VORTEILE */
.vorteile { background: var(--warm-white); }
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}
.vorteil-card {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}
.vorteil-card:hover { border-top-color: var(--accent); }
.vorteil-icon { font-size: 28px; margin-bottom: 16px; }
.vorteil-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 400; margin-bottom: 10px; }
.vorteil-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ABOUT */
.about { background: #fff; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.about-photos .img-wrap { aspect-ratio: 3/4; overflow: hidden; }
.about-photos .img-wrap:first-child { aspect-ratio: auto; grid-column: span 2; height: 200px; }
.about-photos .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text .section-title { text-align: left; }
.about-divider { width: 40px; height: 1px; background: var(--accent); margin: 0 0 28px; }
.about-text p { font-size: 14px; color: var(--text-light); line-height: 1.9; margin-bottom: 14px; }
.about-text ul { list-style: none; margin: 20px 0; }
.about-text ul li { font-size: 13px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.about-text ul li::before { content: '—'; color: var(--accent); flex-shrink: 0; }

/* GALLERY */
.gallery { background: var(--warm-white); padding: 60px 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-grid .img-wrap { overflow: hidden; aspect-ratio: 2/3; }
.gallery-grid .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-grid .img-wrap:hover img { transform: scale(1.04); }

/* KUNDENSTIMMEN */
.kundenstimmen { background: #fff; }
.kundenstimmen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 860px;
  margin: 0 auto;
}
.kunde-card {
  background: var(--warm-white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kunde-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: -20px;
}
.kunde-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  flex: 1;
  font-style: italic;
}
.kunde-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  font-style: normal;
}
.kunde-result-icon {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

/* METHODE */
.methode { background: var(--warm-white); }
.methode-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 860px;
  margin: 0 auto;
}
.methode-card {
  background: #fff;
  padding: 48px 36px;
}
.methode-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; margin-bottom: 18px; }
.methode-card p { font-size: 13px; color: var(--text-light); line-height: 1.9; }
.ablauf-steps { margin-top: 20px; }
.step { display: flex; gap: 18px; margin-bottom: 20px; align-items: flex-start; }
.step-num { width: 32px; height: 32px; border: 1px solid var(--accent); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; flex-shrink: 0; }
.step-content h5 { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.step-content p { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* FUER WEN */
.fuer-wen { background: #fff; }
.fuer-wen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 760px;
  margin: 0 auto;
}
.fw-card {
  background: var(--warm-white);
  padding: 40px 32px;
  text-align: center;
}
.fw-card .icon { font-size: 36px; margin-bottom: 16px; }
.fw-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.fw-card p { font-size: 13px; color: var(--text-light); line-height: 1.8; }

/* PREISE */
.preise { background: var(--btn-bg); color: #fff; }
.preise .section-title { color: #fff; }
.preise .divider { background: var(--accent); }
.preise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}
.preis-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.preis-card:hover { background: rgba(160,168,176,0.2); }
.preis-card.featured {
  background: #444;
  border-color: #555;
}
.preis-card .duration { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.preis-card.featured .duration { color: rgba(255,255,255,0.8); }
.preis-card .price { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; line-height: 1; margin-bottom: 4px; }
.preis-card .currency { font-size: 18px; vertical-align: super; margin-right: 2px; }
.preis-card .note { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 14px; line-height: 1.6; }
.preis-card.featured .note { color: rgba(255,255,255,0.85); }
.preis-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* TERMIN / KONTAKT */
.termin { background: #fff; }
.termin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.kontakt-info .section-title { text-align: left; }
.kontakt-divider { width: 40px; height: 1px; background: var(--accent); margin: 0 0 32px; }
.kontakt-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.kontakt-icon { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.kontakt-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.kontakt-value { font-size: 14px; color: var(--text); }
.kontakt-value a { color: var(--text); text-decoration: none; }
.kontakt-value a:hover { color: var(--accent); }
.kontakt-wa-icon { width: 22px; height: 22px; object-fit: contain; display: block; }
.whatsapp-row-link { display: inline-flex; align-items: center; opacity: 0.85; transition: opacity 0.2s; }
.whatsapp-row-link:hover { opacity: 1; }
.whatsapp-logo { height: 22px; width: auto; display: block; }

/* BOOKING FORM */
.booking-box {
  border: 1px solid var(--border);
  padding: 40px;
  background: var(--warm-white);
}
.booking-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 28px;
  text-transform: uppercase;
  font-weight: 400;
}
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--accent); }
.form-row textarea { height: 80px; resize: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-box .btn { width: 100%; text-align: center; margin-top: 10px; padding: 14px; }

/* MAP */
.map-section { background: var(--warm-white); padding: 0; }
.map-placeholder {
  height: 260px;
  background: linear-gradient(135deg, #ebebeb 0%, #e0e0e0 50%, #d4d4d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
  flex-direction: column;
  gap: 8px;
}
.map-placeholder span { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #777; }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 24px;
  border: 1px solid #bbb;
  background: #fff;
  color: #555;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.map-link:hover { background: var(--btn-bg); color: #fff; border-color: var(--btn-bg); }

/* FOOTER */
footer {
  background: #000000;
  color: rgba(255,255,255,0.45);
  padding: 40px 40px 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-logo { text-align: center; display: flex; align-items: center; justify-content: center; }
.footer-col h5 { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col p, .footer-col a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; display: block; margin-bottom: 6px; line-height: 1.7; }
.footer-col a:hover { color: var(--accent); }
.footer-col-right { text-align: right; }
.footer-bottom { text-align: center; font-size: 10px; letter-spacing: 1px; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag { animation: fadeUp 0.6s ease both; }
.hero h1 { animation: fadeUp 0.8s ease 0.1s both; }
.hero p { animation: fadeUp 0.8s ease 0.2s both; }
.hero-btns { animation: fadeUp 0.8s ease 0.35s both; }

@media (max-width: 768px) {
  nav { padding: 0; }
  .nav-top { padding: 12px 20px; justify-content: center; }
  .nav-cta { display: none; }
  .logo-img { height: 50px; }
  .nav-links { display: none; }
  section { padding: 60px 20px; }
  .vorteile-grid, .preise-grid { grid-template-columns: 1fr 1fr; }
  .about-inner, .methode-inner, .fuer-wen-inner, .termin-inner, .kundenstimmen-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-col-right { text-align: center; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
