:root{
  --bg:#fbf8f3;
  --panel:#fffdf9;
  --ink:#241f1a;
  --muted:#746b61;
  --line:#e8dfd2;
  --accent:#b58a54;
  --accent2:#5b4030;
  --soft:#f2e8dc;
  --ok:#1e7f54;
  --danger:#b14343;
  --radius:22px;
  --shadow:0 22px 70px rgba(36,31,26,.10);
  --max:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(var(--max),calc(100% - 40px));
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
}

.skip:focus{
  left:20px;
  top:20px;
  background:#fff;
  padding:12px 16px;
  border-radius:12px;
  z-index:99;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(251,248,243,.86);
  -webkit-backdrop-filter:blur(16px);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(232,223,210,.7);
}

.nav{
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.02em;
  line-height:1;
}

.logo{
  height:76px;
  width:auto;
  display:block;
}

.brandmark{
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--accent),#ead6bd);
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  box-shadow:0 12px 30px rgba(181,138,84,.28);
}

.navlinks{
  display:flex;
  gap:22px;
  align-items:center;
  color:var(--muted);
  font-weight:600;
  font-size:.95rem;
}

.navlinks a:hover{
  color:var(--ink);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid transparent;
  border-radius:999px;
  padding:13px 19px;
  font-weight:800;
  letter-spacing:.01em;
  cursor:pointer;
  transition:.2s ease;
  background:var(--ink);
  color:#fff;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(36,31,26,.18);
}

.btn.secondary{
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}

.btn.gold{
  background:var(--accent);
  color:#fff;
}

.mobile-toggle{
  display:none;
  background:transparent;
  border:0;
  font-size:28px;
  color:var(--ink);
}

.hero{
  padding:74px 0 46px;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-240px -220px auto auto;
  width:560px;
  height:560px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(181,138,84,.25),transparent 70%);
  pointer-events:none;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,0.95fr) minmax(0,1.05fr);
  gap:clamp(64px,8vw,120px);
  align-items:start;
}

.hero-grid > div:first-child{
  min-width:0;
  position:relative;
  z-index:2;
  padding-top:0;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:900;
  color:var(--accent);
  font-size:.78rem;
  margin-top:0;
}

.h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.2rem,5vw,5.2rem);
  line-height:.94;
  margin:14px 0 18px;
  letter-spacing:-.055em;
}

.lead{
  font-size:clamp(1.02rem,1.5vw,1.22rem);
  color:var(--muted);
  max-width:34rem;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:30px;
}

.trust div{
  background:rgba(255,253,249,.72);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}

.trust strong{
  display:block;
  font-size:1.05rem;
}

.trust span{
  display:block;
  color:var(--muted);
  font-size:.9rem;
}

.visual-card{
  width:min(100%,720px);
  justify-self:end;
  align-self:start;
  aspect-ratio:4 / 3;
  padding:0;
  overflow:hidden;
  border-radius:32px;
  background:#fff;
  border:1px solid rgba(232,223,210,.8);
  box-shadow:var(--shadow);
  position:relative;
  margin-top:0;
}

.hero-image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center center;
}

.image-placeholder {
  aspect-ratio: 4/5;
  border-radius: 26px;
  overflow: hidden;
  background: var(--soft);
}
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.badge{
  position:absolute;
  left:-18px;
  bottom:34px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 14px 36px rgba(36,31,26,.12);
  max-width:250px;
}

.section{
  padding:70px 0;
}

.section.alt{
  background:#fffdf9;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-head{
  display:flex;
  justify-content:space-between;
  gap:28px;
  align-items:end;
  margin-bottom:30px;
}

.kicker{
  color:var(--accent);
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
  font-size:.78rem;
}

.h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.1rem,4vw,3.9rem);
  line-height:1;
  margin:9px 0 0;
  letter-spacing:-.035em;
}

.section-head p{
  color:var(--muted);
  max-width:520px;
  margin:0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 14px 44px rgba(36,31,26,.06);
}

.card h3{
  font-size:1.22rem;
  margin:0 0 10px;
}

.card p{
  color:var(--muted);
  margin:0;
}

.card .icon{
  width:46px;
  height:46px;
  border-radius:15px;
  background:var(--soft);
  display:grid;
  place-items:center;
  margin-bottom:18px;
  color:var(--accent2);
  font-size:22px;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  counter-reset:step;
}

.step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  position:relative;
}

.step:before{
  counter-increment:step;
  content:"0" counter(step);
  display:inline-flex;
  margin-bottom:18px;
  color:var(--accent);
  font-weight:900;
}

.prices{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.price-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(36,31,26,.07);
}

.price-head{
  padding:26px;
  background:linear-gradient(135deg,#fff,#f1e5d7);
  border-bottom:1px solid var(--line);
}

.price-head h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:2rem;
  margin:0;
}

.price-table{
  width:100%;
  border-collapse:collapse;
}

.price-table th,
.price-table td{
  padding:16px 18px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}

.price-table th{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
}

.price-table td:last-child,
.price-table th:last-child{
  text-align:right;
  white-space:nowrap;
  font-weight:900;
}

.note{
  font-size:.93rem;
  color:var(--muted);
  margin-top:18px;
}

.gallery{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:16px;
}

.gallery .image-placeholder{
  aspect-ratio:1/1;
}

.gallery .large{
  grid-row:span 2;
}

.quote{
  background:var(--ink);
  color:#fff;
  border-radius:34px;
  padding:46px;
}

.quote p{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.6rem,3vw,3.1rem);
  line-height:1.08;
  margin:0;
}

.quote small{
  display:block;
  margin-top:20px;
  color:#d8cfc3;
}

.form-wrap{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:24px;
  align-items:start;
}

.contact-panel{
  background:var(--ink);
  color:#fff;
  border-radius:28px;
  padding:30px;
}

.contact-panel p{
  color:#d8cfc3;
}

.contact-list{
  display:grid;
  gap:13px;
  margin-top:24px;
}

.contact-list a,
.contact-list span{
  display:block;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.16);
}

form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.field{
  display:grid;
  gap:7px;
}

.field.full{
  grid-column:1/-1;
}

label{
  font-weight:800;
  font-size:.93rem;
}

input,
select,
textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:13px 14px;
  font:inherit;
  background:#fff;
  color:var(--ink);
}

textarea{
  min-height:150px;
  resize:vertical;
}

input:focus,
select:focus,
textarea:focus{
  outline:3px solid rgba(181,138,84,.22);
  border-color:var(--accent);
}

.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  font-size:.92rem;
}

.check input{
  width:auto;
  margin-top:5px;
}

.legal{
  max-width:900px;
}

.legal h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:3rem;
}

.legal h2{
  margin-top:32px;
}

.legal p,
.legal li{
  color:var(--muted);
}

.footer{
  padding:38px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}

.footer a{
  text-decoration:underline;
  text-underline-offset:4px;
}

/* Aktiver Navlink */
.navlinks a[aria-current="page"]{
  color:var(--ink);
  font-weight:900;
  text-decoration:underline;
  text-underline-offset:4px;
}

/* preise.html Inline-Styles (Finding 9) */
.price-card{
  display:flex;
  flex-direction:column;
}
.price-features{
  margin:1rem 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.55rem;
}
.price-features li{
  display:flex;
  align-items:flex-start;
  gap:.7rem;
  padding:.7rem .9rem;
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  background:rgba(255,255,255,.52);
  color:#3f3f3f;
  line-height:1.3;
}
.price-features .check{
  flex:0 0 auto;
  width:1.05rem;
  height:1.05rem;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(124,93,64,.10);
  border:1px solid rgba(124,93,64,.18);
  color:#7c5d40;
  font-size:.72rem;
  font-weight:700;
  margin-top:.12rem;
  box-shadow:none;
}
.price-features .feature-text{
  display:block;
  font-weight:600;
  color:#3d3d3d;
}
.price-features .feature-sub{
  display:block;
  font-size:.9rem;
  color:rgba(61,61,61,.68);
  margin-top:.12rem;
}
.price-note{
  margin-top:1rem;
  font-size:.95rem;
  color:rgba(51,51,51,.82);
}
.price-features-wrap{
  padding:1rem 1rem 1.25rem;
  margin-top:auto;
}
.spacer-row td{
  height:64px;
  padding:0;
  border:none;
  background:transparent;
}
@media(max-width:700px){
  .price-features{gap:.5rem;}
  .price-features li{padding:.68rem .8rem;}
  .spacer-row td{height:52px;}
}

.pill{
  display:inline-flex;
  padding:7px 11px;
  border-radius:999px;
  background:var(--soft);
  color:var(--accent2);
  font-weight:800;
  font-size:.85rem;
}

.alert{
  padding:16px 18px;
  border-radius:16px;
  margin-bottom:20px;
}

.alert.ok{
  background:#e8f6ef;
  color:var(--ok);
  border:1px solid #c3e9d5;
}

.alert.err{
  background:#fae9e9;
  color:var(--danger);
  border:1px solid #efc3c3;
}

.hidden{
  display:none!important;
}

@media(max-width:900px){
  .nav{
    height:66px;
  }

  .logo{
    height:48px;
  }

  .mobile-toggle{
    display:block;
  }

  .navlinks{
    position:absolute;
    left:20px;
    right:20px;
    top:72px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:18px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    box-shadow:var(--shadow);
  }

  .navlinks.open{
    display:flex;
  }

  .hero-grid,
  .form-wrap{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:44px;
  }

  .visual-card{
    width:100%;
    aspect-ratio:16 / 11;
    justify-self:stretch;
    margin-top:8px;
  }

  .trust,
  .cards,
  .steps,
  .prices{
    grid-template-columns:1fr;
  }

  .section-head{
    display:block;
  }

  .section-head p{
    margin-top:16px;
  }

  .gallery{
    grid-template-columns:1fr;
  }

  .badge{
    position:static;
    margin-top:14px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

}

@media(max-width:520px){
  .container{
    width:min(var(--max),calc(100% - 28px));
  }

  .h1{
    font-size:3rem;
    max-width:none;
  }

  .section{
    padding:52px 0;
  }

  .hero-actions .btn{
    width:100%;
  }

  .visual-card{
    aspect-ratio:4 / 3;
  }

  .price-table th,
  .price-table td{
    padding:14px 12px;
  }

  form{
    padding:20px;
  }

  .legal h1{
    font-size:2.2rem;
  }
}