/* beste-umzugsfirma.ch — Design „Dossier – prüfen statt raten“
   Papierweiss, Tusche-Anthrazit, gedämpftes Gold als einziger Akzent (Siegel, Linien, Ziffern),
   graugrüne Aktenpanels. Didone-Serife für Titel, klare Sans für den Fliesstext.
   Keine Frameworks, keine externen Schriften. */

:root {
  --paper: #faf9f6;
  --paper-2: #f2f0ea;
  --ink: #1b1b1a;
  --ink-2: #33332f;
  --ink-soft: #55554e;
  --gold: #b08a2e;          /* nur Flächen, Linien, Siegel – nie kleiner Text auf Papier */
  --gold-ink: #7a5c14;      /* Gold als Textfarbe (Kontrast ≥ 4.5 auf Papier und Panel) */
  --gold-soft: #f0e6cd;
  --panel: #e7eae2;
  --panel-2: #dde2d5;
  --line: #d8d5cc;
  --radius: 4px;
  --font-display: "Didot", "Bodoni MT", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; }
a { color: var(--gold-ink); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--gold-ink); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.16; color: var(--ink); margin: 0 0 .55em; letter-spacing: .005em; }
h1 { font-size: clamp(2.05rem, 1.25rem + 3.1vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.7vw, 2.3rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.06rem; }
p { margin: 0 0 1em; }
strong { font-weight: 650; }

.wrap { width: 100%; max-width: 1140px; margin-inline: auto; padding-inline: 22px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--ink); color: var(--paper); padding: 9px 16px; }
.skip:focus { left: 12px; color: var(--paper); }
.text-center { text-align: center; }
.grid-3 { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.grid-4 { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); }
.highlight { background: var(--gold-soft); box-shadow: 0 0 0 2px var(--gold-soft); }

/* ---------- Aktenzeichen: Gold-Kapitälchen für die OR-Artikel ---------- */
.art {
  font-family: var(--font-body);
  font-size: .86em;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-ink);
  white-space: nowrap;
  border-left: 2px solid var(--gold);
  padding-left: .42em;
  margin-left: .06em;
}

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--ink); box-shadow: 0 2px 0 var(--gold); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.logo-mark { flex: none; display: block; }
.brand-text { display: flex; flex-direction: column; font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; line-height: 1.08; letter-spacing: .01em; }
.brand-text span { font-family: var(--font-body); font-weight: 700; font-size: .7rem; letter-spacing: .19em; text-transform: uppercase; color: var(--gold-ink); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav-list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list a { display: block; padding: 9px 13px; font-weight: 600; font-size: .99rem; color: var(--ink); text-decoration: none; border-bottom: 2px solid transparent; }
.nav-list a:hover { color: var(--ink); border-bottom-color: var(--gold); }
.nav-list a[aria-current="page"] { border-bottom-color: var(--ink); }
.nav-toggle { display: none; position: relative; width: 50px; height: 46px; border: 1.5px solid var(--ink); border-radius: var(--radius); background: var(--paper); cursor: pointer; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  position: absolute; left: 50%; width: 22px; height: 2px; margin-left: -11px; background: var(--ink); content: ""; transition: transform .2s ease, background .2s ease;
}
.nav-toggle-bars { top: 50%; margin-top: -1px; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--radius); border: 2px solid transparent;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; line-height: 1.25;
  letter-spacing: .02em; text-decoration: none; text-align: center;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--lg { padding: 16px 32px; font-size: 1.06rem; }
a.btn.btn--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
a.btn.btn--ink:hover { background: #000; color: var(--paper); }
a.btn.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
a.btn.btn--gold:hover { background: #c79c36; color: var(--ink); border-color: #c79c36; }
a.btn.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
a.btn.btn--outline:hover { background: var(--ink); color: var(--paper); }
.sec--ink a.btn.btn--outline, .cta-band a.btn.btn--outline { background: transparent; color: var(--paper); border-color: var(--paper); }
.sec--ink a.btn.btn--outline:hover, .cta-band a.btn.btn--outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: 44px 56px; background: var(--paper); border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(180deg, transparent 0 33px, var(--line) 33px 34px);
  mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: 52px; align-items: center; }
.hero-copy { min-width: 0; }
.hero .lead { font-size: 1.16rem; color: var(--ink-2); max-width: 40em; }
.crumbs { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; font-size: .86rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
.crumbs a { color: var(--gold-ink); font-weight: 700; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.dossier-no { display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 14px; }
.dossier-no::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 18px; }
.tags li { border: 1px solid var(--gold); color: var(--gold-ink); background: var(--paper); padding: 3px 12px; font-size: .84rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.hero-actions { margin: 28px 0 20px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 6px 24px; list-style: none; padding: 0; margin: 0; font-size: .97rem; font-weight: 600; color: var(--ink-2); }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points li::before { content: ""; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); flex: none; }
.hero-visual { position: relative; min-width: 0; }
.hero--legal { padding-block: 40px 34px; }
.hero--legal h1 { margin: 0; }

/* ---------- Siegel / Stempel ---------- */
.seal { display: block; flex: none; color: var(--gold-ink); }
.sec--ink .seal { color: var(--gold); }
.ico { flex: none; width: 24px; height: 24px; color: var(--gold-ink); }
.sec--ink .ico { color: var(--gold); }
.card .ico { width: 30px; height: 30px; margin-bottom: 12px; display: block; }
.seal-float { position: absolute; right: -14px; bottom: -18px; width: 104px; height: 104px; background: var(--paper); border-radius: 50%; display: grid; place-items: center; box-shadow: 0 0 0 1px var(--line); }
.seal-row { display: flex; flex-wrap: wrap; gap: 26px; list-style: none; padding: 0; margin: 0; }
.seal-row li { display: flex; align-items: flex-start; gap: 16px; flex: 1 1 250px; min-width: 0; }
.seal-row h3 { margin-bottom: .3em; }
.seal-row p { margin: 0; font-size: 1rem; color: var(--ink-2); }

/* ---------- Bildslots ---------- */
.media {
  display: block; width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 26%, rgba(176, 138, 46, .34) 0 16%, transparent 17%),
    radial-gradient(circle at 74% 26%, transparent 0 20%, rgba(176, 138, 46, .22) 20% 21%, transparent 22%),
    repeating-linear-gradient(180deg, transparent 0 22px, rgba(27, 27, 26, .07) 22px 23px),
    linear-gradient(145deg, var(--paper) 0%, var(--paper-2) 48%, var(--panel) 100%);
}
.media--hero { aspect-ratio: 5 / 4; border: 1px solid var(--ink); box-shadow: 14px 14px 0 var(--panel); }
.media--wide { aspect-ratio: 16 / 9; }
img.media { display: block; height: auto; object-fit: cover; }
img.media--hero { aspect-ratio: 5 / 4; }
img.media--wide { aspect-ratio: 16 / 9; }

/* ---------- Sektionen ---------- */
.sec { padding-block: 74px; }
.sec--panel { background: var(--panel); }
.sec--ruled { background: var(--paper-2); }
.sec--ink { background: var(--ink); color: var(--paper); }
.sec--ink h2, .sec--ink h3, .sec--ink h4 { color: var(--paper); }
.sec--ink p { color: #e4e2da; }
.sec--ink .kicker { color: var(--gold); }
.sec--ink a { color: var(--gold); }
.sec--ink .art { color: var(--gold); }
.sec-head { max-width: 800px; margin-bottom: 38px; }
.sec-head.text-center { margin-inline: auto; }
.kicker { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 12px; }
.kicker::after { content: ""; display: block; width: 46px; height: 2px; background: var(--gold); margin-top: 9px; }
.prose { max-width: 830px; }
.prose h3 { margin-top: 1.7em; }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose li { margin-bottom: .45em; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 54px; align-items: center; }
.split--top { align-items: start; }
.split--wide-right { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
.split > * { min-width: 0; }
.gap-top { margin-top: 58px; }

/* ---------- Prüfliste im Aktenblatt-Raster ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; border-top: 2px solid var(--ink); }
.checklist > li { position: relative; padding: 16px 0 16px 52px; border-bottom: 1px solid var(--line); }
.checklist > li::before {
  content: ""; position: absolute; left: 4px; top: 19px; width: 22px; height: 22px;
  border: 1.5px solid var(--gold); background: var(--paper);
}
.checklist > li::after {
  content: ""; position: absolute; left: 9px; top: 25px; width: 13px; height: 7px;
  border-left: 2.5px solid var(--gold-ink); border-bottom: 2.5px solid var(--gold-ink); transform: rotate(-45deg);
}
.checklist strong { display: block; font-family: var(--font-display); font-size: 1.14rem; font-weight: 700; margin-bottom: .2em; }
.checklist p { margin: 0; font-size: 1rem; color: var(--ink-2); }
.sec--panel .checklist > li::before { background: var(--panel); }
.sec--ink .checklist { border-top-color: var(--gold); }
.sec--ink .checklist > li { border-bottom-color: #3f3f3a; }
.sec--ink .checklist > li::before { background: var(--ink); }
.sec--ink .checklist > li::after { border-color: var(--gold); }
.sec--ink .checklist p { color: #e4e2da; }

/* ---------- Offerte A / Offerte B ---------- */
.compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 0; border: 1px solid var(--ink); background: var(--paper); margin: 0 0 18px; }
.compare-col { padding: 26px 26px 22px; border-left: 1px solid var(--line); min-width: 0; }
.compare-col:first-child { border-left: 0; }
.compare-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 2px solid var(--gold); padding-bottom: 10px; margin-bottom: 16px; }
.compare-head h3 { margin: 0; font-size: 1.22rem; }
.compare-tag { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); }
.compare dl { margin: 0; }
.compare dt { font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); margin-top: 14px; }
.compare dt:first-child { margin-top: 0; }
.compare dd { margin: 3px 0 0; font-size: 1rem; color: var(--ink); }
.compare-verdict { margin-top: 20px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: .97rem; color: var(--ink-2); }
.compare-verdict strong { color: var(--ink); }

/* ---------- Karten ---------- */
.cards { display: grid; gap: 22px; }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.card { background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 24px 24px 22px; min-width: 0; }
.card h3 { font-size: 1.16rem; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card-no { display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--gold-ink); margin-bottom: 10px; }
.sec--ink .card { background: #262623; border-color: #3f3f3a; }
.sec--ink .card p { color: #e4e2da; }

/* ---------- Schritte ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 0; border-top: 2px solid var(--ink); }
.steps > li { counter-increment: step; position: relative; padding: 22px 0 22px 76px; border-bottom: 1px solid var(--line); }
.steps > li::before {
  content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 20px;
  font-family: var(--font-display); font-size: 1.8rem; line-height: 1; color: var(--gold-ink);
}
.steps h3 { margin-bottom: .35em; }
.steps p:last-child { margin-bottom: 0; }

/* ---------- Hinweiskasten ---------- */
.note-box { border-left: 4px solid var(--gold); background: var(--paper-2); padding: 20px 24px; margin: 26px 0; }
.note-box p:last-child { margin-bottom: 0; }
.note-box .note-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .35em; }
.sec--panel .note-box { background: var(--paper); }
.sec--ink .note-box { background: #262623; }
.note { font-size: .94rem; color: var(--ink-soft); }
.sec--ink .note { color: #bdbbb2; }

/* ---------- Zitatblock ---------- */
.pull { border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); padding: 22px 0; margin: 30px 0; font-family: var(--font-display); font-size: 1.32rem; line-height: 1.4; color: var(--ink); }
.pull p:last-child { margin-bottom: 0; }
.sec--ink .pull { color: var(--paper); }

/* ---------- Tabellen (kein Scrollbalken, max. 3–4 Spalten) ---------- */
table { width: 100%; border-collapse: collapse; font-size: 1rem; margin: 0 0 16px; background: var(--paper); }
caption { text-align: left; padding: 0 0 10px; font-size: .9rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--panel); border-bottom: 2px solid var(--ink); font-size: .84rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
tbody th { font-weight: 650; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
.sec--panel table { background: var(--paper); }
.sec--panel thead th { background: var(--panel-2); }

/* ---------- Definitionen ---------- */
.defs { margin: 0; }
.defs dt { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-top: 1.1em; }
.defs dd { margin: .2em 0 0; color: var(--ink-2); }

/* ---------- Inline-CTA ---------- */
.inline-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; max-width: 880px; border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); background: transparent; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 54px 18px 0; font-family: var(--font-display); font-weight: 700; font-size: 1.14rem; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border: 1.5px solid var(--gold); color: var(--gold-ink); font-family: var(--font-body); font-weight: 700; }
.faq-item[open] summary::after { content: "–"; background: var(--gold); color: var(--ink); }
.faq-a { padding: 0 0 20px; max-width: 76ch; }
.faq-a p { margin: 0; color: var(--ink-2); }

/* ---------- Rechtliches ---------- */
.legal { padding-block: 44px 70px; }
.legal h2 { font-size: 1.32rem; margin-top: 1.7em; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--ink); color: var(--paper); padding-block: 58px; border-top: 3px solid var(--gold); }
.cta-band-inner { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.cta-band p { margin: 0; color: #e4e2da; max-width: 40em; }
.cta-band .cta-band-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--paper); margin-bottom: 8px; line-height: 1.2; }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper-2); color: var(--ink); padding-block: 54px 26px; font-size: .99rem; border-top: 1px solid var(--line); }
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--gold-ink); text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-title { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 14px; }
.footer-brand p { margin-top: 14px; color: var(--ink-2); max-width: 32em; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; border-top: 1px solid var(--line); margin-top: 38px; padding-top: 20px; font-size: .93rem; color: var(--ink-soft); }
.footer-bottom p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .hero-visual { max-width: 480px; width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compare-col { border-left: 0; border-top: 1px solid var(--line); }
  .compare-col:first-child { border-top: 0; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; z-index: 60; }
  .nav {
    display: none; position: fixed; left: 0; right: 0; top: 77px; bottom: 0; z-index: 55;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 20px;
    padding: 30px 24px 44px; background: var(--paper); overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; border-top: 2px solid var(--ink); }
  .nav-list a { font-family: var(--font-display); font-size: 1.36rem; padding: 16px 2px; border-bottom: 1px solid var(--line); }
  .nav-list a:hover, .nav-list a[aria-current="page"] { border-bottom-color: var(--gold); }
  .nav-cta { font-size: 1.06rem; padding: 16px 24px; }
  body.nav-open .nav-toggle-bars { background: transparent; }
  body.nav-open .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .wrap { padding-inline: 16px; }
  .sec { padding-block: 52px; }
  .hero { padding-block: 30px 44px; }
  .btn--lg { width: 100%; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .seal-float { width: 78px; height: 78px; right: -6px; bottom: -12px; }
  .media--hero { box-shadow: 8px 8px 0 var(--panel); }
  .steps > li { padding-left: 58px; }
  .compare-col { padding: 22px 18px 20px; }
  th, td { padding: 11px 10px; }
}
