/* Institut für Liegenschaftsbewertung
   Gestaltung: institutionell, zurückhaltend, druckähnlich.
   Keine externen Ressourcen (DSGVO: keine Google Fonts, kein CDN). */

:root {
  --ink:        #16202e;
  --ink-soft:   #4d5768;
  --ink-faint:  #7c8697;
  --line:       #dcd8d0;
  --line-soft:  #ece9e3;
  --paper:      #fcfbf9;
  --paper-alt:  #f5f3ee;
  --seal:       #6e2b32;
  --seal-soft:  #8d4249;

  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1140px;
  --col:  68ch;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.col  { max-width: var(--col); }

a { color: var(--seal); text-decoration: none; border-bottom: 1px solid rgba(110,43,50,.28); }
a:hover { border-bottom-color: var(--seal); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.22; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-top: 0; }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1.1em; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1.1rem;
  font-weight: 600;
}

.lead { font-size: 1.18rem; color: var(--ink-soft); }
.small { font-size: .92rem; }
.muted { color: var(--ink-soft); }
.faint { color: var(--ink-faint); }

/* ---------- Kopf ---------- */

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .02em;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 20px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.topbar a { color: #fff; border-bottom-color: rgba(255,255,255,.3); }
.topbar a:hover { border-bottom-color: #fff; }
/* Zertifizierungszeile ersetzt auf dem Telefon Adresse und E-Mail. */
.topbar .tb-cert { display: none; }

.masthead { border-bottom: 1px solid var(--line); background: var(--paper); }
.masthead .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; }

.logo { display: block; border: 0; }
.logo:hover { border: 0; }
.logo:hover .wm-eq { opacity: .74; }

/* Wortmarke: das Gleichheitszeichen als Marke — Bewertung ist die Zuordnung
   eines Werts zu einer Sache. Grotesk gegen die Serif des Fliesstextes. */
.wm-eq {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 2.15rem;
  line-height: .58;
  letter-spacing: -.08em;
  color: var(--seal);
  margin-bottom: .1em;
  transition: opacity .15s;
}
.wm-name {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.16rem;
  letter-spacing: -.042em;
  line-height: 1.04;
  color: var(--ink);
}

nav.main { font-family: var(--sans); font-size: .88rem; }
nav.main ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 26px; flex-wrap: wrap; }
nav.main a { color: var(--ink-soft); border-bottom: 1px solid transparent; padding-bottom: 2px; }
nav.main a:hover, nav.main a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--seal); }

/* ---------- Aufmacher ---------- */

.hero { padding: 76px 0 60px; border-bottom: 1px solid var(--line); }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: center; }
.hero h1 { max-width: 19ch; }
.hero .lead { max-width: 56ch; }
.hero-emblem { width: 230px; height: 230px; display: block; }
.hero-emblem-link { border-bottom: 0; display: block; line-height: 0; }
.hero-emblem-link:hover { border-bottom: 0; opacity: .82; }

.btnrow { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  font-family: var(--sans); font-size: .9rem; font-weight: 600; letter-spacing: .02em;
  padding: 13px 24px; border: 1px solid var(--ink); color: var(--ink); background: transparent;
  display: inline-block; border-radius: 1px;
}
.btn:hover { background: var(--ink); color: #fff; }
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--seal); border-color: var(--seal); }

/* ---------- Beleg-Leiste ---------- */

.facts { background: var(--paper-alt); border-bottom: 1px solid var(--line); font-family: var(--sans); }
.facts .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 30px; padding-top: 30px; padding-bottom: 30px; }
.facts dt { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: 6px; }
.facts dd { margin: 0; font-size: .95rem; color: var(--ink); line-height: 1.45; }

/* ---------- Abschnitte ---------- */

section { padding: 68px 0; border-bottom: 1px solid var(--line-soft); }
section:last-of-type { border-bottom: 0; }
.section-head { max-width: var(--col); margin-bottom: 40px; }

.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.cell { background: var(--paper); padding: 32px 30px; }
.cell h3 { margin-bottom: .45em; }
.cell p { font-size: .98rem; color: var(--ink-soft); margin-bottom: .8em; }
.cell .more { font-family: var(--sans); font-size: .85rem; font-weight: 600; }

/* Anlass-Liste mit Ordnungsziffern */
.numbered { counter-reset: item; }
.numbered .cell { position: relative; padding-top: 34px; }
.numbered .cell::before {
  counter-increment: item; content: counter(item, decimal-leading-zero);
  font-family: var(--sans); font-size: .7rem; letter-spacing: .12em; font-weight: 700;
  color: var(--seal); display: block; margin-bottom: 14px;
}

/* ---------- Profil ---------- */

.profile { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: 56px; align-items: start; }
.credential {
  border: 1px solid var(--line); background: var(--paper-alt);
  padding: 30px 28px; font-family: var(--sans); font-size: .9rem;
}
.credential h3 { font-family: var(--sans); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-bottom: 18px; }
.credential table { width: 100%; border-collapse: collapse; }
.credential th, .credential td { text-align: left; vertical-align: top; padding: 9px 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.credential th { color: var(--ink-faint); font-weight: 600; width: 38%; padding-right: 14px; }
.credential tr:last-child th, .credential tr:last-child td { border-bottom: 0; }
.credential .note { margin-top: 18px; font-size: .82rem; color: var(--ink-faint); line-height: 1.5; }

/* ---------- Tabellen im Text ---------- */

.table-scroll { overflow-x: auto; margin: 0 0 1.6em; }
table.data { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: .92rem; min-width: 480px; }
table.data th, table.data td { text-align: left; padding: 13px 16px 13px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data thead th { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); border-bottom: 1px solid var(--ink); }

/* ---------- Definitionen / Verfahren ---------- */

.method { border-left: 2px solid var(--seal); padding-left: 24px; margin-bottom: 34px; }
.method h3 { margin-bottom: .3em; }
.method p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 0; }

/* ---------- Ablauf ---------- */

.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); }
.steps li { counter-increment: step; background: var(--paper); padding: 30px 28px; }
.steps li::before { content: "Schritt " counter(step); display: block; font-family: var(--sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--seal); font-weight: 700; margin-bottom: 12px; }
.steps h3 { font-size: 1.05rem; margin-bottom: .4em; }
.steps p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* ---------- Zielgruppen ---------- */

.audience { background: var(--ink); color: rgba(255,255,255,.82); border-bottom: 0; }
.audience h2, .audience h3 { color: #fff; }
.audience .eyebrow { color: rgba(255,255,255,.5); }
.audience .lead { color: rgba(255,255,255,.72); }
.audience .grid { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.14); }
.audience .cell { background: var(--ink); }
.audience .cell p { color: rgba(255,255,255,.7); }
.audience a { color: #fff; border-bottom-color: rgba(255,255,255,.35); }

/* ---------- FAQ ---------- */

.faq { max-width: var(--col); }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-size: 1.06rem; list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); color: var(--seal); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 14px 0 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- Kontakt ---------- */

.contact { background: var(--paper-alt); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 44px; }
.contact-grid h3 { font-family: var(--sans); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-bottom: 14px; }
.contact-grid p { font-size: 1rem; margin-bottom: .4em; }

/* ---------- Fuß ---------- */

footer.site { background: var(--ink); color: rgba(255,255,255,.6); font-family: var(--sans); font-size: .86rem; padding: 54px 0 40px; }
footer.site a { color: rgba(255,255,255,.82); border-bottom-color: rgba(255,255,255,.22); }
footer.site a:hover { color: #fff; }
footer.site .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 40px; margin-bottom: 40px; }
footer.site h4 { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.42); font-weight: 700; margin-bottom: 14px; font-family: var(--sans); }
footer.site ul { list-style: none; margin: 0; padding: 0; }
footer.site li { margin-bottom: 8px; }
footer.site .legal { border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px; font-size: .78rem; line-height: 1.7; color: rgba(255,255,255,.45); }

/* ---------- Inhaltsseiten ---------- */

.page-head { padding: 60px 0 44px; border-bottom: 1px solid var(--line); }
.breadcrumb { font-family: var(--sans); font-size: .78rem; color: var(--ink-faint); margin-bottom: 18px; }
.breadcrumb a { color: var(--ink-faint); border-bottom-color: transparent; }
.breadcrumb a:hover { color: var(--ink); border-bottom-color: var(--line); }

article.prose { padding: 56px 0 20px; }
article.prose > * { max-width: var(--col); }
article.prose > .table-scroll, article.prose > .grid, article.prose > .steps { max-width: none; }
article.prose h2 { margin-top: 2.2em; }
article.prose h2:first-child { margin-top: 0; }
article.prose h3 { margin-top: 1.8em; }
article.prose ul, article.prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
article.prose li { margin-bottom: .5em; }

.answerbox {
  background: var(--paper-alt); border-left: 2px solid var(--seal);
  padding: 26px 28px; margin: 0 0 2.4em;
}
.answerbox p:last-child { margin-bottom: 0; }

.callout { border: 1px solid var(--line); padding: 24px 26px; margin: 2em 0; font-size: .95rem; color: var(--ink-soft); }
.callout strong { color: var(--ink); }

.placeholder {
  border: 1px dashed var(--seal-soft); background: rgba(110,43,50,.04);
  padding: 18px 22px; margin: 1.6em 0; font-family: var(--sans); font-size: .86rem; color: var(--seal);
}
.placeholder strong { display: block; margin-bottom: 4px; letter-spacing: .06em; text-transform: uppercase; font-size: .7rem; }

/* ---------- Zertifizierungsvermerk ----------
   Bewusst rechteckig und rein typografisch. Das Rundsiegel nach § 8 Abs 5 SDG
   darf laut Hauptverband NICHT als Designelement auf Homepages verwendet
   werden — es ist der Unterfertigung von Gutachten vorbehalten. Zulässig ist
   allein die sachliche Angabe der Zertifizierung samt Umfang (Punkt 1.7). */

.certmark {
  border: 1px solid var(--line);
  border-left: 3px solid var(--seal);
  padding: 18px 22px;
  font-family: var(--sans);
  background: var(--paper);
}
.certmark .cm-label {
  font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 700; margin: 0 0 8px;
}
.certmark .cm-main {
  font-family: var(--serif); font-size: 1rem; line-height: 1.4;
  color: var(--ink); margin: 0 0 8px;
}
.certmark .cm-scope {
  font-size: .8rem; color: var(--ink-soft); margin: 0; line-height: 1.5;
}
.certmark .cm-scope span { white-space: nowrap; }

/* ---------- Zwei Leistungsstufen ----------
   Unterschieden wird nach Zweck (für Ihre Entscheidung / zum Nachweis
   gegenüber Dritten), nicht nach Bearbeitungsdauer. */

.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tier { background: var(--paper); padding: 38px 34px 34px; display: flex; flex-direction: column; }
.tier--lead { background: var(--paper-alt); }
.tier .t-step {
  font-family: var(--sans); font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700; color: var(--seal); margin: 0 0 14px;
}
.tier h3 { font-size: 1.42rem; margin-bottom: .3em; }
.tier .t-for {
  font-family: var(--sans); font-size: .82rem; color: var(--ink-faint);
  margin: 0 0 18px; letter-spacing: .02em;
}
.tier > p { font-size: .97rem; color: var(--ink-soft); }
.tier dl { margin: 18px 0 0; font-family: var(--sans); font-size: .86rem; border-top: 1px solid var(--line); }
.tier dt { color: var(--ink-faint); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; margin-top: 16px; }
.tier dd { margin: 4px 0 0; color: var(--ink); line-height: 1.5; }
.tier .t-cta { margin-top: auto; padding-top: 26px; }
.tier .t-cta .btn { width: 100%; text-align: center; }

.tier-note {
  font-family: var(--sans); font-size: .88rem; color: var(--ink-soft);
  border-left: 2px solid var(--seal); padding: 14px 0 14px 22px; margin: 30px 0 0;
}

/* Verlinkter Zertifizierungshinweis, oben schlank und unten ausführlich.
   Punkt 1.7.10 nennt den Link auf die Gerichtssachverständigenliste
   ausdrücklich als zulässig. */

.svbar { background: var(--paper-alt); border-bottom: 1px solid var(--line); font-family: var(--sans); }
.svbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px; }
.svbar .sv-id { display: flex; align-items: center; gap: 16px; min-width: 0; }
.svbar .sv-id a { border-bottom: 0; display: block; line-height: 0; }
.svbar .sv-id a:hover { border-bottom: 0; opacity: .78; }
.svbar .sv-emblem { height: 54px; width: 54px; flex: 0 0 auto; display: block; }
.svbar .sv-txt { font-size: .84rem; color: var(--ink-soft); margin: 0; }
.svbar .sv-txt strong { color: var(--ink); font-weight: 600; }
.svbar .sv-link {
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: var(--seal); border: 1px solid var(--seal); border-radius: 1px;
  padding: 7px 14px; white-space: nowrap;
}
.svbar .sv-link:hover { background: var(--seal); color: #fff; }

.certmark--link { display: block; border-bottom: 0; color: inherit; transition: border-color .15s; }
.certmark--link:hover { border-bottom: 0; }
.certmark--link:hover .certmark { border-color: var(--seal); }
.certmark .cm-verify {
  font-size: .74rem; letter-spacing: .04em; color: var(--seal);
  margin: 12px 0 0; font-weight: 600;
}
.certmark--emblem { display: flex; gap: 22px; align-items: flex-start; }
.certmark--emblem .cm-emblem { height: 78px; width: 78px; flex: 0 0 auto; display: block; }
.certmark--emblem .cm-body { min-width: 0; }
.certmark--emblem .cm-body > *:first-child { margin-top: 0; }

footer.site .certmark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.16); border-left-color: var(--seal-soft); }
footer.site .certmark .cm-label { color: rgba(255,255,255,.45); }
footer.site .certmark .cm-main { color: #fff; }
footer.site .certmark .cm-scope { color: rgba(255,255,255,.62); }
footer.site .certmark .cm-verify { color: rgba(255,255,255,.85); }
footer.site .cert-wrap { margin-bottom: 36px; max-width: 620px; }

/* Platz für ein eigenes Institutslogo (kein Gerichtssiegel). */
.logo .brandmark { height: 46px; width: auto; display: block; }
.logo .brandmark + .name { border-left: 1px solid var(--line); padding-left: 16px; }

/* ---------- Responsiv ---------- */

/* Deutsche Komposita brauchen Trennung, sonst sprengen sie schmale Spalten.
   Greift dank lang="de-AT" mit deutschen Trennregeln. */
body { overflow-wrap: break-word; }
h1, h2, h3, .lead, .sv-txt, .cm-scope, article.prose p, article.prose li,
.cell p, .tier p, .tier dd, .method p, .steps p, .faq p, .credential td {
  hyphens: auto; -webkit-hyphens: auto;
}
/* Das Wortzeichen darf nie getrennt werden. */
.wm-name { overflow-wrap: normal; hyphens: none; -webkit-hyphens: none; }

.credential table { table-layout: fixed; }
.credential th, .credential td { overflow-wrap: anywhere; hyphens: auto; -webkit-hyphens: auto; }
.credential th { width: 34%; }

@media (max-width: 860px) {
  body { font-size: 17px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 34px; }
  .hero-emblem { width: 150px; height: 150px; }
  .profile { grid-template-columns: 1fr; gap: 36px; }
  .masthead .wrap { padding-top: 20px; padding-bottom: 20px; }
  .hero { padding: 52px 0 44px; }
  section { padding: 52px 0; }
  nav.main ul { gap: 18px; }
}

/* ---------- Telefon ---------- */

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }

  h1 { font-size: 1.8rem; line-height: 1.18; }
  h2 { font-size: 1.35rem; }
  .lead { font-size: 1.05rem; }
  .eyebrow { font-size: .64rem; letter-spacing: .1em; }

  /* Kopfzeile trägt auf dem Telefon die Zertifizierungsaussage statt
     Adresse und E-Mail; die beige Leiste darunter entfällt dafür ganz. */
  .topbar { font-size: .76rem; }
  .topbar .wrap { padding-top: 10px; padding-bottom: 10px; }
  .topbar .tb-adr, .topbar .tb-mail { display: none; }
  .topbar .tb-cert {
    display: flex; align-items: center; gap: 10px;
    font-size: .72rem; line-height: 1.35; color: rgba(255,255,255,.88);
  }
  .topbar .tb-cert img {
    width: 30px; height: 30px; flex: 0 0 auto;
    background: #fff; border-radius: 50%;
  }
  .svbar { display: none; }
  .masthead .wrap { gap: 16px; padding-top: 18px; padding-bottom: 18px; }
  .wm-eq { font-size: 1.72rem; line-height: .6; }
  .wm-name { font-size: .98rem; }
  nav.main { width: 100%; }
  nav.main ul { gap: 10px 18px; }
  nav.main a { font-size: .84rem; }

  /* Zertifizierungsleiste: Emblem und Text untereinander statt gequetscht */
  .svbar .wrap { gap: 14px; padding-top: 16px; padding-bottom: 16px; }
  .svbar .sv-id { flex-direction: column; align-items: flex-start; gap: 12px; }
  .svbar .sv-emblem { height: 62px; width: 62px; }
  .svbar .sv-txt { font-size: .8rem; }
  /* Der gerahmte Prüf-Button wirkt auf schmalen Displays als leerer Balken.
     Auf dem Telefon daher als schlichter Textlink unter der Angabe. */
  .svbar .sv-link {
    border: 0; padding: 0; font-size: .8rem;
    border-bottom: 1px solid rgba(110,43,50,.4);
  }
  .svbar .sv-link:hover { background: transparent; color: var(--seal); border-bottom-color: var(--seal); }

  .hero { padding: 38px 0 34px; }
  .hero .wrap { gap: 28px; justify-items: start; }
  .hero-emblem { width: 132px; height: 132px; }
  .btnrow { gap: 10px; margin-top: 24px; }
  .btn { width: 100%; text-align: center; }

  section { padding: 40px 0; }
  .section-head { margin-bottom: 28px; }

  .facts .wrap { gap: 20px; padding-top: 24px; padding-bottom: 24px; }
  .cell { padding: 26px 22px; }
  .tier { padding: 30px 24px 26px; }
  .tier h3 { font-size: 1.28rem; }
  .steps li { padding: 26px 22px; }
  .credential { padding: 24px 20px; }
  .method { padding-left: 18px; margin-bottom: 28px; }
  .answerbox, .callout { padding: 20px 22px; }
  .placeholder { padding: 16px 18px; }
  article.prose { padding: 38px 0 12px; }
  .page-head { padding: 34px 0 30px; }

  /* Tabellen sollen in die Spalte passen, statt seitwärts zu scrollen. */
  table.data { min-width: 0; font-size: .82rem; }
  table.data th, table.data td { padding: 10px 10px 10px 0; hyphens: auto; -webkit-hyphens: auto; overflow-wrap: break-word; }
  table.data th:last-child, table.data td:last-child { padding-right: 0; }
  table.data thead th { font-size: .6rem; letter-spacing: .08em; }
  table.data .faint { display: block; font-size: .72rem; line-height: 1.35; margin-top: 3px; }

  /* Fußvermerk: Emblem über den Text statt daneben */
  .certmark--emblem { flex-direction: column; gap: 16px; }
  .certmark { padding: 20px 20px; }
  footer.site { padding: 40px 0 32px; }
  footer.site .cols { gap: 28px; margin-bottom: 30px; }
}

@media print {
  .topbar, nav.main, .btnrow, footer.site { display: none; }
  body { font-size: 11pt; background: #fff; }
  a { color: var(--ink); border: 0; }
}
