.nav__link--active {
  background: rgba(93,170,128,.15);
  color: var(--heading);
}

.kontakt-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(30,80,210,.18) 0%, transparent 65%),
    var(--cream);
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding: 80px 24px;
}

.kontakt-page::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='80'%3E%3Cg fill='none' stroke='%235daa80' stroke-linecap='round'%3E%3Cpath d='M0,12 C40,1 120,23 160,12' stroke-width='0.9' opacity='0.08'/%3E%3Cpath d='M0,38 C40,31 120,45 160,38' stroke-width='0.7' opacity='0.05'/%3E%3Cpath d='M0,62 C40,52 120,72 160,62' stroke-width='0.9' opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 80px;
}

.kontakt-page__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.kontakt-page__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.kontakt-page__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: var(--heading);
}

.kontakt-page__lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.75;
}

/* ── Link cards ─────────────────────────────────── */
.kontakt-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kontakt-link-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: left;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.kontakt-link-card:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.kontakt-link-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kontakt-link-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-light);
}

.kontakt-link-card__label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.kontakt-link-card__val {
  display: block;
  font-size: .96rem;
  font-weight: 500;
  color: var(--heading);
}

.kontakt-cta {
  margin-top: 8px;
  padding: 16px 40px;
  font-size: .96rem;
}
