:root {
  --gn-ivory: #efe4d6;
  --gn-bronze: #c4ad9e;
  --gn-gold: #dcc2a4;
  --gn-umber: #1a120d;
  --gn-onyx: #0f0a07;
  --gn-shadow: rgba(5, 4, 3, 0.55);
}

.gn-imprint-page {
  background:
    radial-gradient(circle at 18% 18%, rgba(94, 70, 50, 0.45), transparent 45%),
    radial-gradient(circle at 78% 8%, rgba(120, 90, 65, 0.35), transparent 40%),
    linear-gradient(165deg, #0d0907 0%, #1a120d 55%, #120d0a 100%);
  color: var(--gn-ivory);
  font-family: "Source Sans 3", sans-serif;
}

.gn-imprint-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.gn-imprint-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
}

.gn-imprint-hero-bg {
  position: absolute;
  inset: -20% 0 0;
  background:
    radial-gradient(circle at 35% 20%, rgba(196, 173, 158, 0.3), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(140, 110, 85, 0.35), transparent 60%),
    linear-gradient(180deg, rgba(15, 10, 7, 0.2) 0%, rgba(15, 10, 7, 0.7) 100%);
  opacity: 0.9;
  animation: gnHalo 12s ease-in-out infinite alternate;
}

.gn-imprint-hero-content {
  position: relative;
  z-index: 1;
}

.gn-imprint-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 12px;
  color: rgba(220, 194, 164, 0.7);
  margin-bottom: 24px;
  animation: gnReveal 0.9s ease both;
}

.gn-imprint-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 76px);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  animation: gnReveal 1.1s ease both;
}

.gn-imprint-sub {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(239, 228, 214, 0.8);
  animation: gnReveal 1.4s ease both;
}

.gn-imprint-content {
  padding: 40px 0 140px;
}

.gn-imprint-card {
  padding: 34px 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(196, 173, 158, 0.25);
  background: linear-gradient(160deg, rgba(20, 14, 11, 0.96), rgba(30, 20, 15, 0.92));
  box-shadow: 0 24px 60px rgba(5, 4, 3, 0.5);
  animation: gnLift 1s ease both;
}

.gn-imprint-card:nth-child(2) {
  animation-delay: 0.1s;
}

.gn-imprint-card:nth-child(3) {
  animation-delay: 0.2s;
}

.gn-imprint-card:nth-child(4) {
  animation-delay: 0.3s;
}

.gn-imprint-card:nth-child(5) {
  animation-delay: 0.4s;
}

.gn-imprint-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  margin-bottom: 16px;
  color: rgba(239, 228, 214, 0.95);
}

.gn-imprint-card p {
  color: rgba(239, 228, 214, 0.7);
  line-height: 1.8;
  margin-bottom: 12px;
}

.gn-imprint-card a {
  color: rgba(220, 194, 164, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(220, 194, 164, 0.5);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gn-imprint-card a:hover {
  color: rgba(239, 228, 214, 0.95);
  border-color: rgba(239, 228, 214, 0.7);
}

.gn-imprint-footer .real-footer {
  background: rgba(10, 7, 6, 0.9);
}
.gn-imprint-footer {
  padding: 0;
}
.gn-imprint-footer .real-footer {
  padding-left: 60px;
  padding-right: 60px;
}

@keyframes gnReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gnLift {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gnHalo {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}

@media (max-width: 991px) {
  .gn-imprint-hero {
    padding: 120px 0 70px;
  }

  .gn-imprint-card {
    padding: 28px 24px;
  }
}

@media (max-width: 575px) {
  .gn-imprint-title {
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gn-imprint-hero-bg,
  .gn-imprint-card,
  .gn-imprint-eyebrow,
  .gn-imprint-title,
  .gn-imprint-sub {
    animation: none;
  }
}
