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

body {
  background: #000;
  color: #fff;
  font-family: 'Sofia Pro', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.logo svg {
  display: block;
}

.tagline {
  font-family: 'Sofia Pro', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 32px;
}

.nav-center a,
.nav-center a:visited,
.nav-center a:link {
  font-family: 'Sofia Pro', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-center a:hover {
  color: #995EBC;
  opacity: 1;
}

.site-name {
  font-family: 'Sofia Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.nav-right a,
.nav-right a:visited,
.nav-right a:link {
  font-family: 'Sofia Pro', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff !important;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-right a:hover {
  color: #995EBC;
  opacity: 1;
}

/* ── MAIN ── */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
}

.available-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 24px;
}

h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
  margin-bottom: 40px;
}

h1 span {
  font-family: 'Sofia Pro', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: 0.01em;
  color: #995EBC;
  display: block;
  line-height: 1.0;
}

.freelance-since {
  margin-bottom: 16px;
}

.clients {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1.8;
  max-width: 700px;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 32px;
  gap: 6px;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc5c;
  display: inline-block;
}

.status-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #fff;
}

.locations {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #fff;
}

.impressum-link,
.impressum-link:visited,
.impressum-link:link {
  font-family: 'Sofia Pro', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.impressum-link:hover {
  color: #995EBC;
}

/* ── DESKTOP ── */
@media (min-width: 769px) {
  main {
    padding: 80px 32px;
  }

  h1 {
    margin-bottom: 64px;
  }
}

/* ── MOBILE ── */
.mobile-links {
  display: none;
}

/* hide mobile-status on desktop */
.mobile-status {
  display: none;
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }

  .nav-right .status {
    display: none;
  }

  .mobile-status {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }

  .mobile-links {
    display: flex;
    gap: 32px;
  }

  .mobile-links a,
  .mobile-links a:visited,
  .mobile-links a:link {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
  }

  .mobile-links a:hover {
    color: #995EBC;
  }
}
