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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d0d0d;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 2rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 560px;
  width: 100%;
}

/* --- Logo --- */
.logo img {
  width: 310px;
  height: 310px;
  object-fit: cover;
  border-radius: 100%;
  display: block;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Headline --- */
h1 {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

/* --- Contact block --- */
.contact {
  margin-top: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.contact-link:hover {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-link i {
  font-size: 1.1rem;
  opacity: 0.7;
}