/* Variante C — Premium & ruhig */
:root {
  --cream: #f4f1e8;
  --cream-soft: rgba(244,241,232,0.85);
  --pine: #1e2c22;
  --pine-deep: #16211a;
  --ink: #2a3329;
  --heading: #233028;
  --body: #5c6655;
  --sage: #97a888;
  --sage-light: #b9cdaf;
  --label: #6f7d63;
  --line: #ddd6c2;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--ink); background: var(--cream); }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
section { scroll-margin-top: 84px; }
.label { font-size: 13.5px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500; }

/* Hero + Nav */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=2000&q=80'); background-size: cover; background-position: center; display: flex; flex-direction: column; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,33,24,0.72) 0%, rgba(20,33,24,0.55) 50%, rgba(20,33,24,0.78) 100%); }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .3s ease, box-shadow .3s ease; }
.site-header.scrolled { background: rgba(22,33,26,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(236,231,216,0.08), 0 16px 40px -28px rgba(0,0,0,.85); }
.nav { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 30px 72px; color: #ece7d8; gap: 16px; transition: padding .3s ease; }
.site-header.scrolled .nav { padding-top: 16px; padding-bottom: 16px; }
.burger { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; padding: 11px; justify-self: end; }
.burger span { display: block; height: 2px; background: #ece7d8; border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; background: rgba(22,33,26,0.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 6px 0; border-top: 1px solid rgba(236,231,216,0.12); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 15px 28px; font-size: 14.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #ece7d8; }
.mobile-menu a:hover { background: rgba(236,231,216,0.08); color: var(--sage-light); }
.nav-links { display: flex; gap: 36px; font-size: 14.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links a:hover { color: var(--sage-light); }
.nav-links.right { justify-content: flex-end; }
.nav-logo { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 26px; letter-spacing: 0.04em; padding: 0 48px; }
.hero-inner { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--cream); padding: 64px 24px 96px; }
.hero .label { color: var(--sage-light); margin-bottom: 26px; }
.hero h1 { font-size: clamp(44px, 5.5vw, 76px); line-height: 1.08; max-width: 900px; text-wrap: pretty; }
.hero p { font-size: 19px; line-height: 1.65; max-width: 560px; margin-top: 26px; color: var(--cream-soft); font-weight: 300; }
.rule { width: 64px; height: 1px; background: var(--sage-light); margin: 34px auto 0; }
.hero-ctas { display: flex; gap: 18px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }
.btn { display: inline-block; padding: 17px 34px; font-size: 14.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.btn.solid { background: var(--cream); color: var(--pine); }
.btn.solid:hover { background: #fff; }
.btn.outline { border: 1px solid rgba(244,241,232,0.55); color: var(--cream); }
.btn.outline:hover { border-color: var(--cream); }

/* Sections */
.section { padding: 110px 0; }
.sec-head { text-align: center; margin-bottom: 70px; }
.sec-head .label { color: var(--label); display: block; margin-bottom: 18px; }
.sec-head h2 { font-size: clamp(36px, 4vw, 52px); color: var(--heading); }

/* Leistungen */
.services { max-width: 1080px; margin: 0 auto; columns: 2; column-gap: 90px; }
.service { break-inside: avoid; display: flex; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.service .num { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--sage); line-height: 1; flex: none; width: 44px; }
.service h3 { font-size: 25px; color: var(--heading); margin-bottom: 8px; }
.service p { font-size: 15.5px; line-height: 1.65; color: var(--body); font-weight: 300; }

/* Statement */
.statement { background: var(--pine); color: #ece7d8; text-align: center; padding: 120px 24px; }
.statement .label { color: var(--sage); display: block; margin-bottom: 26px; }
.statement h2 { font-size: clamp(30px, 3.5vw, 46px); line-height: 1.35; max-width: 1000px; margin: 0 auto; text-wrap: pretty; }
.statement h2 em { color: var(--sage-light); font-style: italic; }
.statement p { margin-top: 30px; font-size: 17px; color: rgba(236,231,216,0.75); font-weight: 300; line-height: 1.7; max-width: 640px; margin-left: auto; margin-right: auto; }

/* Team */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; max-width: 1150px; margin: 0 auto; }
.member { text-align: center; }
.member .frame { padding: 12px; border: 1px solid var(--line); background: #fff; margin-bottom: 24px; }
.member img { width: 100%; height: 360px; object-fit: cover; display: block; filter: saturate(0.82); }
.member h3 { font-size: 26px; color: var(--heading); margin-bottom: 6px; }
.member span { font-size: 13.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--label); }

/* Sprechzeiten */
.hours { background: var(--pine); color: #ece7d8; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; max-width: 1150px; margin: 0 auto; align-items: start; }
.hours h2 { font-size: clamp(32px, 3.5vw, 46px); margin-bottom: 18px; color: var(--cream); }
.hours .label { color: var(--sage); display: block; margin-bottom: 18px; }
.hours-note { font-size: 16px; line-height: 1.7; color: rgba(236,231,216,0.72); font-weight: 300; margin-bottom: 36px; }
.day { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid rgba(236,231,216,0.18); font-size: 17px; gap: 16px; }
.day b { font-weight: 500; }
.day span { color: var(--sage-light); font-weight: 300; text-align: right; }
.emergency { border: 1px solid rgba(236,231,216,0.25); padding: 38px; text-align: center; }
.emergency .label { color: var(--sage); display: block; margin-bottom: 16px; }
.emergency p { font-size: 15.5px; color: rgba(236,231,216,0.72); font-weight: 300; line-height: 1.65; margin-bottom: 20px; }
.emergency .big { font-family: 'Cormorant Garamond', serif; font-size: 38px; color: var(--cream); }

/* Kontakt */
.contact { text-align: center; }
.contact h2 { font-size: clamp(36px, 4vw, 52px); color: var(--heading); margin-bottom: 20px; }
.contact .intro { font-size: 17px; color: var(--body); font-weight: 300; max-width: 520px; margin: 0 auto 56px; line-height: 1.7; }
.contact-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; max-width: 1000px; margin: 0 auto; }
.contact-col .label { color: var(--label); display: block; margin-bottom: 14px; }
.contact-col p { font-size: 18px; line-height: 1.65; color: var(--ink); }
.contact-col .big { font-family: 'Cormorant Garamond', serif; font-size: 30px; }
.contact-col a:hover { text-decoration: underline; }
.contact .map { margin-top: 60px; border: 1px solid var(--line); background: #fff; padding: 10px; }
.contact .map iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(0.9); }

/* Footer */
.footer { background: var(--pine-deep); color: rgba(236,231,216,0.6); padding: 36px 0; font-size: 13.5px; letter-spacing: 0.08em; }
.footer .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer div { display: flex; gap: 30px; }
.footer a:hover { color: var(--cream); text-decoration: underline; }

/* Rechtsseiten */
.legal-header { background: var(--pine); color: #ece7d8; padding: 0 0 72px; }
.legal-header .nav { padding-left: 0; padding-right: 0; }
.legal-header .container > .nav { padding-top: 34px; }
.legal-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 60px); text-align: center; color: var(--cream); margin-top: 40px; }
.legal-header .label { display: block; text-align: center; color: var(--sage); margin-top: 16px; }
.legal { padding: 80px 0 110px; }
.legal article { max-width: 800px; margin: 0 auto; }
.legal h2 { font-size: 30px; color: var(--heading); margin: 48px 0 16px; }
.legal h3 { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 18px; color: var(--ink); margin: 28px 0 10px; }
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: var(--body); font-weight: 300; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal a { color: var(--label); text-decoration: underline; }
.legal .notice { border: 1px solid var(--line); background: #fff; padding: 20px 24px; font-size: 14.5px; color: var(--ink); margin-bottom: 40px; }
.legal address { font-style: normal; font-size: 16.5px; line-height: 1.75; color: var(--ink); margin-bottom: 16px; }

/* Responsive */
@media (max-width: 1000px) {
  .nav { grid-template-columns: 1fr auto; padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-logo { text-align: left; padding: 0; justify-self: start; }
  .burger { display: block; }
  .services { columns: 1; }
  .hours-grid { grid-template-columns: 1fr; gap: 56px; }
  .team { grid-template-columns: 1fr; gap: 48px; }
  .member img { height: 420px; }
  .contact-cols { grid-template-columns: 1fr; gap: 40px; }
  .contact .map iframe { height: 320px; }
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-inner { padding: 96px 22px 84px; }
  .hero h1 { font-size: clamp(32px, 8vw, 50px); }
  .hero p { font-size: 16.5px; margin-top: 22px; }
  .hero-ctas { gap: 12px; margin-top: 30px; }
  .hero-ctas .btn { padding: 15px 24px; font-size: 13px; }
  .section { padding: 80px 0; }
}
