:root {
  --bg: #ffffff;
  --text: #121212;
  --muted: #6b6b6b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
}

.simple-landing {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.2rem;
  padding: 2rem 1.2rem;
  text-align: center;
}

@supports (padding-top: env(safe-area-inset-top)) {
  .simple-landing {
    padding-top: calc(2rem + env(safe-area-inset-top));
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
}

.main-logo {
  width: min(320px, 76vw);
  height: auto;
  object-fit: contain;
}

.work-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.icon-only .social-icon {
  width: 48px;
  height: 48px;
  display: block;
  fill: currentColor;
}

.instagram-icon {
  color: #e1306c;
}

.facebook-icon {
  color: #1877f2;
}

.email-link {
  color: #222222;
  font-size: clamp(1.05rem, 1.7vw, 1.95rem);
  text-decoration: none;
  word-break: break-word;
}

.email-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .social-link {
    width: 52px;
    height: 52px;
  }

  .icon-only .social-icon {
    width: 42px;
    height: 42px;
  }
}
