:root {
  --green: #b8d000;
  --green-dark: #819500;
  --ink: #1d2327;
  --ink-soft: #2b3338;
  --muted: #667078;
  --paper: #f3f3ef;
  --white: #ffffff;
  --line: #d7dbd7;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  min-height: 88px;
  grid-template-columns: 150px 1fr auto;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-right: 1px solid var(--line);
}

.brand picture {
  display: flex;
}

.brand img {
  width: 103px;
  height: 72px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3.4vw, 3.8rem);
  padding: 0 clamp(1.5rem, 4vw, 4.5rem);
}

.main-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.48rem;
  left: 0;
  height: 3px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  display: flex;
  min-width: 236px;
  flex-direction: column;
  justify-content: center;
  padding: 0.9rem 2.1rem;
  background: var(--green);
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 900;
  text-decoration: none;
}

.header-call span {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: max(720px, calc(100svh - 88px));
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(17, 26, 33, 0.98) 0%,
      rgba(17, 26, 33, 0.91) 32%,
      rgba(17, 26, 33, 0.66) 52%,
      rgba(17, 26, 33, 0.16) 78%,
      rgba(17, 26, 33, 0.04) 100%
    ),
    linear-gradient(0deg, rgba(17, 26, 33, 0.42), transparent 46%);
}

.hero-shade::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(1.8rem, 6.8vw, 7rem);
  width: clamp(10px, 1.1vw, 17px);
  background: var(--green);
  clip-path: polygon(62% 0, 100% 0, 38% 56%, 0 56%);
  content: "";
}

.hero-logo-panel {
  position: absolute;
  top: clamp(2rem, 6vh, 4.5rem);
  right: 0;
  display: grid;
  width: clamp(235px, 24vw, 390px);
  min-height: clamp(150px, 17vw, 235px);
  place-items: center;
  padding: clamp(1.2rem, 2.8vw, 2.8rem) clamp(1.4rem, 3.3vw, 3.8rem);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(17, 26, 33, 0.2);
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
  backdrop-filter: blur(5px);
}

.hero-logo-panel picture {
  display: flex;
}

.hero-logo-panel img {
  width: clamp(150px, 13vw, 180px);
  height: auto;
  object-fit: contain;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1060px, calc(100% - 2.5rem));
  min-height: max(720px, calc(100svh - 88px));
  flex-direction: column;
  justify-content: center;
  padding: clamp(8rem, 15vh, 12rem) clamp(1.25rem, 8.5vw, 9rem) clamp(6rem, 12vh, 9rem);
}

.hero-copy .eyebrow {
  color: var(--green);
}

.hero h1 {
  margin-bottom: 1.45rem;
  font-size: clamp(4rem, 6.15vw, 7.15rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  display: block;
}

.hero-services {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  margin-bottom: 1.9rem;
  padding-top: 0.85rem;
  border-top: 5px solid var(--green);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.75vw, 1.78rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.hero-services span {
  white-space: nowrap;
}

.hero-services span:not(:last-child)::after {
  margin: 0 0.5rem;
  color: var(--green);
  content: "•";
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 2px solid var(--green);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--green);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: transparent;
  color: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-route-line {
  position: absolute;
  bottom: 8%;
  left: 0;
  z-index: 1;
  width: min(40vw, 720px);
  border-top: clamp(5px, 0.48vw, 8px) solid var(--green);
}

.hero-route-line::after {
  position: absolute;
  top: calc(clamp(5px, 0.48vw, 8px) * -1);
  right: -85px;
  width: 100px;
  height: 80px;
  border-top: clamp(5px, 0.48vw, 8px) solid var(--green);
  content: "";
  transform: rotate(39deg);
  transform-origin: left top;
}

.capability-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green);
}

.capability-band p {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 1.25rem clamp(1rem, 2.4vw, 2rem);
  border-right: 1px solid rgba(29, 35, 39, 0.22);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.capability-band span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 500;
  opacity: 0.62;
}

.section-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 5.8vw, 6.5rem);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  column-gap: clamp(3rem, 8vw, 9rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2,
.media-feature h2,
.audiences h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 920;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.section-intro > p:last-child {
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-intro.compact {
  display: block;
  max-width: 850px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(29, 35, 39, 0.12);
}

.service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe2dc;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.025);
}

.service-image span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--green);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-copy {
  display: flex;
  min-height: 350px;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.4rem, 2.5vw, 2.1rem);
}

.service-copy > p:first-child {
  margin-bottom: 0.7rem;
  color: var(--green-dark);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-copy h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-rule {
  width: 44px;
  height: 4px;
  margin: 1.4rem 0;
  background: var(--green);
}

.service-copy > p:last-of-type {
  color: var(--muted);
}

.service-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-copy a span {
  color: var(--green-dark);
  font-size: 1.15rem;
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  background: var(--green);
}

.media-feature-image {
  min-height: 700px;
  overflow: hidden;
}

.media-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem) clamp(2rem, 7vw, 8rem);
}

.media-feature-copy .eyebrow {
  color: var(--ink);
}

.media-feature-copy > p:not(.eyebrow) {
  margin: 2rem 0;
  font-size: 1.05rem;
}

.media-feature-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.media-feature-copy li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(29, 35, 39, 0.36);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.workflow {
  padding-bottom: clamp(6rem, 10vw, 11rem);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  list-style: none;
}

.workflow-grid li {
  min-height: 340px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.workflow-grid span {
  display: block;
  margin-bottom: 4rem;
  color: var(--green-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.workflow-grid h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.workflow-grid p {
  margin: 0;
  color: var(--muted);
}

.audiences {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem);
  background: var(--ink);
  color: var(--white);
}

.audiences .eyebrow {
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
  color: var(--green);
}

.audiences > div {
  display: grid;
  max-width: var(--max-width);
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 8vw, 9rem);
  margin: 0 auto;
}

.audiences ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.audiences li {
  padding: 1.05rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 7vw, 8rem);
  background: var(--white);
}

.contact-copy p:last-child {
  max-width: 580px;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-actions {
  align-self: center;
  border-top: 1px solid var(--ink);
}

.contact-actions > * {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--ink);
  font-style: normal;
  text-decoration: none;
}

.contact-actions span {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.35;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 2.2rem clamp(1.25rem, 5vw, 5rem);
  background: var(--ink-soft);
  color: var(--white);
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.footer-mark {
  display: grid;
  width: 58px;
  flex: 0 0 auto;
  aspect-ratio: 1;
  place-items: center;
  background: var(--green);
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
}

.footer-brand-block p,
.site-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-style: normal;
}

.footer-brand-block strong {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
}

.site-footer nav a {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 8rem) clamp(6rem, 10vw, 10rem);
}

.legal-page-head {
  max-width: 1000px;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.legal-page-head > a {
  display: inline-block;
  margin-bottom: 3rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-page-head h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  font-weight: 930;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.legal-page-head > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-document {
  color: #374047;
}

.legal-document section {
  padding: 2rem;
  background: var(--white);
  border-top: 4px solid var(--green);
}

.legal-document h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 1.3rem;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document a {
  text-decoration-color: var(--green-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2rem;
}

.two-column-document {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.privacy-document {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.privacy-document section:nth-child(2) {
  grid-row: span 2;
}

:focus-visible {
  outline: 3px solid #ff7a00;
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .hero-copy {
    padding-right: 4rem;
    padding-left: 4rem;
  }

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

  .contact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 132px;
  }

  .site-header {
    grid-template-columns: 130px 1fr auto;
  }

  .main-nav {
    gap: 1.4rem;
    padding: 0 1.5rem;
  }

  .header-call {
    min-width: 150px;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
    font-size: 0.85rem;
  }

  .hero-copy {
    width: min(880px, calc(100% - 2rem));
    min-height: max(700px, calc(100svh - 88px));
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .hero-logo-panel {
    width: 235px;
    min-height: 150px;
  }

  .capability-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-band p {
    border-bottom: 1px solid rgba(29, 35, 39, 0.22);
  }

  .section-intro,
  .audiences > div,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-intro h2 {
    margin-bottom: 2rem;
  }

  .media-feature {
    grid-template-columns: 1fr;
  }

  .media-feature-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid li {
    min-height: 0;
  }

  .workflow-grid span {
    margin-bottom: 2rem;
  }

  .contact {
    gap: 3rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 105px 1fr auto;
    min-height: 0;
  }

  .brand {
    padding: 0.3rem 0.7rem;
  }

  .brand img {
    width: 78px;
    height: 58px;
  }

  .header-call {
    min-width: 96px;
    padding: 0.8rem 1rem;
    font-size: 0;
  }

  .header-call span {
    display: none;
  }

  .header-call::after {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    content: "Anrufen";
    text-transform: uppercase;
  }

  .main-nav {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 0;
    padding: 0.8rem 1rem;
    border-top: 1px solid var(--line);
  }

  .main-nav a {
    font-size: 0.62rem;
  }

  .hero-copy {
    width: 100%;
    min-height: max(790px, calc(100svh - 111px));
    padding: 12.5rem 1.25rem 6rem;
  }

  .hero {
    min-height: max(790px, calc(100svh - 111px));
  }

  .hero-background {
    object-position: 62% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(17, 26, 33, 0.97) 0%,
        rgba(17, 26, 33, 0.89) 52%,
        rgba(17, 26, 33, 0.56) 100%
      ),
      linear-gradient(0deg, rgba(17, 26, 33, 0.62), transparent 50%);
  }

  .hero-shade::before {
    left: 0.8rem;
    width: 8px;
  }

  .hero-logo-panel {
    top: 1.3rem;
    width: 170px;
    min-height: 112px;
    padding: 1.15rem 1.4rem 1.15rem 2rem;
  }

  .hero-logo-panel img {
    width: 120px;
  }

  .hero h1 {
    margin-bottom: 1.15rem;
    font-size: clamp(2.75rem, 13.2vw, 4.5rem);
    line-height: 0.98;
  }

  .hero-services {
    padding-top: 0.75rem;
    border-top-width: 4px;
    font-size: 0.96rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-route-line {
    bottom: 3.5%;
    width: 48vw;
  }

  .hero-route-line::after {
    right: -54px;
    width: 67px;
    height: 55px;
  }

  .capability-band {
    grid-template-columns: 1fr;
  }

  .capability-band p {
    min-height: 52px;
    padding: 0.9rem 1.25rem;
  }

  .section-intro h2,
  .media-feature h2,
  .audiences h2,
  .contact h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-copy {
    min-height: 330px;
  }

  .media-feature-copy {
    padding: 4.5rem 1.25rem;
  }

  .audiences {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .contact-actions > * {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer nav {
    grid-column: auto;
  }

  .legal-page {
    padding-top: 3.5rem;
  }

  .legal-page-head > a {
    margin-bottom: 2rem;
  }

  .legal-page-head h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .two-column-document,
  .privacy-document {
    grid-template-columns: 1fr;
  }

  .privacy-document section:nth-child(2) {
    grid-row: auto;
  }

  .legal-document section {
    padding: 1.4rem;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .capability-band {
    display: none;
  }

  body,
  .hero,
  .audiences,
  .contact,
  .media-feature {
    background: white;
    color: black;
  }

  .hero,
  .media-feature,
  .contact,
  .audiences > div {
    display: block;
  }

  .hero-background,
  .media-feature-image {
    max-height: 340px;
  }
}
