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

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

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

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

:root {
  --ink: #172033;
  --ink-soft: #3a4459;
  --blue: #384a9f;
  --blue-deep: #26356f;
  --blue-soft: #4861a8;
  --pink: #ef416f;
  --pink-deep: #d84878;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dfe5ec;
  --mist: #f1f0f8;
  --sage: #d8efef;
  --sun: #fff9af;
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.13);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Raleway, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  top: 16px;
  left: 16px;
  clip: auto;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 42px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(190px, 18vw, 258px);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.contact-link {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta {
  justify-self: end;
  border: 1px solid currentColor;
  padding: 10px 17px;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
}

.header-cta:hover,
.button:hover,
.contact-link:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 18, 31, 0.86) 0%, rgba(12, 18, 31, 0.58) 42%, rgba(12, 18, 31, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 18, 31, 0.35), rgba(12, 18, 31, 0.08));
}

.hero-content {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: var(--header-height);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f090a8;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 4.7rem;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 11px;
  font-size: 1.26rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

.marked-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.marked-heading h1,
.marked-heading h2,
.marked-heading h3 {
  margin-top: 0;
}

.heading-logo {
  display: block;
  width: 34px;
  height: 34px;
  margin-top: 0.12em;
  object-fit: contain;
  opacity: 0;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 20px rgba(23, 32, 51, 0.12));
  transform: translateX(-12px) rotate(-8deg) scale(0.78);
  transition: opacity 540ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible .heading-logo {
  opacity: 1;
  transform: translateX(0) rotate(0deg) scale(1);
}

.hero-title {
  gap: 18px;
}

.hero-title .heading-logo {
  width: 54px;
  height: 54px;
  margin-top: 0.35rem;
}

.card-heading {
  gap: 10px;
}

.card-heading .heading-logo {
  width: 24px;
  height: 24px;
  margin-top: 0.05em;
}

.scribble {
  position: relative;
  display: inline-block;
}

.scribble::after {
  content: "";
  position: absolute;
  left: 0.03em;
  right: 0.03em;
  bottom: -0.09em;
  height: 0.13em;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 880ms ease 480ms forwards;
}

@keyframes draw-line {
  to {
    transform: scaleX(1);
  }
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions,
.footer-inner nav,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button.primary {
  background: var(--pink);
  color: var(--white);
}

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

.button.secondary {
  background: var(--blue);
  color: var(--white);
}

.button.text-button {
  padding-inline: 0;
  background: transparent;
  color: var(--blue);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.lead {
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.62;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(650px, 100%);
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
}

.hero-facts li {
  padding: 18px;
  background: rgba(12, 18, 31, 0.34);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 1.08rem;
}

.hero-facts span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.scroll-cue {
  position: absolute;
  left: 42px;
  bottom: 28px;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 54px;
  margin-top: 10px;
  background: currentColor;
  animation: cue 1.4s ease-in-out infinite;
}

@keyframes cue {
  50% {
    transform: translateY(10px);
    opacity: 0.45;
  }
}

.section {
  padding: 112px 0;
}

.section-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-section {
  padding: 72px 0;
  background: var(--white);
}

.split-intro,
.digital-layout,
.print-love-layout,
.about-layout,
.magazine-layout,
.contact-layout,
.report-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}

.intro-copy h2 {
  margin: 0;
  font-size: 2.25rem;
}

.intro-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.services-section {
  background: var(--paper);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
}

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

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 44px rgba(23, 32, 51, 0.07);
}

.service-grid-main .service-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.1fr);
}

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

.service-grid-main .service-card img {
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
}

.service-body {
  padding: 23px;
}

.service-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-body p,
.digital-copy p,
.about-copy p,
.magazine-copy p,
.contact-copy p,
.process-step p {
  color: var(--ink-soft);
}

.service-body a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

.service-body a::after {
  content: "->";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.service-body a:hover::after {
  transform: translateX(4px);
}

.raumwert-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(239, 65, 111, 0.28), transparent 30%),
    linear-gradient(135deg, var(--blue) 0%, #172033 100%);
  color: var(--white);
}

.raumwert-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: 58px;
}

.raumwert-copy h2 {
  max-width: 710px;
}

.raumwert-copy .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
}

.trust-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-checks li {
  position: relative;
  min-height: 54px;
  padding: 15px 16px 15px 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.trust-checks li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 20px;
  width: 14px;
  height: 8px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(-45deg);
}

.raumwert-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: 50% 45%;
  border-radius: 8px;
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.32);
}

.raumwert-section .button.primary {
  background: var(--pink);
}

.raumwert-section .button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.digital-section {
  background: linear-gradient(180deg, var(--white), var(--mist));
}

.digital-copy h2,
.about-copy h2,
.magazine-copy h2,
.contact-copy h2 {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.check-list span {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: inset 0 0 0 5px var(--white);
}

.digital-media {
  position: relative;
  min-height: 520px;
}

.media-main,
.media-float,
.media-accent {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-main {
  right: 0;
  top: 0;
  width: 66%;
  aspect-ratio: 13 / 15;
}

.media-float {
  left: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1 / 1;
}

.media-accent {
  right: 8%;
  bottom: 5%;
  width: 36%;
  aspect-ratio: 4 / 3;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--pink);
  font-size: 1.8rem;
  font-weight: 900;
}

.image-band {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
}

.image-band img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 18, 31, 0.72), rgba(12, 18, 31, 0.12));
}

.image-band-copy {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 58px;
}

.image-band-copy h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.about-section {
  background: var(--paper);
}

.about-image img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

blockquote {
  margin: 30px 0;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--pink);
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 700;
}

.print-love-section {
  background:
    linear-gradient(90deg, rgba(234, 242, 223, 0.86), rgba(251, 250, 247, 0.98));
}

.print-love-layout {
  align-items: center;
}

.print-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 45%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.print-copy .lead {
  color: var(--ink);
}

.management-section {
  background: var(--white);
}

.broker-section {
  background: var(--paper);
}

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

.feature-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 46px rgba(23, 32, 51, 0.08);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.management-section .feature-card:nth-child(1) img {
  object-position: 50% 30%;
}

.management-section .feature-card:nth-child(2) img {
  object-position: 50% 48%;
}

.management-section .feature-card:nth-child(3) img {
  object-position: 50% 42%;
}

.management-section .feature-card:nth-child(4) img {
  object-position: 50% 46%;
}

.broker-section .feature-card:nth-child(1) img {
  object-position: 50% 45%;
}

.broker-section .feature-card:nth-child(2) img {
  object-position: 50% 48%;
}

.broker-section .feature-card:nth-child(3) img {
  object-position: 50% 42%;
}

.broker-section .feature-card:nth-child(4) img {
  object-position: 50% 44%;
}

.feature-body {
  padding: 24px;
}

.feature-body p {
  color: var(--ink-soft);
}

.visibility-section {
  background: var(--sage);
}

.visibility-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.visibility-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(23, 32, 51, 0.09);
}

.visibility-feature img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.visibility-feature:first-child img {
  object-position: 50% 38%;
}

.visibility-feature:last-child img {
  object-position: 50% 30%;
}

.visibility-body {
  padding: 28px;
}

.visibility-body p {
  color: var(--ink-soft);
}

.visibility-body a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

.visibility-body a::after {
  content: "->";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.visibility-body a:hover::after {
  transform: translateX(4px);
}

.contact-section {
  background: var(--blue-deep);
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-copy address {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.contact-actions {
  flex-direction: column;
}

.contact-link {
  display: grid;
  gap: 5px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-link span {
  color: #f090a8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: 1.18rem;
}

.report-page {
  background: var(--paper);
}

.report-hero {
  padding-top: calc(var(--header-height) + 72px);
  background:
    linear-gradient(135deg, rgba(241, 240, 248, 0.92), rgba(255, 255, 255, 0.98) 52%, rgba(216, 239, 239, 0.72));
}

.report-copy h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.report-copy p {
  max-width: 760px;
  color: var(--ink-soft);
}

.report-hints {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.report-hints div {
  padding: 18px 20px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-left: 4px solid var(--pink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.06);
}

.report-hints strong,
.report-hints span {
  display: block;
}

.report-hints strong {
  color: var(--blue);
  font-weight: 900;
}

.report-hints span {
  margin-top: 4px;
  color: var(--ink-soft);
}

.report-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 58%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-form-section {
  background: var(--white);
}

.report-frame-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-frame-wrap iframe {
  display: block;
  min-height: 760px;
}

.site-footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

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

.footer-inner p {
  margin: 5px 0 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .service-grid,
  .feature-card-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .raumwert-card {
    grid-template-columns: 1fr;
  }

  .raumwert-media {
    max-width: 760px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    grid-template-columns: auto auto;
    padding: 15px 22px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 6px);
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 13px 10px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
  }

  .hero-content,
  .section-inner,
  .image-band-copy,
  .footer-inner {
    width: min(100% - 34px, 1160px);
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-top: 32px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .split-intro,
  .digital-layout,
  .print-love-layout,
  .about-layout,
  .contact-layout,
  .report-hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .report-hero {
    padding-top: calc(var(--header-height) + 54px);
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    max-width: none;
    margin-top: 18px;
  }

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

  .service-grid-main .service-card img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .trust-checks {
    grid-template-columns: 1fr;
  }

  .print-image {
    order: 2;
  }

  .print-image img,
  .feature-card img,
  .raumwert-media img {
    aspect-ratio: 16 / 10;
  }

  .digital-media {
    min-height: 440px;
  }

  .media-main {
    width: 72%;
  }

  .media-float {
    width: 52%;
  }

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

  .visibility-feature img {
    aspect-ratio: 16 / 10;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 172px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .report-copy h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-actions {
    display: grid;
    max-width: 320px;
  }

  .button {
    width: 100%;
  }

  .marked-heading {
    gap: 10px;
  }

  .heading-logo {
    width: 28px;
    height: 28px;
  }

  .hero-title .heading-logo {
    width: 38px;
    height: 38px;
    margin-top: 0.25rem;
  }

  .card-heading .heading-logo {
    width: 22px;
    height: 22px;
  }

  .service-grid,
  .feature-card-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-actions {
    display: grid;
  }

  .report-frame-wrap {
    margin-inline: -4px;
  }

  .report-frame-wrap iframe {
    min-height: 680px;
  }

  .process-step {
    min-height: auto;
  }

  .process-step span {
    margin-bottom: 30px;
  }

  .digital-media {
    min-height: 360px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
