/* ════════════════════════════════════════════════════════════
   hirsing.css — Minimalistische Landingpage hirsing.eu
   ════════════════════════════════════════════════════════════ */

/* ── FONTS ── */
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 400; font-display: swap; src: url("https://www.vhc.eu/images-fonts/fonts/playfair-dispplay-v40-latin/playfair-dispplay-v40-latin-regular.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 700; font-display: swap; src: url("https://www.vhc.eu/images-fonts/fonts/playfair-dispplay-v40-latin/playfair-dispplay-v40-latin-700.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: italic; font-weight: 400; font-display: swap; src: url("https://www.vhc.eu/images-fonts/fonts/playfair-dispplay-v40-latin/playfair-dispplay-v40-latin-regular.woff2") format("woff2"); }
@font-face { font-family: "Lato"; font-style: normal; font-weight: 400; font-display: swap; src: url("https://www.vhc.eu/images-fonts/fonts/lato-v25-latin/lato-v25-latin-regular.woff2") format("woff2"); }

/* ── VARIABLEN ── */
:root {
  --bg:      #f4efe6;
  --bg-tint: #ece5d6;
  --ink:     #2a2218;
  --accent:  #7a3a2c;
  --muted:   #8a7a66;
  --rule:    rgba(42, 34, 24, 0.18);
}

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 85%, rgba(122,58,44,0.04) 0%, transparent 60%);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ════════════════════════════════════════════════════════════
   MAIN — zentrierte Bühne
   ════════════════════════════════════════════════════════════ */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.stage {
  text-align: center;
  max-width: 720px;
  width: 100%;
}

/* ── ORNAMENT ── */
.ornament {
  color: var(--accent);
  width: 84px;
  height: 16px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: ornament-in 1s ease-out 0.3s forwards;
}
.ornament svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── TITEL ── */
.title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 7rem);
  letter-spacing: 0.005em;
  line-height: 1;
  color: var(--ink);
  opacity: 0;
  transform: translateY(16px);
  animation: title-in 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
}
.title .name {
  font-weight: 400;
}
.title .dot {
  color: var(--accent);
  font-weight: 700;
  margin: 0 0.015em;
}
.title .tld {
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
}

/* ── TRENNSTRICH ── */
.rule {
  width: 0;
  height: 1px;
  background: var(--rule);
  margin: 44px auto 0;
  animation: rule-draw 1.8s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

/* ── ANIMATIONEN ── */
@keyframes ornament-in {
  to { opacity: 1; }
}
@keyframes title-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rule-draw {
  to { width: min(300px, 62%); }
}
@keyframes footer-in {
  to { opacity: 1; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
footer {
  padding: 22px 24px 26px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.3px;
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0;
  animation: footer-in 1.2s ease-out 2.4s forwards;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .ornament {
    width: 64px;
    margin-bottom: 30px;
  }
  .rule {
    margin-top: 30px;
  }
  footer {
    padding: 18px 20px 22px;
    font-size: 0.64rem;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .ornament,
  .title,
  .rule,
  footer {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .rule {
    width: min(300px, 62%);
  }
}
