:root {
  --ink: #073b34;
  --ink-deep: #032e29;
  --ink-soft: #315f59;
  --paper: #f7f2e7;
  --paper-light: #fffdf8;
  --mint: #dce9e2;
  --mint-deep: #bdd3c9;
  --gold: #e3a11a;
  --gold-light: #f6cd71;
  --coral: #dd765e;
  --line: rgba(7, 59, 52, 0.16);
  --shadow: 0 28px 70px rgba(3, 46, 41, 0.14);
  --radius: 24px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(7, 59, 52, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 59, 52, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper-light);
  background: var(--ink-deep);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.status-bar {
  color: var(--paper-light);
  background: var(--ink-deep);
  font-size: 0.78rem;
}

.status-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding-block: 8px;
  text-align: center;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(227, 161, 26, 0.15);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 231, 0.96);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold);
  border: 1px solid rgba(227, 161, 26, 0.56);
  border-radius: 50%;
  background: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 4px 2px;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--coral);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(52px, 8vw, 104px);
}

.hero::before {
  content: "";
  position: absolute;
  width: min(66vw, 760px);
  aspect-ratio: 1;
  right: -24vw;
  top: -20vw;
  border: 1px solid rgba(227, 161, 26, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 52px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 12vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--coral);
  font-style: italic;
}

.hero__lead {
  max-width: 670px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
}

.availability {
  max-width: 690px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(221, 118, 94, 0.4);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 12px 34px rgba(3, 46, 41, 0.07);
}

.availability__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  background: var(--coral);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.availability strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.availability p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.hero__proof {
  max-width: 680px;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  position: relative;
  padding-left: 26px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero__proof li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.book-stage {
  position: relative;
  width: min(74vw, 410px);
  margin-inline: auto;
  padding: 18px;
}

.book-stage__halo {
  position: absolute;
  inset: 7% 0 3%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 161, 26, 0.28), rgba(227, 161, 26, 0) 70%);
}

.book-cover {
  position: relative;
  z-index: 2;
  border: 10px solid var(--paper-light);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.book-note {
  position: absolute;
  z-index: 3;
  min-width: 102px;
  padding: 12px 14px;
  color: var(--paper-light);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: var(--ink-deep);
  box-shadow: 0 18px 38px rgba(3, 46, 41, 0.22);
}

.book-note span,
.book-note small {
  display: block;
}

.book-note span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1;
}

.book-note small {
  margin-top: 4px;
  font-size: 0.66rem;
  font-weight: 700;
}

.book-note--top {
  top: 4%;
  right: 0;
}

.book-note--bottom {
  bottom: 8%;
  left: 0;
}

.signal-strip {
  color: var(--paper-light);
  background: var(--ink);
}

.signal-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-strip__grid div {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-strip__grid div:nth-child(2n) {
  border-right: 0;
}

.signal-strip strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.signal-strip span {
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(74px, 10vw, 132px);
}

.split-heading {
  display: grid;
  gap: 24px;
  margin-bottom: 46px;
}

.split-heading h2,
.seller-card h2,
.legal-section h2 {
  max-width: 750px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 7.6vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.split-heading > p {
  max-width: 580px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.outcome-grid {
  display: grid;
  gap: 16px;
}

.outcome-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.outcome-card--dark {
  color: var(--paper-light);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.outcome-card__number {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.outcome-card h3 {
  margin: 34px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
}

.outcome-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.outcome-card--dark p {
  color: rgba(255, 253, 248, 0.72);
}

.filter-section {
  padding-block: clamp(72px, 10vw, 124px);
  color: var(--paper-light);
  background: var(--ink-deep);
}

.filter-section__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.filter-visual {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-light);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.filter-copy h2 {
  margin-bottom: 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 7vw, 4.55rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.filter-list {
  margin: 0;
}

.filter-list > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.filter-list > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.filter-list dt {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.filter-list dd {
  margin: 0;
}

.filter-list strong,
.filter-list span {
  display: block;
}

.filter-list strong {
  margin-bottom: 3px;
  font-size: 0.94rem;
}

.filter-list span {
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.8rem;
}

.preview-section {
  background: rgba(255, 253, 248, 0.42);
}

.preview-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.preview-list {
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: rgba(220, 233, 226, 0.56);
}

.preview-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 720;
}

.preview-list li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.page-preview {
  margin: 0;
  padding: 12px;
  border-radius: 18px;
  background: var(--paper-light);
  box-shadow: 0 24px 54px rgba(3, 46, 41, 0.12);
}

.page-preview img {
  width: 100%;
  border: 1px solid rgba(7, 59, 52, 0.08);
}

.page-preview figcaption {
  padding: 14px 6px 3px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.seller-section {
  padding-block: clamp(72px, 10vw, 120px);
}

.seller-card {
  display: grid;
  gap: 40px;
  padding: clamp(26px, 6vw, 64px);
  color: var(--paper-light);
  border-radius: clamp(22px, 4vw, 36px);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.seller-card__intro p:last-child {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.7);
}

.seller-details {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.seller-details > div {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.seller-details dt {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seller-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
  font-weight: 650;
}

.seller-details a {
  color: var(--paper-light);
}

.legal-section {
  padding-block: 0 clamp(80px, 12vw, 140px);
}

.legal-section h2 {
  margin-bottom: 40px;
}

.legal-links {
  display: grid;
  gap: 12px;
}

.legal-links a {
  min-height: 128px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-content: center;
  gap: 2px 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.65);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.legal-links a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(3, 46, 41, 0.09);
}

.legal-links span {
  grid-row: span 2;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.legal-links strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.legal-links small {
  color: var(--ink-soft);
}

.site-footer {
  padding-block: 50px 28px;
  color: var(--paper-light);
  background: var(--ink-deep);
}

.site-footer__grid {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
}

.site-footer__grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__grid p {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
}

.site-footer__grid > div:last-child {
  display: grid;
  gap: 6px;
  overflow-wrap: anywhere;
  font-size: 0.82rem;
}

.site-footer__grid a {
  color: var(--paper-light);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 20px;
  color: rgba(255, 253, 248, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
}

/* Dokumenty informacyjne */
.legal-page {
  background: var(--paper);
}

.legal-header {
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 750;
}

.legal-main {
  padding-block: clamp(54px, 9vw, 100px);
}

.legal-document {
  width: min(100%, 860px);
  margin-inline: auto;
}

.legal-document__head {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-document__head h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 9vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.legal-document__head > p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
}

.legal-notice {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  margin: 28px 0;
  padding: 18px;
  border: 1px solid rgba(221, 118, 94, 0.42);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.72);
}

.legal-notice span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  border-radius: 50%;
  background: var(--coral);
  font-weight: 800;
}

.legal-notice p {
  margin: 0;
  font-size: 0.86rem;
}

.legal-document section {
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
}

.legal-document h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
}

.legal-document p,
.legal-document li,
.legal-document dd {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.legal-document ul,
.legal-document ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-data {
  margin: 0;
}

.legal-data > div {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.legal-data > div:last-child {
  border-bottom: 0;
}

.legal-data dt {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-data dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 700;
}

.legal-document a {
  overflow-wrap: anywhere;
}

.legal-version {
  margin-top: 36px;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-block: 48px;
}

.not-found__card {
  max-width: 760px;
  padding: clamp(30px, 7vw, 68px);
  border: 1px solid var(--line);
  border-radius: clamp(22px, 5vw, 36px);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
}

.not-found h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 10vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.not-found p:not(.eyebrow) {
  color: var(--ink-soft);
}

@media (min-width: 560px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .signal-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .signal-strip__grid div,
  .signal-strip__grid div:nth-child(2n) {
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .signal-strip__grid div:last-child {
    border-right: 0;
  }

  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-card--dark {
    grid-column: 1 / -1;
  }

  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-list {
    grid-column: 1 / -1;
  }

  .legal-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-links a:last-child {
    grid-column: 1 / -1;
  }

  .seller-details > div,
  .legal-data > div {
    grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
    gap: 20px;
  }
}

@media (min-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(14px);
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
    align-items: end;
  }

  .outcome-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .outcome-card--dark {
    grid-column: auto;
  }

  .seller-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.95fr);
    align-items: center;
  }

  .legal-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-links a:last-child {
    grid-column: auto;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  }
}

@media (min-width: 940px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 7.3vw, 6.6rem);
  }

  .filter-section__grid {
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(56px, 8vw, 110px);
  }

  .preview-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(210px, 0.45fr) minmax(210px, 0.45fr);
    gap: 28px;
  }

  .preview-list {
    grid-column: auto;
    align-self: center;
    padding: 34px;
  }

  .page-preview--left {
    margin-top: 10px;
  }

  .page-preview--right {
    margin-top: 60px;
  }
}

@media (max-width: 559px) {
  .site-header__inner {
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
  }

  .site-nav a {
    font-size: 0.76rem;
  }

  .hero h1 br {
    display: none;
  }

  .book-note {
    min-width: 88px;
    padding: 10px 12px;
  }

  .book-note span {
    font-size: 1.45rem;
  }
}

@media (max-width: 359px) {
  .shell {
    width: calc(100% - 24px);
  }

  .site-nav {
    gap: 2px 10px;
  }

  .availability {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 14px;
  }

  .availability__icon {
    width: 36px;
    height: 36px;
  }

  .book-stage {
    width: 88vw;
  }

  .book-note--top {
    right: 4px;
  }

  .book-note--bottom {
    left: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .status-bar,
  .site-header,
  .skip-link {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .legal-document {
    width: 100%;
  }
}
