:root {
  --ink: #242824;
  --muted: #5f675f;
  --paper: #f5f5f3;
  --soft: #e5e5e2;
  --green: #9b1c2c;
  --green-dark: #6f1420;
  --line: #cdcdca;
  --white: #fff;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.wrap { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 12px; top: 12px; background: white; padding: 8px 12px; z-index: 100; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(245,245,243,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(7px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display:flex; align-items:center; text-decoration:none; min-width:220px; }
.brand-wordmark { display:block; width:230px; max-height:48px; object-fit:contain; object-position:left center; }
.brand-mark { width: 34px; height: 34px; border: 3px solid var(--ink); position: relative; }
.brand-mark:before, .brand-mark:after { content:""; position:absolute; background:var(--paper); }
.brand-mark:before { width: 12px; height: 40px; left: 8px; top: -6px; }
.brand-mark:after { height: 12px; width: 40px; left: -6px; top: 8px; }
.brand-mark i { position:absolute; inset:3px; background:var(--ink); clip-path: polygon(40% 0,60% 0,60% 40%,100% 40%,100% 60%,60% 60%,60% 100%,40% 100%,40% 60%,0 60%,0 40%,40% 40%); z-index:2; }
nav { display: flex; gap: 22px; align-items: center; }
nav a { text-decoration: none; font-size: 16px; }
nav a:hover, nav a:focus { text-decoration: underline; text-underline-offset: 4px; }
.phone-mini { padding: 9px 13px; border: 1px solid var(--green); border-radius: 4px; font-weight: 700; }
.hero { position: relative; min-height: 620px; display: grid; align-items: center; overflow: hidden; }
.hero:before { content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(44,44,44,.82), rgba(72,31,36,.58) 58%, rgba(111,20,32,.26)), url('assets/ruheweg.svg') center/cover no-repeat; }
.hero-content { position: relative; z-index: 2; color: white; max-width: 720px; padding: 90px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
h1, h2, h3 { line-height:1.18; margin-top:0; font-family:Arial, Helvetica, sans-serif; font-weight:700; letter-spacing:-.02em; }
h1 { font-size: clamp(42px, 7vw, 76px); margin-bottom: 20px; }
h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 22px; }
h3 { font-size: 25px; margin-bottom: 10px; }
.hero p { font-size: clamp(19px, 2.2vw, 24px); max-width: 660px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 19px; border-radius: 4px; text-decoration: none; font-weight: 700; border: 1px solid transparent; }
.button.primary { background: white; color: var(--green-dark); }
.button.secondary { border-color: rgba(255,255,255,.8); color: white; }
.section { padding: 82px 0; }
.section.alt { background: var(--soft); }
.lead { font-size: 22px; color: var(--muted); max-width: 820px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:36px; }
.card { background: rgba(255,255,255,.68); border:1px solid var(--line); padding:28px; border-radius:5px; }
.card p { margin-bottom:0; }
.two-col { display:grid; grid-template-columns: 1.1fr .9fr; gap:60px; align-items:start; }
.checklist { list-style:none; padding:0; margin:28px 0 0; }
.checklist li { position:relative; padding-left:28px; margin:10px 0; }
.checklist li:before { content:""; position:absolute; left:0; top:.62em; width:10px; height:10px; border-radius:50%; background:var(--green); }
.info-box { background:var(--green-dark); color:white; padding:30px; border-radius:5px; }
.info-box a { font-weight:700; }
.steps { counter-reset: step; display:grid; gap:16px; margin-top:28px; }
.step { counter-increment:step; position:relative; padding:22px 22px 22px 76px; background:white; border:1px solid var(--line); border-radius:5px; }
.step:before { content:counter(step); position:absolute; left:22px; top:20px; width:36px; height:36px; border-radius:50%; display:grid; place-items:center; background:var(--green); color:white; font-weight:700; }
.logo-panel { background:white; border:1px solid var(--line); padding:26px; border-radius:5px; }
.logo-panel img { display:block; width:100%; }
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap:36px; margin-top:32px; }
.contact-card { background:white; border:1px solid var(--line); padding:28px; border-radius:5px; }
.contact-card p { margin:.25em 0; }
.contact-card .big { font-size:27px; font-weight:700; }
.site-footer { background:#303030; color:#eef1ed; padding:42px 0 92px; }
.footer-inner { display:flex; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.footer-links { display:flex; gap:18px; flex-wrap:wrap; }
.footer-links a { color:inherit; }
.mobile-call { display:none; }
.legal { max-width:900px; }
.legal h1 { font-size:48px; margin-top:56px; }
.legal h2 { font-size:30px; margin-top:42px; }
.legal h3 { font-family:Arial,Helvetica,sans-serif; font-size:20px; font-weight:700; margin-top:28px; }
@media (max-width: 860px) {
  nav a:not(.phone-mini) { display:none; }
  .grid-3, .two-col, .contact-grid { grid-template-columns:1fr; }
  .two-col { gap:34px; }
  .hero { min-height:560px; }
  .section { padding:62px 0; }
  .mobile-call { display:flex; position:fixed; left:14px; right:14px; bottom:14px; z-index:30; background:var(--green-dark); color:white; text-decoration:none; min-height:56px; align-items:center; justify-content:center; border-radius:5px; font-weight:700; box-shadow:0 7px 30px rgba(0,0,0,.24); }
}
@media (max-width: 520px) {
  body { font-size:17px; }
  .wrap { width:min(calc(100% - 26px), var(--max)); }
  .brand-wordmark { width:190px; max-height:42px; }
  .phone-mini { display:none; }
  .hero-content { padding:72px 0; }
  h1 { font-size:43px; }
  .cta-row { flex-direction:column; }
  .button { width:100%; }
}
