/* ---------------------------------------------------
   MÖWE-BAU · Digitale Visitenkarte (schlicht, hell)
   Palette:
     --paper   #FDFCF9  Seite
     --line    #E7E1D2  Trennlinien
     --ink     #2B2620  Fließtext
     --gold    #C89A4B  Akzent (Logo-Gold)
     --gold-dk #A87F39  Hover
     --grey    #8A8578  Labels
--------------------------------------------------- */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: #FDFCF9;
  font-family: 'Jost', sans-serif;
  color: #2B2620;
}

.card {
  width: 100%;
  max-width: 380px;
  text-align: center;
  padding: 8px 8px 4px;
}

.card__logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto 6px;
}

.card__services {
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #8A8578;
  text-transform: uppercase;
}

.card__rule {
  border: none;
  border-top: 1px solid #8A8578;
  width: 64px;
  margin: 0 auto 26px;
}

.card__identity {
  margin-bottom: 24px;
}

.card__name {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #2B2620;
}

.card__role {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #C89A4B;
}

.card__contact {
  font-style: normal;
}

.contact__line {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  color: #2B2620;
}

.contact__label {
  color: #8A8578;
  margin-right: 4px;
}

.contact__link {
  color: #2B2620;
  text-decoration: none;
  border-bottom: 1px solid #E7E1D2;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact__link:hover,
.contact__link:focus-visible {
  color: #A87F39;
  border-color: #C89A4B;
}

.contact__link:focus-visible {
  outline: 2px solid #C89A4B;
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 380px) {
  .card__name {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact__link {
    transition: none;
  }
}
