/* ---------- Design System (ruhig, modern, Gold-Akzent) ---------- */
:root{
  --bg: #ffffff;
  --text: #161616;
  --muted: #5a5a5a;
  --line: #e9e6df;

  --gold: #c9a23b;
  --gold-2: #e8d28a;

  --sage: #9aa98a;
  --stone: #f6f3ee;
  --ink: #1d232a;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(0,0,0,.08);

  --container: 1120px;
}

*{ 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;
  line-height:1.55;
}

img{ max-width:100%; height:auto; display:block; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:20px; top:20px; width:auto; height:auto;
  padding:10px 14px; background:var(--stone); border:1px solid var(--line); border-radius:10px;
}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex; gap:12px; align-items:center;
  text-decoration:none; color:inherit;
}
.brand-logo{
  width:46px; height:46px; border-radius:14px;
  border:1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.brand-kicker{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted);
}
.brand-name{
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight:600;
  font-size:18px;
}
.brand-sub{
  font-size:12px; color:var(--muted);
}

.site-nav{
  display:flex; align-items:center; gap:18px;
}
.site-nav a{
  text-decoration:none; color:var(--text);
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
.site-nav a:hover{
  background:var(--stone);
}
.site-nav .nav-cta{
  border:1px solid var(--line);
  background:linear-gradient(180deg, #fff, var(--stone));
}
.site-nav .nav-cta:hover{
  border-color: rgba(201,162,59,.55);
}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:linear-gradient(180deg, #fff, var(--stone));
  border-radius:14px;
  padding:10px 12px;
}
.burger{
  display:block; width:22px; height:2px; background:var(--text);
  position:relative;
}
.burger::before,.burger::after{
  content:""; position:absolute; left:0; width:22px; height:2px; background:var(--text);
}
.burger::before{ top:-7px; }
.burger::after{ top:7px; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.hero{
  position:relative;
  padding:64px 0 24px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:-40% -30% auto -30%;
  height:520px;
  background:
    radial-gradient(closest-side, rgba(201,162,59,.18), transparent 70%),
    radial-gradient(closest-side, rgba(154,169,138,.18), transparent 70%);
  filter: blur(1px);
  transform: translateY(-40px);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:28px;
  align-items:start;
}
.eyebrow{
  margin:0 0 10px;
  letter-spacing:.14em; text-transform:uppercase;
  font-size:12px; color:var(--muted);
}
h1{
  margin:0 0 14px;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height:1.12;
}
.h1-accent{
  color: var(--ink);
}
.lead{ font-size:16px; color:var(--muted); max-width:62ch; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 12px; }
.hero-highlights{
  padding-left:18px;
  margin:16px 0 0;
  color:var(--muted);
}
.hero-highlights li{ margin:8px 0; }

.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, #fff, var(--stone));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.card-title{ margin:0 0 6px; font-size:16px; }
.card-text{ margin:0 0 14px; color:var(--muted); font-size:14px; }
.card-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.card-grid .full{ grid-column: 1 / -1; }
.label{ font-size:12px; color:var(--muted); letter-spacing:.06em; text-transform:uppercase; }
.link{ color: var(--ink); text-decoration:none; border-bottom:1px solid rgba(201,162,59,.35); }
.link:hover{ border-bottom-color: rgba(201,162,59,.9); }
.fineprint{ margin:12px 0 0; color:var(--muted); font-size:12px; }

.section{ padding:72px 0; }
.section.alt{ background: var(--stone); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-head{ margin-bottom:24px; }
.section-head h2{
  margin:0 0 6px;
  font-family:"Playfair Display", ui-serif, Georgia, serif;
  font-size:32px;
}
.muted{ color:var(--muted); }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.tile{
  border:1px solid var(--line);
  background:#fff;
  border-radius: var(--radius);
  padding:18px;
}
.tile h3{ margin:0 0 8px; }
.tile p{ margin:0 0 10px; color:var(--muted); }
.tile.subtle{ background:linear-gradient(180deg, #fff, var(--stone)); }
.bullets{ margin:0; padding-left:18px; color:var(--muted); }
.bullets li{ margin:6px 0; }

.callout{
  margin-top:18px;
  border:1px solid rgba(201,162,59,.35);
  background:linear-gradient(180deg, rgba(201,162,59,.10), rgba(201,162,59,.04));
  border-radius: var(--radius);
  padding:16px;
  display:flex; justify-content:space-between; gap:16px; align-items:center;
}

.steps{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.step{
  display:flex; gap:14px;
  border:1px solid var(--line);
  background:#fff;
  border-radius: var(--radius);
  padding:16px;
}
.step-no{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(180deg, rgba(201,162,59,.22), rgba(201,162,59,.08));
  border:1px solid rgba(201,162,59,.25);
  font-weight:600;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  align-items:start;
}

.about-photo{
  margin-bottom:16px;
}
.about-photo img{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
}
.facts{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.fact{
  border:1px solid var(--line);
  background:#fff;
  border-radius: 14px;
  padding:12px;
}
.fact-title{ font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.08em; }
.fact-value{ margin-top:6px; font-weight:600; }

.hours{ display:grid; gap:8px; color:var(--muted); }
.hours > div{ display:flex; justify-content:space-between; gap:10px; }
.spacer{ height:10px; }
.note{
  margin-top:14px;
  padding:14px 16px;
  border:1px dashed rgba(90,90,90,.35);
  border-radius: var(--radius);
  color:var(--muted);
  background: rgba(255,255,255,.55);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.contact-cards{
  display:flex; gap:12px; flex-wrap:wrap;
  margin:14px 0 12px;
}
.mini{
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px;
  background:#fff;
  min-width: 240px;
}
.form{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  padding:18px;
  box-shadow: var(--shadow);
}
.form label{ display:block; font-size:13px; color:var(--muted); margin-bottom:10px; }
.form input, .form textarea, .form select{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  background:#fff;
}
.form input:focus, .form textarea:focus, .form select:focus{
  outline:none;
  border-color: rgba(201,162,59,.7);
  box-shadow: 0 0 0 4px rgba(201,162,59,.14);
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.check{
  display:flex; gap:10px; align-items:flex-start;
  margin-top:4px;
}
.check input{ width:auto; margin-top:3px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  text-decoration:none;
  color:var(--text);
  font-weight:500;
  cursor:pointer;
  user-select:none;
}
.btn.full{ width:100%; }
.btn.primary{
  border-color: rgba(201,162,59,.55);
  background: linear-gradient(180deg, rgba(201,162,59,.26), rgba(201,162,59,.10));
}
.btn.primary:hover{ border-color: rgba(201,162,59,.95); }
.btn.secondary{
  background: linear-gradient(180deg, rgba(154,169,138,.22), rgba(154,169,138,.10));
  border-color: rgba(154,169,138,.45);
}
.btn.secondary:hover{ border-color: rgba(154,169,138,.9); }
.btn.ghost{
  background:#fff;
}
.btn.ghost:hover{ background:var(--stone); }

.legal .tile{ background:#fff; }

.site-footer{
  border-top:1px solid var(--line);
  background:#fff;
  padding:22px 0;
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:14px;
}
.footer-right{ display:flex; gap:14px; flex-wrap:wrap; }
.footer-right a{ color:var(--muted); text-decoration:none; }
.footer-right a:hover{ color:var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .facts{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }

  .nav-toggle{ display:inline-flex; }
  .site-nav{
    position:absolute;
    right:20px;
    top:70px;
    flex-direction:column;
    align-items:stretch;
    background:#fff;
    border:1px solid var(--line);
    border-radius: 18px;
    padding:10px;
    width:min(320px, calc(100% - 40px));
    box-shadow: var(--shadow);
    display:none;
  }
  .site-nav.open{ display:flex; }
  .site-nav a{ padding:12px 12px; }
}


.hero-mark{
  width:72px;
  height:auto;
  margin: 10px 0 8px;
  opacity: .98;
}

/* ===== Hero: Logo ohne Namensunterschrift ===== */
.hero-logo{
  width: 150px;
  height: auto;
  display: block;
  margin: 20px 0 18px;
}

@media (max-width: 900px){
  .hero-logo{
    width: 110px;
  }
}

/* ===== Header dauerhaft sichtbar (wie frühe Versionen) ===== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(251,248,243,0.97);
  backdrop-filter: blur(10px);
}

body{
  padding-top: 104px;
}

/* --- Header Logo Austausch & Optimierung (v15) --- */
.site-header .brand-logo{
  width: 84px;
  height: auto;
  max-height: 84px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

/* --- Header: ursprünglicher Aufbau mit neuem Logo --- */
.site-header .brand-logo{
  width: 72px;
  height: auto;
  margin-right: 14px;
}
