/* =========================================================================
   DO 44 — Stylesheet
   Aufbau:  1 Schriften · 2 Design-Tokens · 3 Grundlagen · 4 Layout
            5 Typografie · 6 Komponenten · 7 Abschnitte · 8 Formular
            9 Kopf- und Fußbereich · 10 Druck
   ========================================================================= */

/* 1 — Schriften (lokal, kein Google-CDN) ---------------------------------- */

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-latin-300italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 2 — Design-Tokens ------------------------------------------------------- */

:root {
  /* Marke */
  --brand: #1c81aa;         /* Markenblau: Flächen, Grafik, große Schrift  */
  --brand-deep: #16708f;    /* Text/Buttons in normaler Größe — WCAG 5,6:1 */
  --brand-dark: #0f5f80;    /* Hover                                        */
  --brand-light: #a3d7e3;   /* dezente Flächen                              */
  --brand-tint: #eef6f9;    /* sehr helle Markenfläche                      */

  /* Neutral */
  --ink: #333333;
  --muted: #666666;
  --line: #e6e6e6;
  --line-soft: #f0f1f2;
  --surface: #f7f8f9;
  --white: #ffffff;

  /* Maße */
  --wrap: 1140px;
  --wrap-narrow: 780px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 8rem);
  --radius: 3px;

  /* Sonstiges */
  --ring: 0 0 0 3px rgba(28, 129, 170, .35);
  --shadow: 0 1px 2px rgba(15, 95, 128, .04), 0 8px 24px rgba(15, 95, 128, .06);
  --ease: cubic-bezier(.2, .6, .3, 1);
  --header-h: 76px;
}

/* 3 — Grundlagen ---------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
picture { max-width: 100%; display: block; }

img { height: auto; }

a { color: var(--brand-deep); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--brand-dark); }

:focus-visible {
  outline: 2px solid var(--brand-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--brand-light); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* Sprungmarke für Tastaturnutzer */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--brand-deep);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* 4 — Layout -------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--surface { background: var(--surface); }
.section--tint { background: var(--brand-tint); }
.section--line { border-top: 1px solid var(--line); }

.grid { display: grid; gap: clamp(1.5rem, 3.5vw, 2.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }

/* 5 — Typografie ---------------------------------------------------------- */

h1, h2, h3, h4 {
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 .6em;
  letter-spacing: -.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); font-weight: 400; }
h4 { font-size: 1.0625rem; font-weight: 700; letter-spacing: 0; }

p { margin: 0 0 1.25rem; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

.eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 1.25rem;
}

.lead {
  font-size: clamp(1.125rem, 1.8vw, 1.3125rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
}

.muted { color: var(--muted); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head p:last-child { margin-bottom: 0; }

/* Aufzählung mit Häkchen */
.checks { list-style: none; margin: 0; padding: 0; }
.checks li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .85rem;
  max-width: 62ch;
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}
.checks li:last-child { margin-bottom: 0; }

/* 6 — Komponenten --------------------------------------------------------- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}

.btn--primary { background: var(--brand-deep); color: var(--white); }
.btn--primary:hover { background: var(--brand-dark); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--brand-deep);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2.25rem;
}

/* Auf dem Handy volle Breite: ruhigere Kante, größere Tippfläche */
@media (max-width: 30rem) {
  .btn-row .btn { width: 100%; }
}

/* Textlink mit Pfeil */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: .2rem;
  transition: border-color .18s var(--ease);
}
.arrow-link:hover { border-color: var(--brand); }
.arrow-link svg { transition: transform .18s var(--ease); flex: none; }
.arrow-link:hover svg { transform: translateX(3px); }

/* Karte */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
}
.card__icon {
  width: 40px; height: 40px;
  color: var(--brand);
  margin-bottom: 1.5rem;
}
.card h3 { margin-bottom: .75rem; }
.card > :last-child { margin-top: auto; }
.card .arrow-link { margin-top: 2rem; align-self: flex-start; }

/* 7 — Abschnitte ---------------------------------------------------------- */

/* Hero */
.hero {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero__text { max-width: 34rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--brand); }
.hero__media {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__media img { width: 100%; }

@media (min-width: 62rem) {
  .hero__inner { grid-template-columns: 1fr 1fr; }
}

/* Vorstellung mit Porträt */
.intro__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 56rem) {
  .intro__inner { grid-template-columns: minmax(0, 18rem) minmax(0, 1fr); }
}
.portrait {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__placeholder {
  text-align: center;
  color: var(--muted);
  font-size: .8125rem;
  line-height: 1.5;
  padding: 1.5rem;
}
.portrait__placeholder svg {
  width: 48px; height: 48px;
  margin: 0 auto .75rem;
  color: var(--brand-light);
}

.signature {
  margin-top: 2rem;
  font-size: .9375rem;
  color: var(--muted);
}

/* Argumente */
.reasons { counter-reset: reason; }
.reason { border-top: 1px solid var(--line); padding-top: 1.75rem; }
.reason h3 { margin-bottom: .6rem; }
.reason p { color: var(--muted); margin-bottom: 0; }

/* Ablauf */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 1.75rem; border-top: 2px solid var(--brand-light); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brand);
  margin-bottom: .85rem;
}
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--muted); margin-bottom: 0; }

/* Referenzen */
.work {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.work:hover { border-color: var(--brand-light); box-shadow: var(--shadow); color: inherit; }
.work__media {
  aspect-ratio: 4 / 3;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.work__media img { width: 100%; height: 100%; object-fit: cover; }
.work__placeholder {
  color: var(--muted);
  font-size: .8125rem;
  text-align: center;
  padding: 1rem;
}
.work__body { padding: 1.5rem 1.5rem 1.75rem; }
.work__tag {
  display: block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: .6rem;
}
.work h3 { font-size: 1.1875rem; margin-bottom: .5rem; }
.work p { font-size: .9375rem; color: var(--muted); margin-bottom: 0; }

/* FAQ — native details/summary, kein JavaScript nötig */
.faq { max-width: 52rem; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: 1.0625rem;
  list-style: none;
  color: var(--ink);
  transition: color .18s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-deep); }
.faq summary::after {
  content: '';
  flex: none;
  width: 14px; height: 14px;
  margin-top: .45em;
  background:
    linear-gradient(var(--brand), var(--brand)) center/100% 2px no-repeat,
    linear-gradient(var(--brand), var(--brand)) center/2px 100% no-repeat;
  transition: transform .2s var(--ease);
}
.faq details[open] summary { color: var(--brand-deep); }
.faq details[open] summary::after { transform: rotate(90deg); background-size: 100% 2px, 0 0; }
.faq__answer { padding: 0 0 1.6rem; max-width: 62ch; color: var(--muted); }
.faq__answer p { color: inherit; }
.faq__answer > :last-child { margin-bottom: 0; }

/* Hinweiskasten */
.note {
  border-left: 3px solid var(--brand-light);
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  font-size: .9375rem;
  color: var(--muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.note p { margin-bottom: .75rem; }
.note > :last-child { margin-bottom: 0; }

/* 8 — Formular ------------------------------------------------------------ */

.contact__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 58rem) {
  .contact__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
}

.contact__aside p { color: var(--muted); }

.contact-direct { list-style: none; margin: 2rem 0 0; padding: 0; }
.contact-direct li {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 0;
  border-top: 1px solid var(--line);
}
.contact-direct li:last-child { border-bottom: 1px solid var(--line); }
.contact-direct svg { width: 20px; height: 20px; color: var(--brand); flex: none; }
.contact-direct a { text-decoration: none; }
.contact-direct a:hover { text-decoration: underline; }

.form { display: grid; gap: 1.4rem; }

.field { display: grid; gap: .45rem; }

.field label,
.fieldset__legend {
  font-size: .9375rem;
  color: var(--ink);
}
.field label .req,
.fieldset__legend .req { color: var(--brand-deep); }

.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 10rem; resize: vertical; line-height: 1.6; }

.field input:hover,
.field textarea:hover { border-color: #d5d7d9; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: var(--ring);
}

.field input::placeholder,
.field textarea::placeholder { color: #9a9d9f; }

/* Projektart als Auswahlknöpfe */
.fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: .6rem; }
.choices { display: flex; flex-wrap: wrap; gap: .6rem; }
.choice { position: relative; }
.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.choice span {
  display: block;
  padding: .7rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .9375rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .18s var(--ease);
}
.choice input:hover + span { border-color: #d5d7d9; }
.choice input:checked + span {
  border-color: var(--brand);
  background: var(--brand-tint);
  color: var(--brand-dark);
}
.choice input:focus-visible + span { box-shadow: var(--ring); }

/* Einwilligung */
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: start;
  font-size: .9375rem;
  color: var(--muted);
}
.consent input {
  width: 1.15rem; height: 1.15rem;
  margin-top: .28em;
  accent-color: var(--brand);
  flex: none;
}
.consent input:focus-visible { box-shadow: var(--ring); }

/* Fehlermeldungen */
.field-error {
  display: none;
  font-size: .875rem;
  color: #b3261e;
}
.field.is-invalid .field-error,
.consent-wrap.is-invalid .field-error { display: block; margin-top: .35rem; }
.field.is-invalid input,
.field.is-invalid textarea { border-color: #b3261e; }
.field.is-invalid input:focus,
.field.is-invalid textarea:focus { box-shadow: 0 0 0 3px rgba(179, 38, 30, .25); }

/* Honeypot — für Menschen unsichtbar, für Bots verlockend */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  border-left: 3px solid var(--brand);
  background: var(--brand-tint);
  color: var(--ink);
}
.form-status--error { border-color: #b3261e; background: #fdf2f1; }

.form__footnote { font-size: .875rem; color: var(--muted); margin: 0; }

/* 9 — Kopf- und Fußbereich ------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { width: 118px; height: auto; }

.nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 2.25rem); }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  text-decoration: none;
  color: var(--muted);
  font-size: .9688rem;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.nav__list a:hover { color: var(--brand-deep); }
.nav__list a[aria-current='page'] { color: var(--ink); border-bottom-color: var(--brand); }

.nav .btn { padding: .65rem 1.35rem; font-size: .9375rem; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: .6rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .55rem .9rem;
  font: inherit;
  font-size: .9375rem;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle__bars {
  display: block;
  position: relative;
  width: 18px; height: 2px;
  background: var(--ink);
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: var(--ink);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 61.999rem) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.75rem;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a {
    display: block;
    padding: .9rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1.0625rem;
  }
  .nav__list a[aria-current='page'] { border-bottom-color: var(--line-soft); color: var(--brand-deep); }
  .nav .btn { margin-top: 1.25rem; width: 100%; }
}

/* Abschluss-Aufruf */
.cta-band {
  background: var(--brand);
  color: var(--white);
  text-align: center;
}
.cta-band h2,
.cta-band p { color: var(--white); }
.cta-band p { margin-inline: auto; }
.cta-band .btn--primary {
  background: var(--white);
  color: var(--brand-dark);
  margin-top: 2rem;
}
.cta-band .btn--primary:hover { background: var(--brand-tint); color: var(--brand-dark); }

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 3.5rem 2.5rem;
  font-size: .9375rem;
  color: var(--muted);
}
.site-footer__inner {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 48rem) {
  .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
}
/* Im Fußbereich als h2 ausgezeichnet, damit die Überschriftenfolge
   nicht von h2 auf h4 springt — optisch bleiben es kleine Labels. */
.site-footer h2 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.1rem;
  line-height: 1.4;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--brand-deep); text-decoration: underline; }
.site-footer .logo img { width: 100px; margin-bottom: 1.25rem; }
.site-footer p { max-width: 34ch; margin-bottom: 0; }

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: .875rem;
}

/* Rechtstexte */
.legal h2 { font-size: clamp(1.375rem, 2.4vw, 1.75rem); margin-top: 3rem; }
.legal h2:first-of-type { margin-top: 2rem; }
.legal h3 { font-size: 1.125rem; margin-top: 2rem; }
.legal p,
.legal li { max-width: 68ch; }
.legal ul { padding-left: 1.25rem; }
.legal li { margin-bottom: .5rem; }
.legal address { font-style: normal; margin-bottom: 1.25rem; }

/* Platzhalter-Markierung für noch fehlende Angaben */
.todo {
  background: #fff8e1;
  border-bottom: 1px dashed #c9a227;
  padding: 0 .2em;
  color: #7a6212;
}

/* 10 — Druck -------------------------------------------------------------- */

@media print {
  .site-header, .nav, .cta-band, .form, .skip-link { display: none !important; }
  body { font-size: 11pt; color: #000; }
  a { text-decoration: underline; color: #000; }
}
