.imprint-page {
  padding: 60px 0 120px;
  background: #fff8f3;
  font-size: 14px;
}

.imprint-hero {
  margin-bottom: 48px;
}

.imprint-hero .hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  background: linear-gradient(135deg, #fff4ee 0%, #ffe1ce 50%, #ffd2b8 100%);
  border-radius: 32px;
  padding: 48px;
  color: var(--text-dark-gray);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255, 125, 26, 0.25);
}

.imprint-hero .hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 125, 26, 0.15), transparent 45%),
              radial-gradient(circle at 80% 0%, rgba(253, 176, 96, 0.2), transparent 35%);
  pointer-events: none;
}

.imprint-hero .hero-copy,
.imprint-hero .hero-panel {
  position: relative;
  z-index: 1;
}
.imprint-hero h1 {
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.2;
  margin-bottom: 10px;
}

.imprint-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 12px;
  color: var(--primary-orange);
}

.imprint-meta {
  font-size: var(--text-xs);
  color: rgba(26, 26, 26, 0.75);
  margin-bottom: 18px;
}

.imprint-lead {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: var(--weight-semibold);
  margin-bottom: 6px;
}

.imprint-address {
  margin: 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.8);
}

.brand-note {
  margin-top: 18px;
  font-size: clamp(10px, 1vw, 14px);
  color: rgba(15, 23, 42, 0.85);
  max-width: 480px;
}

.hero-panel {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 125, 26, 0.25);
  box-shadow: 0 18px 40px rgba(255, 125, 26, 0.15);
}

.hero-panel h3 {
  font-size: clamp(16px, 1.2vw, 18px);
  margin-bottom: 14px;
  color: var(--text-dark-gray);
}

.hero-panel .contact-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  font-size: clamp(14px, 1vw, 16px);
}

.hero-panel .contact-row span {
  color: var(--text-gray);
  margin-bottom: 4px;
}

.hero-panel .contact-row a {
  color: var(--primary-orange);
  font-weight: var(--weight-semibold);
  text-decoration: none;
}

.hero-panel .contact-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-gray);
}

.imprint-summary {
  margin-bottom: 48px;
}

.imprint-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.imprint-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.imprint-card h3 {
  margin-bottom: 10px;
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-dark-gray);
  font-weight: var(--weight-semibold);
}

.imprint-card p {
  margin: 0;
  font-size: clamp(14px, 1vw, 16px);
  color: var(--text-gray);
  line-height: 1.65;
}

.imprint-card.accent {
  background: linear-gradient(135deg, #fff8ef, #fff);
  border-color: rgba(255, 125, 26, 0.35);
}

.imprint-legal .legal-stack {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
}

.imprint-legal .legal-section {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 125, 26, 0.08);
  margin-bottom: 20px;
}

.imprint-legal .legal-section:last-child {
  margin-bottom: 0;
}

.imprint-legal .legal-section h2 {
  font-size: clamp(16px, 1.2vw, 18px);
  margin-bottom: 12px;
  line-height: 1.3;
}

.imprint-legal .legal-section p {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
}

.imprint-legal .references .inline-links {
  gap: 16px;
}

@media (max-width: 768px) {
  .imprint-page {
    padding: 40px 0 80px;
  }

  .imprint-hero .hero-grid {
    padding: 32px;
    border-radius: 24px;
  }

  .hero-panel {
    padding: 24px;
  }

  .imprint-card {
    padding: 22px;
  }

  .imprint-legal .legal-section {
    padding: 24px;
  }
}
