/* ================================================
   Tischlerei Visitenkarte — Stil
   Ästhetik: Warmes Holz-Handwerk / Editorial
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=Jost:wght@300;400&display=swap');

:root {
  --holz:       #8B5E3C;
  --holz-hell:  #C49A6C;
  --sand:       #F5EFE6;
  --dunkel:     #2B1E14;
  --grau:       #7A6E66;
  --linie:      #D4B896;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Jost', sans-serif;
  color: var(--dunkel);
}

/* ── Karte ─────────────────────────────────────── */

.karte {
  width: min(460px, 92vw);
  padding: 52px 48px 48px;
  background: #FDF8F3;
  border: 1px solid var(--linie);
  position: relative;
  animation: einblenden 0.9s ease both;
}

/* Eckakzent oben links */
.karte::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--holz);
  border-left: 2px solid var(--holz);
}

/* Eckakzent unten rechts */
.karte::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid var(--holz);
  border-right: 2px solid var(--holz);
}

/* ── Kopf ───────────────────────────────────────── */

.kopf {
  margin-bottom: 36px;
}

.handwerk-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--holz);
  margin-bottom: 10px;
}

.name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dunkel);
}

/* ── Trennlinie ─────────────────────────────────── */

.trennlinie {
  border: none;
  border-top: 1px solid var(--linie);
  margin: 28px 0;
}

/* ── Kontaktbereich ─────────────────────────────── */

.kontakt {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zeile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon {
  flex-shrink: 0;
  width: 18px;
  color: var(--holz);
  margin-top: 2px;
}

.icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--dunkel);
  line-height: 1.5;
}

.text a {
  color: inherit;
  text-decoration: none;
}

.text a:hover {
  color: var(--holz);
}

/* ── Fußzeile ───────────────────────────────────── */

.fuss {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--linie);
  display: flex;
  align-items: center;
  gap: 10px;
}

.fuss-linie {
  flex: 1;
  height: 1px;
  background: var(--linie);
}

.fuss-text {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grau);
  font-weight: 300;
}

/* ── Animation ──────────────────────────────────── */

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