:root{
  --bg:#f7f0e8;
  --bg-soft:#fffaf4;
  --white:#ffffff;
  --text:#2a1a12;
  --muted:#6d5648;
  --primary:#5a3723;
  --primary-dark:#3d2417;
  --accent:#d8bf92;
  --line:#e7d8ca;
  --shadow:0 18px 42px rgba(28,15,8,.10);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(216,191,146,.20), transparent 20%),
    radial-gradient(circle at bottom left, rgba(90,55,35,.06), transparent 20%),
    var(--bg);
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,calc(100% - 34px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(247,240,232,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-mark{
  width:54px;height:54px;border-radius:18px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--primary),#956648);
  color:#fff;font-weight:800;font-size:24px;
  box-shadow:var(--shadow);
}
.brand-text{
  display:flex;
  flex-direction:column;
}
.brand-text strong{
  font-family:"Playfair Display",serif;
  font-size:30px;
  line-height:1;
}
.brand-text small{
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
}
.nav{
  display:flex;
  align-items:center;
  gap:24px;
}
.nav a{
  font-weight:700;
  color:var(--muted);
  transition:.25s ease;
  padding-bottom:6px;
  border-bottom:2px solid transparent;
}
.nav a:hover,
.nav a.active{
  color:var(--text);
  border-color:var(--accent);
}
.nav-toggle{
  display:none;
  border:none;
  width:44px;height:44px;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow);
  font-size:20px;
}

.hero{
  position:relative;
  overflow:hidden;
  padding:92px 0 72px;
  background:
    linear-gradient(135deg, rgba(90,55,35,.96), rgba(52,30,20,.96));
}
.hero-layer{
  position:absolute;
  border-radius:50%;
  filter:blur(16px);
  opacity:.26;
}
.hero-layer-1{
  width:380px;height:380px;
  right:-70px;top:-70px;
  background:#f0d5b1;
}
.hero-layer-2{
  width:300px;height:300px;
  left:-70px;bottom:-70px;
  background:#b88259;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:30px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:800;
  margin-bottom:16px;
}
.eyebrow.dark{color:var(--primary)}
.eyebrow.light{color:#f6dfbf}
.hero-copy{color:#fff}
.hero-copy h1{
  margin:0 0 16px;
  font-family:"Playfair Display",serif;
  font-size:clamp(36px,5vw,68px);
  line-height:1.04;
}
.hero-copy p{
  margin:0 0 24px;
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,.86);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:22px;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-badges span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:700;
  font-size:14px;
}
.hero-visual{
  display:flex;
  justify-content:flex-end;
}
.hero-card{
  width:min(100%,470px);
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  border-radius:30px;
  padding:22px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}
.hero-card img{
  width:100%;
  border-radius:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  transition:.25s ease;
}
.btn-primary{
  background:#fff;
  color:var(--primary-dark);
}
.btn-secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
}
.btn:hover{transform:translateY(-2px)}
.btn.full{width:100%}

.section{
  padding:82px 0;
}
.section.alt{
  background:
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.25)),
    var(--bg-soft);
}
.section-head{
  max-width:820px;
  margin:0 auto 26px;
}
.section-head.center{text-align:center}
.section-head h2{
  margin:0 0 12px;
  font-family:"Playfair Display",serif;
  font-size:clamp(30px,4vw,50px);
}
.section-head p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.8;
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.offer-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:26px;
  padding:20px;
  box-shadow:var(--shadow);
}
.image-frame{
  border-radius:18px;
  overflow:hidden;
  margin-bottom:18px;
  background:#efe2d3;
}
.image-frame img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.offer-card h3{
  margin:0 0 10px;
  font-family:"Playfair Display",serif;
  font-size:28px;
}
.offer-card p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.75;
}
.card-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:12px;
  background:#f8efe5;
  border:1px solid #d6c1ae;
  font-weight:800;
}

.split-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:start;
}
.text-block h2{
  margin:0 0 14px;
  font-family:"Playfair Display",serif;
  font-size:clamp(30px,4vw,48px);
}
.text-block p{
  color:var(--muted);
  line-height:1.85;
  font-size:17px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.stat-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:26px;
  box-shadow:var(--shadow);
}
.stat-box strong{
  display:block;
  font-size:42px;
  color:var(--primary);
  line-height:1;
  margin-bottom:10px;
}
.stat-box span{
  color:var(--muted);
  line-height:1.6;
}

.hours-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hours-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:16px 22px;
  border-bottom:1px solid #ece1d5;
}
.hours-row:last-child{border-bottom:none}
.hours-row span{
  color:var(--muted);
  font-weight:700;
}
.hours-row strong{
  color:var(--text);
}

.contact-section{
  padding:32px 0 48px;
  background:linear-gradient(135deg,#5a3723,#2d1a12);
  color:#fff;
}
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:start;
}
.contact-copy h2{
  margin:0 0 12px;
  font-family:"Playfair Display",serif;
  font-size:clamp(30px,4vw,50px);
}
.contact-copy p{
  margin:0;
  color:rgba(255,255,255,.84);
  line-height:1.8;
}
.contact-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}
.contact-line{
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.contact-line:last-of-type{
  margin-bottom:18px;
}

.site-footer{
  background:#24150e;
  color:#f1dec0;
}
.footer-wrap{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:700;
}

.preise-main{
  background:var(--bg);
}
.preise-hero{
  padding:72px 0 36px;
  background:linear-gradient(135deg,#5a3723,#2d1a12);
  color:#fff;
}
.preise-hero h1{
  margin:0 0 12px;
  font-family:"Playfair Display",serif;
  font-size:clamp(34px,5vw,58px);
}
.preise-hero p{
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:18px;
}
.preise-section{
  padding:42px 0 60px;
}
.preise-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.price-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
}
.price-thumb{
  border-radius:18px;
  overflow:hidden;
  margin-bottom:16px;
  background:#efe2d3;
}
.price-thumb img{
  width:100%;
  aspect-ratio:16/8;
  object-fit:cover;
}
.price-card h2{
  margin:0 0 14px;
  font-family:"Playfair Display",serif;
  font-size:32px;
}
.price-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-bottom:1px solid #ece1d5;
}
.price-row:last-child{border-bottom:none}
.price-row span{color:var(--muted)}
.price-row strong{color:var(--text)}

@media (max-width: 1100px){
  .cards-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 960px){
  .hero-grid,
  .split-grid,
  .contact-grid,
  .preise-grid{
    grid-template-columns:1fr;
  }
  .hero-visual{justify-content:flex-start}
}
@media (max-width: 760px){
  .nav-toggle{
    display:inline-grid;
    place-items:center;
  }
  .nav{
    display:none;
    position:absolute;
    top:84px;
    left:16px;
    right:16px;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    background:rgba(255,250,244,.98);
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:10px;
  }
  .nav.open{display:flex}
  .nav a{
    width:100%;
    padding:14px 12px;
    border-bottom:none;
    border-radius:12px;
  }
  .cards-grid,
  .stats-grid{
    grid-template-columns:1fr;
  }
  .hero{
    padding:70px 0 56px;
  }
  .hero-copy h1{
    font-size:clamp(30px,9vw,44px);
  }
  .hours-row,
  .price-row{
    flex-direction:column;
    align-items:flex-start;
  }
}
