:root {
  --ink: #0c0b09;
  --muted: #66625c;
  --line: rgba(12, 11, 9, 0.14);
  --paper: #f7f2e8;
  --paper-soft: #fbf8ef;
  --orange: #ff6f3c;
  --green: #9ccf8b;
  --violet: #d8c2ff;
  --blue: #dcecff;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: "Schibsted Grotesk", "Inter", "Noto Sans", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  align-items: center;
  background: rgba(251, 248, 239, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  min-height: 76px;
  padding: 16px clamp(20px, 6vw, 96px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 23px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.04em;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
}

.nav-links a {
  opacity: 0.78;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  justify-self: end;
  min-height: 44px;
  padding: 12px 20px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(250, 248, 242, 0.92) 0%, rgba(231, 235, 222, 0.94) 100%),
    #f7f2e8;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 132px clamp(20px, 7vw, 120px) 68px;
  position: relative;
}

.hero-video {
  height: 115%;
  left: 50%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 115%;
  z-index: 0;
}

.hero::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, #fbf8ef 0%, #e5eadf 56%, #d7dfd1 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-tint {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.40) 0%, rgba(251,248,239,0.18) 42%, rgba(251,248,239,0.86) 100%),
    rgba(255, 244, 224, 0.12);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-content {
  margin: -44px auto 0;
  max-width: 980px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: inline-flex;
  margin: 0 0 28px;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(54px, 8.5vw, 118px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin-bottom: 28px;
}

.hero-copy {
  color: #3e3b37;
  font-family: "Fustat", "Inter", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 auto;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 34px 0 44px;
}

.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 16px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
}

.primary-button {
  background: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(12, 11, 9, 0.16);
  color: var(--white);
}

.secondary-button {
  background: rgba(247, 242, 232, 0.78);
  border: 2px solid rgba(12, 11, 9, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

.logo-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 34px 0 42px;
  position: relative;
  z-index: 2;
}

.logo-band p {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  padding: 0 clamp(20px, 6vw, 96px);
  text-transform: uppercase;
}

.logo-marquee {
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  position: relative;
  width: 100%;
}

.logo-track {
  align-items: center;
  animation: logo-marquee 28s linear infinite;
  display: flex;
  gap: clamp(44px, 7vw, 92px);
  --logo-height: clamp(22px, 2.15vw, 30px);
  width: max-content;
}

.logo-mark {
  --logo-max-width: 146px;
  --logo-scale: 1;

  background: var(--muted);
  flex: 0 0 auto;
  height: calc(var(--logo-height) * var(--logo-scale));
  mask-image: var(--logo);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  max-width: var(--logo-max-width);
  opacity: 0.82;
  width: min(calc(var(--logo-height) * var(--logo-scale) * var(--logo-ratio)), var(--logo-max-width));
  -webkit-mask-image: var(--logo);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.logo-ugg {
  --logo: url("assets/logos/ugg.png");
  --logo-ratio: 2.337;
  --logo-scale: 1.55;
}

.logo-checkmk {
  --logo: url("assets/logos/checkmk.png");
  --logo-ratio: 3.004;
  --logo-scale: 1.12;
}

.logo-check24 {
  --logo: url("assets/logos/check24.png");
  --logo-ratio: 3.779;
  --logo-scale: 1;
}

.logo-payone {
  --logo: url("assets/logos/payone.png");
  --logo-ratio: 3.875;
  --logo-scale: 0.96;
}

.logo-interimaid {
  --logo: url("assets/logos/interimaid.png");
  --logo-ratio: 4.634;
  --logo-max-width: 128px;
  --logo-scale: 0.88;
}

.logo-gf-networks {
  --logo: url("assets/logos/gf-networks.png");
  --logo-ratio: 1;
  --logo-scale: 0.68;
}

.logo-skyworth {
  --logo: url("assets/logos/skyworth.png");
  --logo-ratio: 7.172;
  --logo-max-width: 124px;
  --logo-scale: 0.78;
}

.logo-ippen-digital {
  --logo: url("assets/logos/ippen-digital.png");
  --logo-ratio: 4.471;
  --logo-scale: 0.86;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(22px, 3.5vw, 46px)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
    width: auto;
  }
}

.section {
  padding: 112px clamp(20px, 7vw, 120px);
}

.services {
  background: var(--paper-soft);
}

.service-heading h2,
.project-heading h2,
.contact h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin-bottom: 22px;
}

.service-heading p,
.project-heading p,
.contact-card p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  max-width: 740px;
}

.letter-reveal-word {
  display: inline-block;
  white-space: nowrap;
}

.letter-reveal-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.42em);
  transition:
    opacity 480ms ease,
    transform 640ms cubic-bezier(0.18, 0.72, 0.18, 1);
  transition-delay: calc(var(--letter-index) * 13ms);
}

.letter-reveal.is-visible .letter-reveal-char {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .letter-reveal-char {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-list {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-list article {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
}

.service-list span {
  color: var(--orange);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 56px;
}

.service-list h3 {
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.service-list p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.quote-section {
  background: var(--ink);
  color: var(--paper);
  padding: 112px clamp(20px, 8vw, 148px);
}

.quote-section blockquote {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(42px, 6vw, 94px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0 0 28px;
  max-width: 1120px;
}

.quote-section blockquote span {
  color: var(--orange);
}

.quote-section p {
  color: rgba(247, 242, 232, 0.72);
  font-size: 20px;
  margin-bottom: 0;
}

.projects {
  background: var(--paper);
}

.projects > .section-kicker {
  display: block;
  margin-bottom: 48px;
}

.services > .section-kicker {
  display: block;
  margin-bottom: 48px;
}

.service-heading,
.project-heading {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 42px;
}

.project-heading h2 {
  max-width: 820px;
}

.project-heading p {
  max-width: 520px;
}

.service-heading {
  display: grid;
  grid-template-columns: minmax(540px, 58%) minmax(0, 1fr);
}

.service-heading h2 {
  max-width: 660px;
}

.service-heading p {
  max-width: 520px;
}

.project-showcase {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.project-card {
  --project-card-image: url("assets/series-background.jpeg");

  background:
    radial-gradient(circle at 50% 0%, rgba(36, 233, 197, 0.18), transparent 38%),
    #03090d;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(36, 26, 14, 0.16);
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.project-theme-orders {
  --project-card-image: url("assets/orders-background.jpeg");
}

.project-theme-leads {
  --project-card-image: url("assets/leads-background.jpeg");
}

.project-theme-chatbot {
  --project-card-image: url("assets/chatbot-background.jpeg");
}

.project-card::before,
.project-card::after {
  content: "";
  inset: -12%;
  pointer-events: none;
  position: absolute;
}

.project-card::before {
  animation: project-card-image-drift 18s ease-in-out infinite alternate;
  background: var(--project-card-image) center / cover no-repeat;
  filter: saturate(0.96) brightness(0.82);
  will-change: transform, filter;
  z-index: 0;
}

.project-card::after {
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 232, 194, 0.32) 0 9%, transparent 34%),
    linear-gradient(108deg, transparent 0 15%, rgba(255, 255, 255, 0.16) 16%, transparent 18% 100%),
    linear-gradient(24deg, transparent 0 46%, rgba(255, 255, 255, 0.1) 47%, transparent 50% 100%),
    repeating-linear-gradient(90deg, rgba(98, 255, 220, 0.1) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(74deg, transparent 0 18px, rgba(255, 255, 255, 0.035) 19px 22px),
    radial-gradient(circle at 10% 95%, rgba(0, 0, 0, 0.66) 0 12%, transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), transparent 56%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 50%);
  animation: project-card-light-sweep 16s ease-in-out infinite alternate;
  filter: blur(0.2px);
  will-change: transform, opacity;
  z-index: 1;
}

.project-copy {
  bottom: clamp(28px, 5vw, 58px);
  color: var(--paper-soft);
  left: clamp(26px, 5vw, 64px);
  position: absolute;
  width: min(440px, calc(100% - 560px));
  z-index: 2;
}

.project-tag {
  align-items: center;
  background: rgba(2, 18, 27, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  flex-wrap: wrap;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.25;
  margin-bottom: 18px;
  max-width: 100%;
  padding: 8px 12px;
  backdrop-filter: blur(14px);
}

.project-tag-dot {
  background: #28d28f;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(40, 210, 143, 0.14);
  height: 7px;
  width: 7px;
}

.project-copy h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 4.7vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-bottom: 18px;
}

.project-copy p {
  color: rgba(251, 248, 239, 0.78);
  font-family: "Fustat", "Inter", sans-serif;
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 500;
  line-height: 1.52;
  margin-bottom: 0;
  max-width: 430px;
}

.project-impact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.project-impact-row span {
  background: rgba(5, 21, 28, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 100%;
  padding: 9px 12px;
  backdrop-filter: blur(12px);
}

.project-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06) 38%, rgba(22, 179, 156, 0.12)),
    linear-gradient(180deg, rgba(229, 248, 247, 0.2), rgba(9, 28, 39, 0.22)),
    rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(166, 255, 232, 0.26);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -18px 48px rgba(53, 233, 198, 0.06),
    0 20px 46px rgba(4, 20, 31, 0.26),
    0 0 42px rgba(35, 233, 196, 0.1);
  color: var(--white);
  padding: 26px;
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  top: 50%;
  transform: translateY(-44%);
  width: min(390px, calc(100% - 48px));
  z-index: 3;
  animation: project-panel-parallax 18s ease-in-out infinite alternate;
  backdrop-filter: blur(22px) saturate(130%);
  will-change: transform;
}

.project-panel h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 20px;
}

.project-panel-header {
  align-items: center;
  display: flex;
  gap: 13px;
  margin-bottom: 16px;
}

.project-panel-icon {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.project-panel-header p {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
}

.project-panel-header span {
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  font-size: 12px;
  gap: 7px;
}

.project-panel-header span::before {
  background: #28d28f;
  border-radius: 999px;
  content: "";
  height: 6px;
  margin-top: 4px;
  width: 6px;
}

.project-flow {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.project-flow li {
  align-items: center;
  background: rgba(10, 31, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  display: grid;
  gap: 11px;
  grid-template-columns: auto 1fr auto;
  min-height: 58px;
  padding: 12px;
}

.project-marker {
  background: var(--step-color, #28d28f);
  border-radius: 999px;
  box-shadow: 0 0 0 5px var(--step-ring, rgba(40, 210, 143, 0.2));
  height: 11px;
  width: 11px;
}

.project-flow strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.project-flow small {
  color: rgba(255, 255, 255, 0.58);
  display: block;
  font-size: 12px;
  line-height: 1.25;
  margin-top: 3px;
}

.project-flow b {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.project-result {
  background: rgba(12, 80, 68, 0.25);
  border: 1px solid rgba(40, 210, 143, 0.28);
  border-radius: 7px;
  margin-top: 14px;
  padding: 15px;
}

.project-result strong {
  color: #49ecaa;
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.project-result span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 12px;
  line-height: 1.35;
}

@keyframes project-card-image-drift {
  0% {
    filter: saturate(0.96) brightness(0.82);
    transform: scale(1.02) translate3d(-0.4%, -0.2%, 0);
  }

  100% {
    filter: saturate(1.04) brightness(0.9);
    transform: scale(1.08) translate3d(0.8%, 0.5%, 0);
  }
}

@keyframes project-card-light-sweep {
  0% {
    opacity: 0.78;
    transform: translate3d(-1.2%, -0.4%, 0);
  }

  100% {
    opacity: 0.92;
    transform: translate3d(1.2%, 0.8%, 0);
  }
}

@keyframes project-panel-parallax {
  0% {
    transform: translateY(-44%) translate3d(0, 0, 0);
  }

  100% {
    transform: translateY(-44%) translate3d(0, -7px, 0);
  }
}

.contact {
  align-items: start;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 194, 255, 0.54), transparent 32%),
    radial-gradient(circle at 8% 88%, rgba(255, 111, 60, 0.24), transparent 28%),
    var(--paper-soft);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 0.65fr;
}

.contact-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 11, 9, 0.12);
  box-shadow: 0 24px 80px rgba(36, 26, 14, 0.10);
  padding: 30px;
}

.contact-card .primary-button {
  margin: 10px 0 18px;
}

.contact-card small {
  color: var(--muted);
  display: block;
}

.footer {
  align-items: start;
  background: var(--ink);
  color: rgba(247, 242, 232, 0.74);
  display: grid;
  font-size: 14px;
  gap: clamp(28px, 6vw, 86px);
  grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1.35fr);
  padding: 40px clamp(20px, 6vw, 96px);
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand span:first-child {
  color: var(--paper);
  font-weight: 700;
}

.imprint {
  display: grid;
  gap: 0 28px;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
}

.imprint h2 {
  color: var(--paper);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.imprint-grid {
  display: contents;
}

.imprint address,
.imprint p {
  line-height: 1.55;
  margin: 0;
}

.imprint address {
  grid-column: 1;
  grid-row: 2;
  font-style: normal;
}

.imprint-details {
  display: grid;
  gap: 12px;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.imprint strong {
  color: var(--paper);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .project-card {
    min-height: auto;
    padding: 34px 18px 18px;
  }

  .project-copy,
  .project-panel {
    inset: auto;
    max-width: none;
    position: relative;
    transform: none;
    width: 100%;
  }

  .project-copy {
    margin-bottom: 26px;
  }

  .project-panel {
    animation: none;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    background: transparent;
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
    justify-content: center;
    margin: 0 -20px -16px;
    order: 3;
    overflow-x: auto;
    padding: 12px 20px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 920px;
    padding-top: 154px;
  }

  .service-list,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-list article {
    min-height: auto;
  }

  .service-list span {
    margin-bottom: 32px;
  }

  .service-heading,
  .project-heading {
    display: block;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 820px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 55px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .section,
  .quote-section {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .project-card {
    border-radius: 10px;
    padding-inline: 14px;
  }

  .project-copy h3 {
    font-size: 34px;
  }

  .project-impact-row {
    gap: 8px;
  }

  .project-impact-row span {
    font-size: 12px;
  }

  .project-flow li {
    grid-template-columns: auto 1fr;
  }

  .project-flow b {
    grid-column: 2;
  }

  .footer {
    align-items: flex-start;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .imprint {
    display: block;
  }

  .imprint-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .imprint address,
  .imprint-details {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-card::before,
  .project-card::after,
  .project-panel {
    animation: none;
  }
}
