/* MPH-Consult — landingpage */

:root {
  --ink: #000000;
  --ink-light: #808080;
  --contact: #4d4d4d;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Baloo 2", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 6vh 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  width: 100%;
}

.logo {
  width: clamp(120px, 22vw, 180px);
  height: auto;
  margin-bottom: 2rem;
}

h1 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(2.3rem, 8vw, 4rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
}

.name {
  margin: -0.15em 0 1.2rem;
  font-weight: 700;
  font-size: clamp(1.9rem, 6.5vw, 3.2rem);
  letter-spacing: -0.01em;
  color: var(--ink-light);
  line-height: 1.05;
}

.contact {
  margin: 0;
  color: var(--contact);
  font-weight: 700;
  font-size: clamp(0.85rem, 2.3vw, 1.05rem);
  line-height: 1.3;
}

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

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
}

.sep {
  padding: 0 0.5em;
  color: var(--ink-light);
}
