:root {
  --bg: #f6f4ef;
  --ink: #1a1a18;
  --muted: #8a877e;
  --line: #e3e0d6;
  --accent: #9c1c22;
  --surname: #4c4a44;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", -apple-system, sans-serif;
  min-height: 100vh;
}

.info-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: calc(100vh - 6rem);
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
}

.contact-line {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-line:hover {
  color: var(--accent);
  border-color: var(--accent);
}
