/*
  luniak.net – statische Fassung
  Bereinigte CSS-Version
  Stand: Schwerpunkt-Leiste mit echtem Bild innerhalb der Fläche

  Schriftpfade bezogen auf:
  /assets/css/style.css

  Deshalb:
  ../fonts/…
*/

/* -------------------------------------------------------
   Lokale Schriften
------------------------------------------------------- */

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBM_Plex_Sans/IBMPlexSans-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBM_Plex_Sans/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/Barlow_Condensed/BarlowCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/Barlow_Condensed/BarlowCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/Barlow_Condensed/BarlowCondensed-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/Barlow_Condensed/BarlowCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/Barlow_Condensed/BarlowCondensed-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/Barlow_Condensed/BarlowCondensed-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------
   Variablen
------------------------------------------------------- */

:root {
  --font-sans: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Barlow Condensed", "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --paper: #FCFAF5;
  --paper-2: #F6EFE4;
  --paper-3: #EFE7DA;

  --ink: #202833;
  --ink-soft: #364453;
  --muted: #68717D;

  --line: rgba(32, 40, 51, 0.13);
  --line-strong: rgba(32, 40, 51, 0.22);

  --blue: #2C3E50;
  --blue-2: #1E2B38;
  --blue-3: #16212C;

  --orange: #F26A2E;
  --orange-dark: #D95822;
  --orange-soft: rgba(242, 106, 46, 0.10);

  --white: #FFFFFF;

  --shadow: 0 22px 64px rgba(24, 32, 40, 0.11);
  --shadow-soft: 0 10px 30px rgba(24, 32, 40, 0.07);

  --radius: 22px;
  --radius-sm: 15px;

  --max: 1120px;
  --measure: 66ch;
}

/* -------------------------------------------------------
   Basis
------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(16px, 0.9vw, 17px);
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(242, 106, 46, 0.12), transparent 30rem),
    radial-gradient(circle at 100% 14%, rgba(44, 62, 80, 0.075), transparent 28rem),
    linear-gradient(180deg, var(--paper) 0%, #F8F3EA 58%, var(--paper) 100%);
  line-height: 1.64;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
  hyphens: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(90deg, rgba(32, 40, 51, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(32, 40, 51, 0.017) 1px, transparent 1px);
  background-size: 32px 32px;
  mix-blend-mode: multiply;
}

::selection {
  background: rgba(242, 106, 46, 0.24);
}

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

a:hover {
  color: var(--orange-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(242, 106, 46, 0.42);
  outline-offset: 4px;
}

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

/* -------------------------------------------------------
   Kopfbereich
------------------------------------------------------- */

.site-header {
  width: min(var(--max), calc(100% - 38px));
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(252, 250, 245, 0.92);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 14px;
  z-index: 10;
  box-shadow: 0 8px 28px rgba(24, 32, 40, 0.055);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1;
  font-weight: 700;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.22;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 0.93rem;
  color: var(--muted);
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--ink);
}

/* -------------------------------------------------------
   Seitenraster
------------------------------------------------------- */

main {
  width: min(var(--max), calc(100% - 38px));
  margin: 0 auto;
}

.section {
  padding: 68px 0;
}

.section.tight {
  padding: 42px 0 64px;
}

.section + .section {
  border-top: 1px solid var(--line);
}

/* -------------------------------------------------------
   Hero
------------------------------------------------------- */

.hero {
  padding: 82px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.hero > * {
  min-width: 0;
}

.hero.narrow {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  padding-bottom: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-weight: 700;
  letter-spacing: 0.078em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* -------------------------------------------------------
   Typografie
------------------------------------------------------- */

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.2rem, 6.35vw, 5.7rem);
  line-height: 1.01;
  max-width: 11.5ch;
  font-weight: 800;
  letter-spacing: -0.012em;
}

.hero.narrow h1 {
  font-size: clamp(2.75rem, 5.1vw, 4.85rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(2.25rem, 3.75vw, 3.65rem);
  line-height: 1.03;
  max-width: 13.5ch;
  font-weight: 800;
  letter-spacing: -0.006em;
}

h3 {
  font-size: 1.38rem;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: 0;
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.55vw, 1.30rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.text-large {
  font-size: 1.075rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

.prose {
  max-width: var(--measure);
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  padding-left: 1.15rem;
  margin: 1rem 0;
}

.prose li {
  margin: 0.35rem 0;
}

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

/* -------------------------------------------------------
   Buttons
------------------------------------------------------- */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block: clamp(2rem, 5vh, 5rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(44, 62, 80, 0.15);
}

.button:hover {
  background: #ce550d;
  border: 1px solid #ce550d;
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--blue);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(44, 62, 80, 0.07);
  color: var(--blue);
}

/* -------------------------------------------------------
   Hero-Bild
------------------------------------------------------- */

.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue);
  box-shadow: var(--shadow);
  border: 1px solid rgba(32, 40, 51, 0.14);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card.portrait {
  max-width: 380px;
  justify-self: center;
}

.media-card.portrait img {
  aspect-ratio: 4 / 4.8;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(16, 22, 29, 0.76) 100%);
  pointer-events: none;
}

.media-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
}

.media-card figcaption strong,
.media-card figcaption span {
  display: block;
}

.media-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.05;
}

/* -------------------------------------------------------
   Schwerpunkt-Leiste mit Bild
------------------------------------------------------- */

.fact-strip {
  width: 100%;
  max-width: 760px;
  margin-top: 2rem;
  padding: 1.1rem;
  border: 1px solid rgba(44, 62, 80, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 44px rgba(44, 62, 80, 0.08);
  overflow: hidden;
}

.fact-strip-image {
  display: block;
  margin: 0 0 1rem;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
  background: var(--paper-2);
}

.fact-strip-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 930 / 319;
  object-fit: cover;
}

.fact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.fact {
  min-width: 0;
  padding: 0.05rem 0.15rem 0.1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.fact strong {
  display: block;
  margin-bottom: 0.22rem;
  font-size: 0.94rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink);
}

.fact span {
  display: block;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

/* -------------------------------------------------------
   Layouts
------------------------------------------------------- */

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(38px, 6vw, 74px);
  align-items: start;
}

.split .prose {
  max-width: 56ch;
}

/* -------------------------------------------------------
   Karten
------------------------------------------------------- */

.card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  box-shadow: 0 10px 28px rgba(24, 32, 40, 0.04);
}

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

.card.dark {
  background: var(--blue);
  color: #fff;
}

.card.dark h2,
.card.dark h3 {
  color: #fff;
}

.card.dark p,
.card.dark .muted {
  color: rgba(255, 255, 255, 0.76);
}

.card.accent {
  background: var(--orange-soft);
  border-color: rgba(242, 106, 46, 0.28);
}

.kicker {
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.065em;
  font-size: 0.76rem;
}

/* -------------------------------------------------------
   Portfolio
------------------------------------------------------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(24, 32, 40, 0.12);
  border-color: var(--line-strong);
  color: inherit;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-2);
}

.work-card div {
  padding: 18px 18px 20px;
}

.work-card .tag {
  display: block;
  margin-bottom: 9px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: 0.066em;
  text-transform: uppercase;
  font-weight: 700;
}

.work-card h3 {
  font-size: 1.28rem;
  line-height: 1.12;
}

.work-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* -------------------------------------------------------
   Listen
------------------------------------------------------- */

.check-list {
  list-style: none;
  padding: 0 !important;
  margin: 1.2rem 0 0 !important;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  margin: 0.58rem 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--orange);
}

/* -------------------------------------------------------
   Schritte
------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 22px 24px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 17px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
}

.step p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* -------------------------------------------------------
   Breadcrumb
------------------------------------------------------- */

.breadcrumb {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 28px 0 0;
}

.breadcrumb a {
  text-decoration: none;
}

/* -------------------------------------------------------
   CTA
------------------------------------------------------- */

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.page-cta h2 {
  color: #fff;
  font-size: clamp(2.45rem, 4.2vw, 3.95rem);
  max-width: 11ch;
}

.page-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0.9rem 0 0;
  max-width: 64ch;
}

.page-cta .button {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  box-shadow: none;
}

.page-cta .button:hover {
  background: var(--paper);
  color: var(--blue);
}

/* -------------------------------------------------------
   Verwandte Links
------------------------------------------------------- */

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
}

.pill:hover {
  background: #fff;
  color: var(--orange-dark);
}

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

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.contact-item strong {
  display: block;
  font-weight: 650;
}

.contact-item a {
  font-size: 1.11rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-item p {
  margin: 0.8rem 0 0;
}

/* -------------------------------------------------------
   Footer
------------------------------------------------------- */

.site-footer {
  width: min(var(--max), calc(100% - 38px));
  margin: 40px auto 24px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

/* -------------------------------------------------------
   Rechtliche Textseiten
------------------------------------------------------- */

.legal-hero {
  display: block;
  padding-bottom: 42px;
}

.legal-hero h1 {
  max-width: none;
}

.content-narrow {
  max-width: 820px;
}

.legal-text {
  font-size: 1.055rem;
  color: var(--ink-soft);
}

.legal-text h2 {
  max-width: none;
  font-size: clamp(1.62rem, 2.2vw, 2.22rem);
  line-height: 1.09;
  margin: 2.05rem 0 0.65rem;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p {
  line-height: 1.68;
  margin: 0 0 1.15rem;
}

.legal-text a {
  word-break: break-word;
}

/* Falls alte Impressum-Klassen noch irgendwo vorkommen */

.legal-layout {
  display: block;
}

.legal-card {
  max-width: 820px;
}

.legal-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.62rem, 2.2vw, 2.22rem);
  line-height: 1.09;
  margin: 2.05rem 0 0.65rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  font-size: 1rem;
  line-height: 1.68;
}

.legal-card a {
  word-break: break-word;
}

/* -------------------------------------------------------
   Kleine Helferklassen
------------------------------------------------------- */

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-32 {
  margin-top: 32px;
}

.note-link {
  margin-top: 1.1rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.note-link a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

/* -------------------------------------------------------
   Desktop-Sonderlayout: Eyebrow auf eigener Zeile
------------------------------------------------------- */

@media (min-width: 981px) {
  #arbeitsweise .split,
  #leistungen .split {
    row-gap: 18px;
  }

  #arbeitsweise .split > div:first-child,
  #leistungen .split > div:first-child {
    display: contents;
  }

  #arbeitsweise .split > div:first-child .eyebrow,
  #leistungen .split > div:first-child .eyebrow {
    grid-column: 1 / -1;
    margin: 0 0 2px;
  }

  #arbeitsweise .split > div:first-child h2,
  #leistungen .split > div:first-child h2 {
    grid-column: 1;
  }

  #arbeitsweise .split > .prose,
  #arbeitsweise .split > div:nth-child(2),
  #leistungen .split > .prose,
  #leistungen .split > div:nth-child(2) {
    grid-column: 2;
  }
}

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

@media (max-width: 980px) {
  .hero,
  .hero.narrow,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .media-card.portrait {
    justify-self: start;
    max-width: 430px;
  }

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

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

  .fact-strip {
    max-width: none;
  }

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

  .main-nav {
    display: none;
  }

  .site-header {
    position: relative;
    top: auto;
  }

  .page-cta {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  main,
  .site-header,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    margin-top: 12px;
  }

  .hero {
    padding: 48px 0 58px;
  }

  .section {
    padding: 50px 0;
  }

  .section.tight {
    padding: 34px 0 52px;
  }

  .portfolio-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .steps {
    grid-template-columns: 1fr;
  }

  .fact-strip {
    padding: 0.85rem;
    border-radius: 18px;
  }

  .fact-strip-image {
    margin-bottom: 0.85rem;
    border-radius: 13px;
  }

  .fact-strip-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.1rem);
  }

  .hero.narrow h1 {
    font-size: clamp(2.45rem, 14vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.05rem, 12vw, 3.05rem);
  }

  .lead {
    font-size: 1.06rem;
  }

  .card,
  .page-cta {
    padding: 22px;
  }

  .brand small {
    display: none;
  }

  .page-cta h2 {
    max-width: 12ch;
  }
}